Differences between revisions 5 and 14 (spanning 9 versions)
Revision 5 as of 2005-10-05 19:12:39
Size: 1022
Editor: 64
Comment:
Revision 14 as of 2014-05-21 12:03:26
Size: 214
Editor: 96
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
#pragma section-numbers off
A templating framework for WebProgramming.
=== Masthead ===

   URL:: http://www.cheetahtemplate.org/

=== 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.

=== 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.
Hello! My name is Nannie. I am happy that I could unify to the entire world. I live in Great Britain, in the region. I dream to head to the different countries, to look for acquainted with appealing individuals.

Hello! My name is Nannie. I am happy that I could unify to the entire world. I live in Great Britain, in the region. I dream to head to the different countries, to look for acquainted with appealing individuals.

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

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