[Checkins] SVN: zope2docs/trunk/zope2book/SearchingZCatalog.rst - fix search range identifier ("min:max" instead of "minmax")

Jens Vagelpohl jens at dataflake.org
Mon Nov 2 09:16:48 EST 2009


Log message for revision 105451:
  - fix search range identifier ("min:max" instead of "minmax")
  

Changed:
  U   zope2docs/trunk/zope2book/SearchingZCatalog.rst

-=-
Modified: zope2docs/trunk/zope2book/SearchingZCatalog.rst
===================================================================
--- zope2docs/trunk/zope2book/SearchingZCatalog.rst	2009-11-02 13:31:23 UTC (rev 105450)
+++ zope2docs/trunk/zope2book/SearchingZCatalog.rst	2009-11-02 14:16:48 UTC (rev 105451)
@@ -1069,7 +1069,7 @@
       Searches for all objects with values smaller than
       the maximum of the values passed in the 'query' parameter.
 
-    'minmax'
+    'min:max'
       Searches for all objects with values smaller than the maximum of the
       values passed in the 'query' parameter and larger than the minimum of
       the values passwd in the 'query' parameter. 
@@ -1095,7 +1095,7 @@
   zcat = context.AnimalCatalog
   results=zcat(population_count={
                    'query': [ 5, 10 ],
-                   'range': 'minmax'}
+                   'range': 'min:max'}
               )
 
 This query mathches all animals with population count
@@ -1213,7 +1213,7 @@
       Searches for all objects with values smaller than
       the maximum of the values passed in the 'query' parameter.
 
-    'minmax'
+    'min:max'
       Searches for all objects with values smaller
       than the maximum of the values passed in the 'query'
       parameter and larger than the minimum of the values passwd



More information about the checkins mailing list