[Zope-Checkins] CVS: Zope2 - DT_In.py:1.43.4.4

Brian Lloyd brian@digicool.com
Fri, 13 Apr 2001 15:30:38 -0400 (EDT)


Update of /cvs-repository/Zope2/lib/python/DocumentTemplate
In directory korak:/home/brian/temp/zope-23-branch/lib/python/DocumentTemplate

Modified Files:
      Tag: zope-2_3-branch
	DT_In.py 
Log Message:
added typo fixes & missing docs



--- Updated File DT_In.py in package Zope2 --
--- DT_In.py	2001/03/08 18:35:10	1.43.4.3
+++ DT_In.py	2001/04/13 19:30:38	1.43.4.4
@@ -124,9 +124,13 @@
       sort -- Define the sort order for sequence items.  If an item in
       the sequence does not define 
 
+      sort_expr -- This allows an expression to control sort order.
+
       reverse -- Reverse the sequence (may be combined with sort).  Note
       that this can cause a huge memory use in lazy activation instances. 
 
+      reverse_expr -- This allows reversing to be controlled by an expression.
+
       Within an 'in' block, variables are substituted from the
       elements of the iteration.  The elements may be either
       instance or mapping objects.  In addition, the variables:
@@ -186,7 +190,7 @@
     Batch sequence insertion
 
       When displaying a large number of objects, it is sometimes
-      desireable to display just a sub-sequence of the data.
+      desirable to display just a sub-sequence of the data.
       An 'in' command may have optional parameters,
       as in::
 
@@ -240,14 +244,14 @@
                  <!--#/in-->
 
              If the original URL is: 'foo/bar?x=1&y=2', then the
-             rendered text (after row data are displated) will be::
+             rendered text (after row data are displayed) will be::
 
                       <a href="foo/bar?x=1&y=2&batch_start=20">
                       (Next 20 results)
                       </a>
 
              If the original URL is: 'foo/bar?batch_start=10&x=1&y=2',
-             then the rendered text (after row data are displated)
+             then the rendered text (after row data are displayed)
              will be::
 
                       <a href="foo/bar?x=1&y=2&batch_start=30">
@@ -353,16 +357,16 @@
         mean -- The mean of numeric values values.
 
         variance -- The variance of numeric values computed with a
-          degrees of freedom qeual to the count - 1.
+          degrees of freedom equal to the count - 1.
 
         variance-n -- The variance of numeric values computed with a
-          degrees of freedom qeual to the count.
+          degrees of freedom equal to the count.
 
         standard-deviation -- The standard deviation of numeric values
-          computed with a degrees of freedom qeual to the count - 1.
+          computed with a degrees of freedom equal to the count - 1.
 
         standard-deviation-n -- The standard deviation of numeric
-          values computed with a degrees of freedom qeual to the count.
+          values computed with a degrees of freedom equal to the count.
 
       Missing values are either 'None' or the attribute 'Value'
       of the module 'Missing', if present.