Edgewall Software

Changes between Version 14 and Version 15 of HelperFunctions


Ignore:
Timestamp:
Jun 19, 2007, 11:56:32 PM (17 years ago)
Author:
Kevin
Comment:

noticed a typo

Legend:

Unmodified
Added
Removed
Modified
  • HelperFunctions

    v14 v15  
    11= Helper functions for use in Genshi templates =
    22[[PageOutline(2)]]
    3 Often you need non-trivial presentation logic in templates, but Genshi does not (yet) let you drop into straight Python. In Genshi, such presentation logic must be either performed in the controller (i.e. the Python code feeding the template with date), or in ''helper functions'' that are called from within template expressions.
     3Often you need non-trivial presentation logic in templates, but Genshi does not (yet) let you drop into straight Python. In Genshi, such presentation logic must be either performed in the controller (i.e. the Python code feeding the template with data), or in ''helper functions'' that are called from within template expressions.
    44
    55This page serves as a place where generalized functions that solve common tasks in presentation logic can be collected. At some point, Genshi might include a library of such functions.