summaryrefslogtreecommitdiff
path: root/www/users_guide/comparisons.rst
blob: b6adbbaa815e4c6696858c9e431d192a353e3089 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
Cheetah vs. Other Template Engines
==================================

(comparisons)

This appendix compares Cheetah with various other template/emdedded
scripting languages and Internet development frameworks. As Cheetah
is similar to Velocity at a superficial level, you may also wish to
read comparisons between Velocity and other languages at
http://jakarta.apache.org/velocity/ymtd/ymtd.html.

Which features are unique to Cheetah
------------------------------------

(comparisons.unique)


-  The { block framework} (section inheritanceEtc.block)

-  Cheetah's powerful yet simple { caching framework} (section
   output.caching)

-  Cheetah's { Unified Dotted Notation} and { autocalling}
   (sections language.namemapper.dict and
   language.namemapper.autocalling)

-  Cheetah's searchList (section language.searchList) information.

-  Cheetah's {#raw} directive (section output.raw)

-  Cheetah's {#slurp} directive (section output.slurp)

-  Cheetah's tight integration with Webware for Python (section
   webware)

-  Cheetah's { SkeletonPage framework} (section
   libraries.templates.skeletonPage)

-  Cheetah's ability to mix PSP-style code with Cheetah Language
   syntax (section tips.PSP) Because of Cheetah's design and Python's
   flexibility it is relatively easy to extend Cheetah's syntax with
   syntax elements from almost any other template or embedded
   scripting language.


Cheetah vs. Velocity
--------------------

(comparisons.velocity)

For a basic introduction to Velocity, visit
http://jakarta.apache.org/velocity.

Velocity is a Java template engine. It's older than Cheetah, has a
larger user base, and has better examples and docs at the moment.
Cheetah, however, has a number of advantages over Velocity:


-  Cheetah is written in Python. Thus, it's easier to use and
   extend.

-  Cheetah's syntax is closer to Python's syntax than Velocity's is
   to Java's.

-  Cheetah has a powerful caching mechanism. Velocity has no
   equivalent.

-  It's far easier to add data/objects into the namespace where
   $placeholder values are extracted from in Cheetah. Velocity calls
   this namespace a 'context'. Contexts are dictionaries/hashtables.
   You can put anything you want into a context, BUT you have to use
   the .put() method to populate the context; e.g.,

   ::

       VelocityContext context1 = new VelocityContext();
       context1.put("name","Velocity");
       context1.put("project", "Jakarta");
       context1.put("duplicate", "I am in context1");

   Cheetah takes a different approach. Rather than require you to
   manually populate the 'namespace' like Velocity, Cheetah will
   accept any existing Python object or dictionary AS the 'namespace'.
   Furthermore, Cheetah allows you to specify a list namespaces that
   will be searched in sequence to find a varname-to-value mapping.
   This searchList can be extended at run-time.

   If you add a 'foo' object to the searchList and the 'foo' has an
   attribute called 'bar', you can simply type {$bar} in the template.
   If the second item in the searchList is dictionary 'foofoo'
   containing {{'spam':1234, 'parrot':666}}, Cheetah will first look
   in the 'foo' object for a 'spam' attribute. Not finding it, Cheetah
   will then go to 'foofoo' (the second element in the searchList) and
   look among its dictionary keys for 'spam'. Finding it, Cheetah will
   select {foofoo['spam']} as {$spam}'s value.

-  In Cheetah, the tokens that are used to signal the start of
   $placeholders and #directives are configurable. You can set them to
   any character sequences, not just $ and #.


Cheetah vs. WebMacro
--------------------

(comparisons.webmacro)

For a basic introduction to WebMacro, visit http://webmacro.org.

The points discussed in section comparisons.velocity also apply to
the comparison between Cheetah and WebMacro. For further
differences please refer to
http://jakarta.apache.org/velocity/differences.html.

Cheetah vs. Zope's DTML
-----------------------

(comparisons.dtml)

For a basic introduction to DTML, visit
http://www.zope.org/Members/michel/ZB/DTML.dtml.


-  Cheetah is faster than DTML.

-  Cheetah does not use HTML-style tags; DTML does. Thus, Cheetah
   tags are visible in rendered HTML output if something goes wrong.

-  DTML can only be used with ZOPE for web development; Cheetah can
   be used as a standalone tool for any purpose.

