[Checkins] SVN: z3c.searcher/trunk/ use new zope packages

Roger Ineichen roger at projekt01.ch
Sun Feb 22 00:20:25 EST 2009


Log message for revision 96985:
  use new zope packages

Changed:
  U   z3c.searcher/trunk/CHANGES.txt
  U   z3c.searcher/trunk/setup.py
  U   z3c.searcher/trunk/src/z3c/searcher/README.txt
  U   z3c.searcher/trunk/src/z3c/searcher/criterium.py
  U   z3c.searcher/trunk/src/z3c/searcher/filter.py
  U   z3c.searcher/trunk/src/z3c/searcher/table.py

-=-
Modified: z3c.searcher/trunk/CHANGES.txt
===================================================================
--- z3c.searcher/trunk/CHANGES.txt	2009-02-22 04:51:40 UTC (rev 96984)
+++ z3c.searcher/trunk/CHANGES.txt	2009-02-22 05:20:25 UTC (rev 96985)
@@ -2,7 +2,7 @@
 CHANGES
 =======
 
-Version 0.5.0 (unreleased)
+Version 0.5.0 (2009-02-22)
 -------------------------
 
 - Added initial generations configuration files

Modified: z3c.searcher/trunk/setup.py
===================================================================
--- z3c.searcher/trunk/setup.py	2009-02-22 04:51:40 UTC (rev 96984)
+++ z3c.searcher/trunk/setup.py	2009-02-22 05:20:25 UTC (rev 96985)
@@ -23,7 +23,7 @@
 
 setup (
     name='z3c.searcher',
-    version='0.5.0dev',
+    version='0.5.0',
     author = "Roger Ineichen and the Zope Community",
     author_email = "zope3-dev at zope.org",
     description = "Persistent and session based search form for Zope3",
@@ -73,7 +73,7 @@
         'z3c.table',
         'zc.catalog',
         'zope.app.intid',
-        'zope.app.container',
+        'zope.container',
         'zope.component',
         'zope.event',
         'zope.index',

Modified: z3c.searcher/trunk/src/z3c/searcher/README.txt
===================================================================
--- z3c.searcher/trunk/src/z3c/searcher/README.txt	2009-02-22 04:51:40 UTC (rev 96984)
+++ z3c.searcher/trunk/src/z3c/searcher/README.txt	2009-02-22 05:20:25 UTC (rev 96985)
@@ -19,8 +19,8 @@
 Setup some helpers:
 
   >>> import zope.component
-  >>> from zope.app import folder
-  >>> from zope.app.component.site import LocalSiteManager
+  >>> from zope.site import folder
+  >>> from zope.site import LocalSiteManager
   >>> from z3c.indexer.interfaces import IIndex
 
 Setup a site

Modified: z3c.searcher/trunk/src/z3c/searcher/criterium.py
===================================================================
--- z3c.searcher/trunk/src/z3c/searcher/criterium.py	2009-02-22 04:51:40 UTC (rev 96984)
+++ z3c.searcher/trunk/src/z3c/searcher/criterium.py	2009-02-22 05:20:25 UTC (rev 96985)
@@ -19,7 +19,7 @@
 import persistent
 import zope.interface
 from zope.schema.fieldproperty import FieldProperty
-from zope.app.container import contained
+from zope.container import contained
 
 from z3c.i18n import MessageFactory as _
 from z3c.indexer import query

Modified: z3c.searcher/trunk/src/z3c/searcher/filter.py
===================================================================
--- z3c.searcher/trunk/src/z3c/searcher/filter.py	2009-02-22 04:51:40 UTC (rev 96984)
+++ z3c.searcher/trunk/src/z3c/searcher/filter.py	2009-02-22 05:20:25 UTC (rev 96985)
@@ -23,7 +23,7 @@
 import zope.event
 import zope.lifecycleevent
 from zope.location import location
-from zope.app.container import contained
+from zope.container import contained
 
 from z3c.indexer import query
 from z3c.indexer.search import SearchQuery

Modified: z3c.searcher/trunk/src/z3c/searcher/table.py
===================================================================
--- z3c.searcher/trunk/src/z3c/searcher/table.py	2009-02-22 04:51:40 UTC (rev 96984)
+++ z3c.searcher/trunk/src/z3c/searcher/table.py	2009-02-22 05:20:25 UTC (rev 96985)
@@ -16,14 +16,6 @@
 """
 __docformat__ = "reStructuredText"
 
-import zope.component
-import zope.event
-import zope.lifecycleevent
-
-from zope.index.text import parsetree
-from zope.location import location
-
-from z3c.indexer.search import SearchQuery
 from z3c.template.template import getPageTemplate
 from z3c.template.template import getLayoutTemplate
 



More information about the Checkins mailing list