Size: 771
Comment:
|
Size: 1419
Comment: converted to 1.6 markup
|
Deletions are marked like this. | Additions are marked like this. |
Line 2: | Line 2: |
A framework for WebProgramming. | A small, elegant templating engine. |
Line 5: | Line 5: |
URL:: http://www.nullcube.com/software/cubictemp.html version:: 0.3 |
URL:: http://dev.nullcube.com version:: 2.0 |
Line 9: | Line 9: |
Python versions:: 2.2 | Python versions:: 2.5 |
Line 12: | Line 12: |
Any === Sample === {{{ <select> <!--(for option in optionList)--> <option @!if (option[1]) then "selected" else ""!@> @!option[0]!@ </option> <!--(end)--> </select> }}} |
|
Line 16: | Line 30: |
A back ported version of CubicTemp is available from my page AshishShrestha. This works with Jython 2.1 This allows it to be used with servlet engines like Tomcat. I think the simplicity of CubicTemp and ease of Jython is a cool combination for web development. |
|
Line 29: | Line 45: |
CubicTemp is an attempt to make a Python templating system that is simple, powerful and well designed. | CubicTemp is an attempt to make a Python templating system that is simple, powerful and well designed. Cubictemp also has built-in protection against cross-site-scripting attac, a very common class of web application vulnerability. |
Line 33: | Line 49: |
A small, elegant templating engine.
Masthead
- URL
- version
- 2.0
- licence
- BSD
- platforms
- All
- Python versions
- 2.5
Deployment Platforms
- Any
Sample
<select> <!--(for option in optionList)--> <option @!if (option[1]) then "selected" else ""!@> @!option[0]!@ </option> <!--(end)--> </select>
Suitability
CubicTemp should be used in association with a good web framework. It is small and simple enough to be modified on a per-project basis.
A back ported version of CubicTemp is available from my page AshishShrestha. This works with Jython 2.1 This allows it to be used with servlet engines like Tomcat. I think the simplicity of CubicTemp and ease of Jython is a cool combination for web development.
Development Interfaces
Environment Access
Session, Identification and Authentication
Persistence Support
Presentation Support
InTheirOwnWords
CubicTemp is an attempt to make a Python templating system that is simple, powerful and well designed. Cubictemp also has built-in protection against cross-site-scripting attac, a very common class of web application vulnerability.
Comments