Ok so I worked it out last night. What wasn't obvious to me (which perhaps would have been had I read the user guide in its entirety) was that you create your...
4855
Tavis Rudd
tavis@...
Mar 25, 2010 12:33 am
Hi Chris, You can also use the cheetah import hooks to compile the base class dynamically (see the module Cheetah.ImportHooks). Cheers, Tavis ... Download...
4856
Chris Stoyles
chriss@...
Mar 25, 2010 12:47 am
Wow that works beautifully :) Thanks! Chris. ... Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs ...
4857
Arnaud Fontaine
arnau@...
Mar 30, 2010 11:40 pm
ello, Cheetah C extension doesn't build on Python <= 2.5 because of PyUnicode_FromFormat() being only available on Python >= 2.6. I have ...
4858
R. Tyler Ballance
tyler@...
Mar 31, 2010 1:19 am
... Aha, good catch Arnaud, I had experienced a similar quirk when I ported another C-extension that I maintain to run on Python 2.4 - 3.1, I'll squeeze an...
4859
Arnaud Fontaine
arnau@...
Mar 31, 2010 9:26 am
Hi, ... Does the patch look alright? I have already uploaded a Debian package of python-cheetah 2.4.2.1 which includes this patch. So don't worry about the...
4860
adso 0000
adso.lists@...
Apr 1, 2010 2:09 pm
Hello everybody, I´ve a small script that compiles python 2.4.6, libxml2-python 2.6.15 , tcl 8.5.7 , tk 8.5.7 and Imaging-1.1.6. All them in batch, to...
4861
Tavis Rudd
tavis@...
Apr 1, 2010 5:20 pm
I think you need to install the python-devel rpm which comes with Python's c header files. The namemapper c extension won't compile without that rpm....
Hi! After an upgrade from *Cheetah 2.4.0* to *Cheetah 2.4.2.1*, I had a problem with the module "convertTmplPathToModuleName". Traceback BEGIN ...
This user has been banned after multiple spam warnings. I spologize to Gerold and the rest of the list for the spam. ... Cheers, -R. Tyler Ballance ... Jabber:...
4866
R. Tyler Ballance
tyler@...
Apr 10, 2010 10:06 pm
... Regarding the patch, I think I might rather add somtehing like the following: #ifndef PyUnicode_FromFormat #define PyUnicode_FromFormat(a, b)...
4867
Wen-Chen Hol
w.hol@...
Apr 11, 2010 8:01 am
We have an editor for our university( University of Auckland, New Zealand) that is based mainly on cheetah template engine and currently have more than 100...
4868
Tavis Rudd
tavis@...
Apr 13, 2010 5:49 pm
Thanks for sharing that Wen-Chen. What else are you using to serve up the pages (wsgi server, etc)? I'm going to update the 'Who Uses' page on the website...
4869
Blaise Vogel
bvogel@...
Apr 27, 2010 6:13 am
Hello, I'm working with Cheetah + WebWare for a long time. But, in the last version, the WebWare support was removed:-(( ...
4870
R. Tyler Ballance
tyler@...
Apr 27, 2010 6:14 pm
Moin Blaise! ... My preferred solution would be not to use WebWare ;) I removed the code because it causes pretty serious performance regressions on Mac OS X...
4871
Tavis Rudd
tavis@...
Apr 27, 2010 6:19 pm
... I'd recommend the latter or a monkey patch to reinsert WebKit.Servlet into the Template inheritance chain if that doesn't work for you. ... Yeah, the baked...
4872
tOM Trottier
tom@...
May 23, 2010 8:02 pm
I am new to Python and Cheetah and having problems getting going. Am using Pythonxy Eclipse framework. But when I run Cheetah test I get these errors: ...
4873
R. Tyler Ballance
tyler@...
May 24, 2010 5:34 pm
... These tests probably fall more into "integration test land" since they're invoking a `cheetah compile`, the issue is the spawned process can't seem t find...
4874
Peter Lyons
pete@...
Jul 4, 2010 3:04 pm
Hi, I'm trying to run setup.py to install Cheetah 2.4.2.1 on Ubuntu Server 10.04 amd64 with gcc 4.4.3. The python version is 2.6.5. Here is the failure...
4875
Aahz
aahz@...
Jul 4, 2010 3:18 pm
... Start right here! You haven't installed python-devel or something like that. -- Aahz (aahz@...) <*>...
4876
Peter Lyons
pete@...
Jul 5, 2010 3:39 pm
... Thanks! That's all it took! ... This SF.net email is sponsored by Sprint What will you do first with EVO, the first 4G phone? Visit sprint.com/first --...
4877
Rhys
rimmington@...
Jul 12, 2010 1:44 pm
I'm not sure if this is useful, but you might like to know that some tests seem to fail on Google App Engine SDK for non-sandbox-related reasons. Running...
4878
R. Tyler Ballance
tyler@...
Jul 12, 2010 4:40 pm
... Interesting, thanks for the report, I'll see if I can tackle this when the weekend rolls around. One question though, are you still largely able to use...
4879
Богун Ð...
vugluskr@...
Jul 12, 2010 8:12 pm
Hello. I need to make 2 sets of templates. One generic level, and some count of overlays for gnereric templates. for example I have generic template...
4880
Rhys
rimmington@...
Jul 13, 2010 4:51 am
... No, it's just something I noticed. Cheetah works brilliantly, thank you :) -- Rhys ... This SF.net email is sponsored by Sprint What will you do first with...
4881
R. Tyler Ballance
tyler@...
Jul 13, 2010 4:06 pm
... No problem, I've not been working on it terribly much as of late as some of the improvements that I felt were needed are in, and there's been no bug...
4882
Tavis Rudd
tavis@...
Jul 15, 2010 9:26 pm
Hi, I can't think of any way to do that without either hacking the existing ImportHooks module (and I can't think of how you'd achieve what you want) or...
4883
Богун Ð...
vugluskr@...
Jul 16, 2010 7:55 pm
... Now I too can see this. I was unable to got from ImportHooks what I want, so I wrote import hook that allow me reach required behabviour. Theoretically it...