diff options
| -rw-r--r-- | CHANGES | 3 | ||||
| -rw-r--r-- | docs/users_guide_src/output.tex | 7 |
2 files changed, 9 insertions, 1 deletions
@@ -1,8 +1,9 @@ Please initial your changes and add a date for each release ================================================================================ -0.9.9a4 (not released) +0.9.9a4 (October 30, 2001) - added #repeat (TR implementing Chuck's suggestion) - added #unless (TR implementing Mike's suggestion) + - updates to the docs (MO) 0.9.9a3 (October 12, 2001) - more in the Users Guide (TR) diff --git a/docs/users_guide_src/output.tex b/docs/users_guide_src/output.tex index 0c684f1..bde203a 100644 --- a/docs/users_guide_src/output.tex +++ b/docs/users_guide_src/output.tex @@ -15,6 +15,13 @@ representation of its value. These string representations are identical to those returned by Python's str() function, with the exception of \code{None}. \code{None} is replaced with an empty string, or in other words nothing. +Cheetah finds the values for Placeholders in several places. First, the +placeholder name can be one of Python's builtins, like \code{\$range} or +\code{\$len}. Second, the name can refer to a variable in Cheetah's +\code{``searchList''}. Third, the name can refer to a local variable, such as +\code{\$i} in a for loop, or an imported module name, such as \code{\#import +math \ldots \$math.sin(0.5)}. + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \subsection{Output From Complex Expressions: \#echo} \label{TDL.echo} |
