Differences between revisions 2 and 3
Revision 2 as of 2005-01-18 01:33:46
Size: 1352
Editor: CHB-GW
Comment: update current version number of cheetah
Revision 3 as of 2005-05-09 02:01:17
Size: 1552
Editor: gork
Comment: add example
Deletions are marked like this. Additions are marked like this.
Line 11: Line 11:
=== Sample ===

{{{
<table>
#for $client in $clients
<tr>
<td>$client.surname, $client.firstname</td>
<td><a href="mailto:$client.email">$client.email</a></td>
</tr>
#end for
</table>
}}}

A templating framework for WebProgramming.

Masthead

URL

http://www.cheetahtemplate.org/

version

0.9.16a2 (Date(2005-01-17T00:00:00))

licence
platforms
Python versions

Sample

<table>
#for $client in $clients
<tr>
<td>$client.surname, $client.firstname</td>
<td><a href="mailto:$client.email">$client.email</a></td>
</tr>
#end for
</table>

Deployment Platforms

Templates are compiled to Python modules, with a Pythonic interface. The generated template module can also be used as a stand-alone program (which prints the text of the generated page), useful for instance to create a static HTML site. Templates are true Python objects, supporting inheritence and user-defined methods.

Suitability

Development Interfaces

Environment Access

You have to connect the template to the environment explicitly.

Session, Identification and Authentication

Persistence Support

Presentation Support

InTheirOwnWords

Cheetah is a Python-powered template engine and code generator. It can be used as a standalone utility or it can be combined with other tools. Cheetah has many potential uses, but web developers looking for a viable alternative to ASP, JSP, PHP and PSP are expected to be its principle user group.

Comments

Cheetah has its own wiki (sadly, they use twiki) http://cheetah.colorstudy.net/twiki/bin/view/Cheetah/WebHome

Hosting

Cheetah (last edited 2014-05-21 13:29:31 by EtienneRobillard)

Unable to edit the page? See the FrontPage for instructions.