CheetahTemplate: Difference between revisions
No edit summary |
Released Cheetah 3.4.0. |
||
(43 intermediate revisions by 26 users not shown) | |||
Line 1: | Line 1: | ||
{{Short description|Template engine software}} |
|||
⚫ | '''Cheetah''' (or '''CheetahTemplate''') is a [[template |
||
{{refimprove|date=May 2017}} |
|||
{{ Infobox Software |
|||
| name = CheetahTemplate |
|||
| logo = |
|||
| screenshot = |
|||
| caption = |
|||
| collapsible = |
|||
| author = Tavis Rudd |
|||
| developer = Oleg Broytman |
|||
| released = {{Start date and age|2001|06}}<ref name=Cheetah095>{{cite web | last=Rudd | first=Tavis | title=0.9.5 | url=https://sourceforge.net/p/cheetahtemplate/mailman/message/4670286/ | publisher=CheetahTemplate | date=June 10, 2001}}</ref> |
|||
| latest release version = 3.4.0 |
|||
| latest release date = {{Start date and age|2024|12|02}} |
|||
| latest preview version = 3.4.1a0 |
|||
| latest preview date = {{Start date and age|2024|12|02}} |
|||
| operating system = [[Cross-platform]] |
|||
| size = |
|||
| programming language = [[Python (programming language)|Python]] |
|||
| genre = [[Template processor]] |
|||
| license = [[MIT License]] |
|||
| website = {{url|https://cheetahtemplate.org/}} |
|||
}} |
|||
⚫ | '''Cheetah''' (or '''CheetahTemplate''') is a [[template processor|template engine]] that uses the [[Python (programming language)|Python programming language]]. It can be used standalone or combined with other tools and frameworks. It is often used for [[server-side scripting]] and [[dynamic web content]] by generating [[HTML]], but can also be used to [[Automatic programming|generate source code]]. Cheetah is [[Free software|free]] [[open-source software]] licensed under the [[MIT License]]. |
||
Templating engines encourage clean separation of content, graphic design, and program code. This leads to more modular, flexible, and reusable site architectures, shorter development time, and code that is easier to understand and maintain. Cheetah compiles templates into optimized, yet readable, Python code. It gives template authors full access to any Python data, and functionality, while providing a way for administrators to selectively restrict access to Python when needed. |
|||
⚫ | |||
Cheetah compiles templates into optimized, yet readable, Python code. It gives template authors full access to any Python data and functionality, while providing a way for administrators to selectively restrict access to Python when needed. |
|||
== Example of Cheetah code == |
|||
⚫ | |||
<syntaxhighlight lang="html+cheetah"> |
|||
#from Cheetah.Template import Template |
|||
#extends Template |
|||
#set $people = [{'name' : 'Tom', 'mood' : 'Happy'}, {'name' : 'Dick', |
|||
⚫ | |||
'mood' : 'Sad'}, {'name' : 'Harry', 'mood' : 'Hairy'}] |
|||
* [http://www.cheetahtemplate.org/ Cheetah official website] |
|||
* [http://www-128.ibm.com/developerworks/opensource/library/os-pythcheetah IBM developerWorks tutorial] |
|||
* [http://www.onlamp.com/pub/a/python/2005/01/13/cheetah.html ONLamp.com tutorial] |
|||
⚫ | |||
<strong>How are you feeling?</strong> |
|||
<ul> |
|||
#for $person in $people |
|||
<li> |
|||
$person['name'] is $person['mood'] |
|||
</li> |
|||
#end for |
|||
</ul> |
|||
</syntaxhighlight> |
|||
<ref> [https://cheetahtemplate.org/#cheetah-in-a-nutshell Cheetah in a nutshell]</ref> |
|||
==References== |
|||
⚫ | |||
{{Reflist}} |
|||
⚫ | |||
⚫ | |||
* {{Official|www.cheetahtemplate.org}} |
|||
* [http://www.onlamp.com/pub/a/python/2005/01/13/cheetah.html ONLamp.com tutorial] {{Webarchive|url=https://web.archive.org/web/20060616060947/http://www.onlamp.com/pub/a/python/2005/01/13/cheetah.html |date=2006-06-16 }} |
|||
⚫ | |||
[[Category:Free system software]] |
|||
[[Category:Free software programmed in Python]] |
|||
[[Category:Python (programming language) software]] |
|||
⚫ | |||
[[Category:Scripting languages]] |
[[Category:Scripting languages]] |
||
[[Category:Template engines]] |
[[Category:Template engines]] |
||
[[pt:Cheetah]] |
|||
⚫ |
Latest revision as of 13:25, 2 December 2024
This article needs additional citations for verification. (May 2017) |
Original author(s) | Tavis Rudd |
---|---|
Developer(s) | Oleg Broytman |
Initial release | June 2001[1] |
Stable release | 3.4.0
/ December 2, 2024 |
Preview release | 3.4.1a0
/ December 2, 2024 |
Written in | Python |
Operating system | Cross-platform |
Type | Template processor |
License | MIT License |
Website | cheetahtemplate |
Cheetah (or CheetahTemplate) is a template engine that uses the Python programming language. It can be used standalone or combined with other tools and frameworks. It is often used for server-side scripting and dynamic web content by generating HTML, but can also be used to generate source code. Cheetah is free open-source software licensed under the MIT License.
Templating engines encourage clean separation of content, graphic design, and program code. This leads to more modular, flexible, and reusable site architectures, shorter development time, and code that is easier to understand and maintain. Cheetah compiles templates into optimized, yet readable, Python code. It gives template authors full access to any Python data, and functionality, while providing a way for administrators to selectively restrict access to Python when needed.
Cheetah is included in the FreeBSD Ports collection and several Linux distributions: Gentoo, Fedora, Debian, and Ubuntu among others.
Example of Cheetah code
[edit]#from Cheetah.Template import Template
#extends Template
#set $people = [{'name' : 'Tom', 'mood' : 'Happy'}, {'name' : 'Dick',
'mood' : 'Sad'}, {'name' : 'Harry', 'mood' : 'Hairy'}]
<strong>How are you feeling?</strong>
<ul>
#for $person in $people
<li>
$person['name'] is $person['mood']
</li>
#end for
</ul>
References
[edit]- ^ Rudd, Tavis (June 10, 2001). "0.9.5". CheetahTemplate.
- ^ Cheetah in a nutshell
External links
[edit]- Official website
- ONLamp.com tutorial Archived 2006-06-16 at the Wayback Machine
- Dev Shed tutorial