-  Cheetah's documentation is more complete than DTML's.

-  Cheetah's learning curve is shorter than DTML's.

-  DTML has no equivalent of Cheetah's blocks, caching framework,
   unified dotted notation, and {#raw} directive.


Here are some examples of syntax differences between DTML and
Cheetah:

::

    <ul>
    <dtml-in frogQuery>
     <li><dtml-var animal_name></li>
    </dtml-in>
    </ul>

::

    <ul>
    #for $animal_name in $frogQuery
     <li>$animal_name</li>
    #end for
    </ul>

::

    <dtml-if expr="monkeys > monkey_limit">
      <p>There are too many monkeys!</p>
    <dtml-elif expr="monkeys < minimum_monkeys">
      <p>There aren't enough monkeys!</p>
    <dtml-else>
      <p>There are just enough monkeys.</p>
    </dtml-if>

::

    #if $monkeys > $monkey_limit
      <p>There are too many monkeys!</p>
    #else if $monkeys < $minimum_monkeys
      <p>There aren't enough monkeys!</p>
    #else
      <p>There are just enough monkeys.</p>
    #end if

::

    <table>
    <dtml-in expr="objectValues('File')">
      <dtml-if sequence-even>
        <tr bgcolor="grey">
      <dtml-else>
        <tr>
      </dtml-if>    
      <td>
      <a href="&dtml-absolute_url;"><dtml-var title_or_id></a>
      </td></tr>
    </dtml-in>
    </table>

::

    <table>
    #set $evenRow = 0
    #for $file in $files('File')
      #if $evenRow
        <tr bgcolor="grey">
        #set $evenRow = 0
      #else
        <tr>
        #set $evenRow = 1
      #end if
      <td>
      <a href="$file.absolute_url">$file.title_or_id</a>
      </td></tr>
    #end for
    </table>

The last example changed the name of {$objectValues} to {$files}
because that's what a Cheetah developer would write. The developer
would be responsible for ensuring {$files} returned a list (or
tuple) of objects (or dictionaries) containing the attributes (or
methods or dictionary keys) 'absolute\_url' and 'title\_or\_id'.
All these names ('objectValues', 'absolute\_url' and
'title\_or\_id') are standard parts of Zope, but in Cheetah the
developer is in charge of writing them and giving them a reasonable
behaviour.

Some of DTML's features are being ported to Cheetah, such as
{Cheetah.Tools.MondoReport}, which is based on the {<dtml-in>} tag.
We are also planning an output filter as flexible as the
{<dtml-var>} formatting options. However, neither of these are
complete yet.

Cheetah vs. Zope Page Templates
-------------------------------

(comparisons.zpt)

For a basic introduction to Zope Page Templates, please visit
http://www.zope.org/Documentation/Articles/ZPT2.

Cheetah vs. PHP's Smarty templates
----------------------------------

(comparisons.smarty)

PHP (http://www.php.net/) is one of the few scripting languages
expressly designed for web servlets. However, it's also a
full-fledged programming language with libraries similar to
Python's and Perl's. The syntax and functions are like a cross
between Perl and C plus some original ideas (e.g.; a single array
type serves as both a list and a dictionary, ``$arr[]="value";``
appends to an array).

Smarty (http://smarty.php.net/) is an advanced template engine for
PHP. ({ Note:} this comparision is based on Smarty's on-line
documentation. The author has not used Smarty. Please send
corrections or ommissions to the Cheetah mailing list.) Like
Cheetah, Smarty:


-  compiles to the target programming language (PHP).

-  has configurable delimeters.

-  passes if-blocks directly to PHP, so you can use any PHP
   expression in them.

-  allows you to embed PHP code in a template.

-  has a caching framework (although it works quite differently).

-  can read the template definition from any arbitrary source.


Features Smarty has that Cheetah lacks:


-  Preprocessors, postprocessors and output filters. You can
   emulate a preprocessor in Cheetah by running your template
   definition through a filter program or function before Cheetah sees
   it. To emulate a postprocessor, run a .py template module through a
   filter program/function. To emulate a Smarty output filter, run the
   template output through a filter program/function. If you want to
   use "cheetah compile" or "cheetah fill" in a pipeline, use {-} as
   the input file name and {-stdout} to send the result to standard
   output. Note that Cheetah uses the term "output filter" differently
   than Smarty: Cheetah output filters ({#filter}) operate on
   placeholders, while Smarty output filters operate on the entire
   template output. There has been a proposed {#sed} directive that
   would operate on the entire output line by line, but it has not
   been implemented.

-  Variable modifiers. In some cases, Python has equivalent string
   methods ({.strip}, {.capitalize}, {.replace(SEARCH, REPL)}), but in
   other cases you must wrap the result in a function call or write a
   custom output filter ({#filter}).

-  Certain web-specific functions, which can be emulated with
   third-party functions.

-  The ability to "plug in" new directives in a modular way.
   Cheetah directives are tightly bound to the compiler. However,
   third-party { functions} can be freely imported and called from
   placeholders, and { methods} can be mixed in via {#extends}. Part
   of this is because Cheetah distinguishes between functions and
   directives, while Smarty treats them all as "functions". Cheetah's
   design does not allow functions to have flow control effect outside
   the function (e.g., {#if} and {#for}, which operate on template
   body lines), so directives like these cannot be encoded as
   functions.

-  Configuration variables read from an .ini-style file. The
   {Cheetah.SettingsManager} module can parse such a file, but you'd
   have to invoke it manually. (See the docstrings in the module for
   details.) In Smarty, this feature is used for multilingual
   applications. In Cheetah, the developers maintain that everybody
   has their own preferred way to do this (such as using Python's
   {gettext} module), and it's not worth blessing one particular
   strategy in Cheetah since it's easy enough to integrate third-party
   code around the template, or to add the resulting values to the
   searchList.


Features Cheetah has that Smarty lacks:


-  Saving the compilation result in a Python (PHP) module for quick
   reading later.

-  Caching individual placeholders or portions of a template.
   Smarty caches only the entire template output as a unit.


Comparisions of various Smarty constructs:

::

    {assign var="name" value="Bob"} (#set has better syntax in the author's opinion)
    counter   (looks like equivalent to #for)
    eval      (same as #include with variable)
    fetch: insert file content into output   (#include raw)
    fetch: insert URL content into output    (no euqivalent, user can write
         function calling urllib, call as $fetchURL('URL') )
    fetch: read file into variable  (no equivalent, user can write function
         based on the 'open/file' builtin, or on .getFileContents() in
         Template.)
    fetch: read URL content into variable  (no equivalent, use above
         function and call as:  #set $var = $fetchURL('URL')
    html_options: output an HTML option list  (no equivalent, user can
         write custom function.  Maybe FunFormKit can help.)
    html_select_date: output three dropdown controls to specify a date
         (no equivalent, user can write custom function)
    html_select_time: output four dropdown controls to specify a time
         (no equvalent, user can write custom function)
    math: eval calculation and output result   (same as #echo)
    math: eval calculation and assign to variable  (same as #set)
    popup_init: library for popup windows  (no equivalent, user can write
         custom method outputting Javascript)
    
    
    Other commands:
    capture   (no equivalent, collects output into variable.  A Python
         program would create a StringIO instance, set sys.stdout to
         it temporarily, print the output, set sys.stdout back, then use
         .getvalue() to get the result.)
    config_load   (roughly analagous to #settings, which was removed
         from Cheetah.  Use Cheetah.SettingsManager manually or write
         a custom function.)
    include   (same as #include, but can include into variable.
         Variables are apparently shared between parent and child.)
    include_php: include a PHP script (e.g., functions)
         (use #extends or #import instead)
    insert   (same as #include not in a #cache region)
    {ldelim}{rdelim}   (escape literal $ and # with a backslash,
         use #compiler-settings to change the delimeters)
    literal  (#raw)
    php    (``<% %>'' tags)
    section  (#for $i in $range(...) )
    foreach  (#for)
    strip   (like the #sed tag which was never implemented.  Strips
         leading/trailing whitespace from lines, joins several lines
         together.)
    
    
    Variable modifiers:
    capitalize    ( $STRING.capitalize() )
    count_characters    (   $len(STRING)  )
    count_paragraphs/sentances/words   (no equivalent, user can write function)
    date_format    (use 'time' module or download Egenix's mx.DateTime)
    default    ($getVar('varName', 'default value') )
    escape: html encode    ($cgi.escape(VALUE) )
    escape: url encode    ($urllib.quote_plus(VALUE) )
    escape: hex encode   (no equivalent?  user can write function)
    escape: hex entity encode  (no equivalent?  user can write function)
    indent: indent all lines of a var's output  (may be part of future
         #indent directive)
    lower    ($STRING.lower() )
    regex_replace   ('re' module)
    replace    ($STRING.replace(OLD, NEW, MAXSPLIT) )
    spacify   (#echo "SEPARATOR".join(SEQUENCE) )
    string_format   (#echo "%.2f" % FLOAT , etc.)
    strip_tags  (no equivalent, user can write function to strip HTML tags,
         or customize the WebSafe filter)
    truncate   (no equivalent, user can write function)
    upper   ($STRING.upper() )
    wordwrap  ('writer' module, or a new module coming in Python 2.3)

Some of these modifiers could be added to the super output filter
we want to write someday.

Cheetah vs. PHPLib's Template class
-----------------------------------

(comparisons.php)

PHPLib ((http://phplib.netuse.de/) is a collection of classes for
various web objects (authentication, shopping cart, sessions, etc),
but what we're interested in is the {Template} object. It's much
more primitive than Smarty, and was based on an old Perl template
class. In fact, one of the precursors to Cheetah was based on it
too. Differences from Cheetah:


-  Templates consist of text with {{placeholders}} in braces.

-  Instead of a searchList, there is one flat namespace. Every
   variable must be assigned via the {set\_var} method. However, you
   can pass this method an array (dictionary) of several variables at
   once.

-  You cannot embed lookups or calculations into the template.
   Every placeholder must be an exact variable name.

-  There are no directives. You must do all display logic (if, for,
   etc) in the calling routine.

-  There is, however, a "block" construct. A block is a portion of
   text between the comment markers {<!- BEGIN blockName -> ... <!-
   END blockName>}. The {set\_block} method extracts this text into a
   namespace variable and puts a placeholder referring to it in the
   template. This has a few parallels with Cheetah's {#block}
   directive but is overall quite different.

-  To do the equivalent of {#if}, extract the block. Then if true,
   do nothing. If false, assign the empty string to the namespace
   variable.

-  To do the equivalent of {#for}, extract the block. Set any
   namespace variables needed inside the loop. To parse one iteration,
   use the {parse} method to fill the block variable (a mini-template)
   into another namespace variable, appending to it. Refresh the
   namespace variables needed inside the loop and parse again; repeat
   for each iteration. You'll end up with a mini-result that will be
   plugged into the main template's placeholder.

-  To read a template definition from a file, use the {set\_file}
   method. This places the file's content in a namespace variable. To
   read a template definition from a string, assign it to a namespace
   variable.

-  Thus, for complicated templates, you are doing a lot of
   recursive block filling and file reading and parsing mini-templates
   all into one flat namespace as you finally build up values for the
   main template. In Cheetah, all this display logic can be embedded
   into the template using directives, calling out to Python methods
   for the more complicated tasks.

-  Although you can nest blocks in the template, it becomes tedious
   and arguably hard to read, because all blocks have identical
   syntax. Unless you choose your block names carefully and put
   comments around them, it's hard to tell which blocks are if-blocks
   and which are for-blocks, or what their nesting order is.

-  PHPLib templates do not have caching, output filters, etc.


Cheetah vs. PSP, PHP, ASP, JSP, Embperl, etc.
---------------------------------------------

(comparisons.pspEtc)

Webware's PSP Component
    - http://webware.sourceforge.net/Webware/PSP/Docs/

Tomcat JSP Information
    - http://jakarta.apache.org/tomcat/index.html

ASP Information at ASP101
    - http://www.asp101.com/

Embperl
    - http://perl.apache.org/embperl/


Here's a basic Cheetah example:

::

    <TABLE>
    #for $client in $service.clients
    <TR>
    <TD>$client.surname, $client.firstname</TD>
    <TD><A HREF="mailto:$client.email" >$client.email</A></TD>
    </TR>
    #end for
    </TABLE>

Compare this with PSP:

::

    <TABLE>
    <% for client in service.clients(): %>
    <TR>
    <TD><%=client.surname()%>, <%=client.firstname()%></TD>
    <TD><A HREF="mailto:<%=client.email()%>"><%=client.email()%></A></TD>
    </TR>
    <%end%>
    </TABLE>