I forgot to update that comparison between Cheetah and Velocity before the release on Friday. The online docs have been updated now. Tavis ...
626
Ian Bicking
ianb@...
Dec 17, 2001 1:40 am
... Part of what limits web programming considerably is that the widgets are quite firmly defined. They are defined by HTML, the input forms, and to a degree...
627
Edmund Lian
elian@...
Dec 17, 2001 5:13 am
... can't replicate this. It works fine with ghostscript and Acrobat on Linux.<< I'm using Acrobat 5.0 (not the reader, but Exchange) on W2K. After queueing 3...
628
Ian Bicking
ianb@...
Dec 17, 2001 5:50 am
... Or $request.fields.the_field, no? That's much more pretty. Ian _______________________________________________ Cheetahtemplate-discuss mailing list ...
629
Edmund Lian
elian@...
Dec 17, 2001 8:00 am
... In application terms, each servlet is the equivalent of a "main" program, the one that calls everything else. (Even though in fact the servlet is called...
630
Edmund Lian
elian@...
Dec 17, 2001 8:04 am
... what would you recommend?<< No objections... I just noticed the discussion about CGI vars on pp 26... Sorry! Perhaps the sections on working with CGI...
631
Mike Orr
iron@...
Dec 17, 2001 10:19 am
... Everything dealing with Webware will be moved to the Webware chapter as soon as I get around to it. ... Which you can do with fieldsMulti (or will be able...
632
Mike Orr
iron@...
Dec 17, 2001 10:32 am
... The only way to access the hidden variable would be: $self.searchList()[5]['the_variable39;] or taking advantage of NameMapper: $searchList[5].the_variable ...
633
Geir Magnusson Jr.
geirm@...
Dec 17, 2001 12:06 pm
... Cool. Some unsolicited editing. Second bullet - should it read "Cheetah is closer to Python that Velocity is to Java" ? Also, as a discussion point : ...
634
Mike Orr
iron@...
Dec 17, 2001 4:54 pm
... Each object in the searchList. Yes, that's what it does. ... Yes, it's order dependent. ... Why is this Cheetah's fault? It's the app maintainer39;s...
635
Patrick K. O'Brien
pobrien@...
Dec 17, 2001 5:25 pm
I just installed this on Windows 98 and found a slight glitch. The Cheetah-0.9.9.tar.gz file has two files whose name varies only by case. Windows isn't case...
636
Patrick K. O'Brien
pobrien@...
Dec 17, 2001 5:44 pm
Closer inspection reveals that these are indeed separate pages. So it looks like the file names need to be different in order to be Windows friendly. ... ...
637
Geir Magnusson Jr.
geirm@...
Dec 17, 2001 6:53 pm
Sourceforge sometimes bounces mail from my ISP... Trying again... -- Geir Magnusson Jr. geirm@... System and Software...
638
Mike Orr
iron@...
Dec 17, 2001 7:22 pm
... Fixed in CVS. libraries.tools.html was redundant so I deleted it. (Or rather, I deleted the LaTeX subsection it came from.) I also took the opportunity...
639
Mike Orr
iron@...
Dec 17, 2001 7:42 pm
... Added to the User's Guide in the "Placeholder tips" section. (It may be moved later.) Remember that variables found earlier in the searchList override ...
640
Tavis Rudd
tavis@...
Dec 17, 2001 9:03 pm
Hi, I'm about to submit the paper on Cheetah for the Python 10 conference, after a final scan for typos. Any final suggestions (or typos)? ...
641
Patrick K. O'Brien
pobrien@...
Dec 17, 2001 9:21 pm
Typo - you never give the PSP example: "Using PSP, the display code for the website would look something like the following, assuming your servlet subclasses...
642
Tavis Rudd
tavis@...
Dec 17, 2001 9:29 pm
Thanks, I'd missed a bit of htmlencoding. Fixed now. ... _______________________________________________ Cheetahtemplate-discuss mailing list ...
643
Edmund Lian
elian@...
Dec 18, 2001 1:10 am
Tavis, You've probably caught these already: 1. "Lessons Learned" section: "We experimented with numerous compile-time optimizations and almost all we...
644
Edmund Lian
elian@...
Dec 19, 2001 8:01 am
When attempting to run a compiled template, I get the following traceback: Traceback (most recent call last): File "/opt/Webware/WebKit/Application.py", line...
645
Tavis Rudd
tavis@...
Dec 19, 2001 8:29 pm
On Wednesday 19 December 2001 00:02, "Edmund Lian" ... Oops, I was running Cheetah against the experimental Webware codebase I've been working on. This is...
646
Tracy S. Ruggles
tr@...
Dec 19, 2001 9:10 pm
Hi, I'm getting this error when trying to run "python setup.py build": cc -bundle -undefined suppress build/temp.darwin-5.1-Power Macintosh-2.1/_namemapper.o...
647
Ian Bicking
ianb@...
Dec 19, 2001 9:53 pm
... In theory, everything should work the same, because you just don't have the C version of NameMapper -- but the Python version is still there, and is just a...
648
Tavis Rudd
tavis@...
Dec 20, 2001 6:19 pm
... This means that your c compiler can't be found. Cheetah only assumes the availability of a compiler for Posix systems. See line 17 in SetupConfig.py. OS...
649
Michael Halle
halazar@...
Dec 21, 2001 10:36 pm
Hello, I'm happily using the CVS version of Cheetah to process my site templates. I have precompiled templates that are extended by user-written files that...
650
Michael Halle
halazar@...
Dec 21, 2001 11:09 pm
... Cheetah only; I'm not using Webware. The following code will produce a __init__.py and .pyc file: from Cheetah.Template import Template import sys t =...
651
Tavis Rudd
tavis@...
Dec 21, 2001 11:17 pm
... What's in the file that you're feeding it? _______________________________________________ Cheetahtemplate-discuss mailing list ...
652
Michael Halle
halazar@...
Dec 22, 2001 12:05 am
Yes, you're right, it is content dependent.... All that has to be in the file is a "#from ... import" line. For example: #from string import strip It isn't...
653
Tavis Rudd
tavis@...
Dec 22, 2001 1:00 am
This is fixed in the CVS now. The __init__.py is still created, but is now removed after Cheetah has finished using it, unless it already existed. I'm going...
654
Tavis Rudd
tavis@...
Dec 22, 2001 10:24 am
... Cheetah does, or WebKit does? WebKit creates a __init__.py file when you serve servlet files from a directory that doesn't have one, to make sure that...