Edgewall Software

Changes between Version 109 and Version 110 of GenshiTutorial


Ignore:
Timestamp:
Feb 21, 2008, 8:41:27 PM (16 years ago)
Author:
Mark Mc Mahon
Comment:

Fixed some typos

Legend:

Unmodified
Added
Removed
Modified
  • GenshiTutorial

    v109 v110  
    233233}}}
    234234
    235 You'll need to import those classes in `geddit/controllers.py`, just below the other imports:
     235You'll need to import those classes in `geddit/controller.py`, just below the other imports:
    236236
    237237{{{
     
    590590
    591591def output(filename, method='html', encoding='utf-8', **options):
    592     """Decorator for exposed methods to specify what template the should use
     592    """Decorator for exposed methods to specify what template they should use
    593593    for rendering, and which serialization method and options should be
    594594    applied.
     
    747747 #!genshi
    748748      <title py:with="title = list(select('title/text()'))">
    749         geddit<py:if test="title">: ${title}</py:if>
     749        Geddit<py:if test="title">: ${title}</py:if>
    750750      </title>
    751751 }}}