[ZDP] BackTalk to Document The Zope Book (2.5 Edition)/Searching and Categorizing Content

webmaster@zope.org webmaster@zope.org
Tue, 14 Jan 2003 06:48:47 -0500


A comment to the paragraph below was recently added via http://www.zope.org/Documentation/Books/ZopeBook/current/SearchingZCatalog.stx#3-92

---------------

      For example::

        # big or shiny
        results=Catalog(categories=['big, 'shiny'])

        # big and shiny
        results=Catalog(categories={'query':['big','shiny'], 
                                             'operator':'and'})

        % Anonymous User - Aug. 7, 2002 7:50 am:
         how is this related with the input form, for example? More example needed.

        % Anonymous User - Jan. 14, 2003 6:48 am:
         and what about ???
         ((categorires = A or B) AND name = C) or
          (categories = C or name = D)

         etc, etc, etc..
         and NOR, XOR...