Edgewall Software

Changes between Version 1 and Version 2 of TracDev/ApiChanges/0.11


Ignore:
Timestamp:
Sep 13, 2006, 1:15:41 PM (18 years ago)
Author:
Christian Boos
Comment:

Fixed a few glitches

Legend:

Unmodified
Added
Removed
Modified
  • TracDev/ApiChanges/0.11

    v1 v2  
    2222
    2323Most of the time, the porting is a straightforward operation.
    24 ==== expanding a variable ====
     24==== expand a variable ====
    2525 - Clearsilver [[xml(<b><?cs var:the_variable ?></b>)]]
    2626 - Genshi [[xml(<b>$the_variable</b>)]]
     
    4848#!xml
    4949<py:choose test="flag">
    50   <py:when test="True>
     50  <py:when test="True">
    5151    <b>OK</b>
    5252  </py:when>
     
    6666   The <py:choose>/<py:when>/<py:otherwise> is a bit heavy-weight for a simple if/else, but on the other hand, the construct is more general (think switch/case, or the equivalent choose/when/otherwise in XSLT).
    6767
    68 ==== iterating ====
     68==== iterate over a collection ====
    6969 - Clearsilver
    7070   {{{