Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

cheetah-archive · Cheetah Template System Archive

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 3
  • Category: Web Design
  • Founded: Jul 18, 2001
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

Advanced
Messages Help
Messages 4221 - 4250 of 5012   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
4221 mobiledreamers@... Send Email Apr 9, 2008
8:25 pm
google app engine does not support c extensions is there a pure pythonic cheetah template available for download ... This SF.net email is sponsored by the 2008...
4222 Forest
js8v8zr02@... Send Email
Apr 9, 2008
8:40 pm
... You might find the Spitfire project interesting: http://code.google.com/p/spitfire/ I haven't tried it yet, but I have high hopes for it. ... This SF.net...
4223 Tavis Rudd
tavis@... Send Email
Apr 9, 2008
10:05 pm
Hi, Cheetah comes with a fall-back pure Python implementation of NameMapper. I'm not sure how the install process on AppEngine works, but it should be ...
4224 mobiledreamers@... Send Email Apr 9, 2008
10:47 pm
also if i need to upload cheetah/ folder to google app engine i shud jus drop the Cheetah folder in the app folder so i shud not have setup.py can i do that? ...
4225 mobiledreamers@... Send Email Apr 10, 2008
12:33 am
is there a .zip or .tar.gz for cheetah that can be dropped into the app folder and imported without using easy_install or setup.py without namemapper.c that ll...
4226 Jeff Hinrichs - DM&T
jeffh@... Send Email
Apr 10, 2008
1:36 am
I agree this is an idea worth discussing. Making cheetah easy to use with GAE, imho, would be a good thing. ... This is a cheetah forum, so I will only post...
4227 mobiledreamers@... Send Email Apr 10, 2008
9:51 pm
Cheetah folder needs to be dropped in the app folder of app engine <type 'exceptions.ImportError&#39;>: No module named Cheetah.Compiler On Wed, Apr 9, 2008 at...
4228 Tavis Rudd
tavis@... Send Email
Apr 12, 2008
1:37 am
Here's an explanation of how to install Cheetah in AppEngine: http://vegai.iki.fi/google-appengine/template-engines Looks pretty simple. ... This SF.net email...
4229 inhahe
inhahe@... Send Email
Apr 12, 2008
10:12 am
How would I pass information back from my template to my python program? For example let's say the template doesn't include a complete webpage, but only part...
4230 Jerome Mariette
Jerome.Mariette@... Send Email
Apr 14, 2008
8:07 am
Hi all, I'm wondering if it's possible to integrate some Cheetah code into Javascript or is it only for the HTML part ? If not, how to do something dynamic ? ...
4231 Robin Bowes
robin-lists@... Send Email
Apr 23, 2008
11:05 am
Hi, I'm new to cheetah. I'm using it as it's used for kickstart templating in the RedHat cobbler tool. [1] Is there some way to list all variables available in...
4232 Greger Stolt Nilsen
gregerst@... Send Email
Apr 23, 2008
11:17 am
I have the following lines in a template: 1: #for $d in $data.article 2: <div class="newsitem"> 3: $d.headline 4: #if...
4233 Robin Bowes
robin-lists@... Send Email
Apr 24, 2008
9:32 am
Hi, I want to do something like this (pseudo-code): for n in (0-3) echo $var$n en dfor This should echo the contents of the variables $var0, $var1, $var2,...
4234 Michael DeHaan
mdehaan@... Send Email
Apr 24, 2008
2:34 pm
... $getVar("$x$y","") ? ... This SF.net email is sponsored by the 2008 JavaOne(SM) Conference Don't miss this year's exciting event. There's still time to...
4235 Robin Bowes
robin-lists@... Send Email
Apr 24, 2008
5:20 pm
... Fancy seeing you here... :) You will see that I came up with the same solution: ...
4236 Dan Eloff
dan.eloff@... Send Email
May 6, 2008
12:36 am
I'm trying to think of the best way to solve this problem with Cheetah, and drawing a blank here. I'm hoping the Cheetah experts around here will say, "oh,...
4237 Michael Higgins
higgins@... Send Email
May 8, 2008
12:59 am
Hi, (New to the list, so apologies if this has been covered.) I noticed an unfortunate interaction between Cheetah and Apache/ mod_python under Leopard. I'm...
4238 mobiledreamers@... Send Email May 12, 2008
9:36 am
How to use cheetah to generate this script but use #raw and #end raw to prepare these variables thanks $cmt.id needs to come from python #raw <script...
4239 Ben Aurel
ben.aurel@... Send Email
May 14, 2008
2:42 pm
hi I try to install Cheetah (Cheetah-1.0) on a Mac Intel (10.5.2/Leopard). Installed is Python 2.5.2 that was compiled from sources. $ sudo python ./setup.py...
4240 Eric Abrahamsen
girzel@... Send Email
May 17, 2008
11:33 am
Hello, Can anyone tell me why this include directive: #include "tempsrc/interior/modforms/article_edit.html" might produce this traceback: Traceback (most...
4241 Dennis Kempin
mail@... Send Email
May 20, 2008
10:22 am
Hello, I am using cheetah to create some kind of ultra-light content managment system for personal use. As I use a lot of code snippets in my pages I want to...
4242 Dennis Kempin
mail@... Send Email
May 20, 2008
10:34 am
Hi again, I want to extend my post. I have "hacked" some solution using psp style tags: <% self.source = "" def writeSource(msg): self.source += msg ...
4243 Graham Dennis
graham.dennis@... Send Email
May 20, 2008
10:51 pm
Dennis. Another way to achieve this would be with the #capture directive to capture the string you want to filter, and then use a #filter and a variable...
4244 Michael DeHaan
mdehaan@... Send Email
May 27, 2008
4:23 pm
... Here's a somewhat evil way: #include "highlight-on" text goes here #include "highlight-off" Though being able to do custom blocks that automatically add...
4245 Bernt Røskar Brenna
bernt.brenna@... Send Email
May 30, 2008
6:43 am
The case: A base template (basetemplate.tmpl) with a method: #def viewdef(c, dburi) ... #end def A inherited template: #from basetemplate import basetemplate ...
4246 Franz Glasner
f.glasner@... Send Email
May 30, 2008
8:53 am
Calling the baseclass implementation is what #super is for. Have You tried using #super? Franz. "Bernt Røskar Brenna" <bernt.brenna@...> Sent by:...
4247 Matthew Beauregard
matthew.beauregard@... Send Email
Jun 22, 2008
5:25 am
Hi all, I'm getting this error from Cheetah when using the C namemapper, where the Python version works fine: <class 'NameMapper.NotFound&#39;>: cannot find...
4248 James
jtp@... Send Email
Jul 6, 2008
9:56 pm
All, I've spent the last couple of days poking around and trying to figure out a good Python framework to use with a few future web applications I'm going to...
4249 Christoph Zwerschke
cito@... Send Email
Jul 7, 2008
6:22 am
... You can use the TurboCheetah [1] package for utilizing the Buffet interface [2] for CherryPy. [1] http://pypi.python.org/pypi/TurboCheetah/1.0 [2]...
4250 n00m
n00m@... Send Email
Jul 14, 2008
10:50 pm
Hi dear All! I never managed to get working this example from Cheetah docs: === For instance, consider this template, FrogBase.tmpl: #def title This document...
Messages 4221 - 4250 of 5012   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help