[Checkins] SVN: z3c.optionstorage/trunk/ Replace the use of zope.app.publisher with zope.browserpage

Gediminas Paulauskas menesis at pov.lt
Fri Feb 19 13:25:09 EST 2010


Log message for revision 109165:
  Replace the use of zope.app.publisher with zope.browserpage
  

Changed:
  U   z3c.optionstorage/trunk/CHANGES.txt
  U   z3c.optionstorage/trunk/setup.py
  U   z3c.optionstorage/trunk/src/z3c/optionstorage/browser/metaconfigure.py
  U   z3c.optionstorage/trunk/src/z3c/optionstorage/browser/metadirectives.py

-=-
Modified: z3c.optionstorage/trunk/CHANGES.txt
===================================================================
--- z3c.optionstorage/trunk/CHANGES.txt	2010-02-19 18:22:13 UTC (rev 109164)
+++ z3c.optionstorage/trunk/CHANGES.txt	2010-02-19 18:25:08 UTC (rev 109165)
@@ -5,7 +5,8 @@
 1.0.6 (unreleased)
 ------------------
 
-- ...
+- Remove dependency on zope.app.zapi and zope.deprecation
+- Replace the use of zope.app.publisher with zope.browserpage
 
 1.0.5 (2010-01-04)
 ------------------

Modified: z3c.optionstorage/trunk/setup.py
===================================================================
--- z3c.optionstorage/trunk/setup.py	2010-02-19 18:22:13 UTC (rev 109164)
+++ z3c.optionstorage/trunk/setup.py	2010-02-19 18:25:08 UTC (rev 109165)
@@ -51,6 +51,7 @@
       install_requires = ['setuptools',
                           'ZODB3',
                           'zope.annotation',
+                          'zope.browserpage',
                           'zope.component',
                           'zope.configuration',
                           'zope.i18n',
@@ -60,7 +61,6 @@
                           'zope.security',
                           'zope.traversing',
                           'zope.app.pagetemplate',
-                          'zope.app.publisher',
                           'zope.app.form'],
       include_package_data = True,
       zip_safe = False,

Modified: z3c.optionstorage/trunk/src/z3c/optionstorage/browser/metaconfigure.py
===================================================================
--- z3c.optionstorage/trunk/src/z3c/optionstorage/browser/metaconfigure.py	2010-02-19 18:22:13 UTC (rev 109164)
+++ z3c.optionstorage/trunk/src/z3c/optionstorage/browser/metaconfigure.py	2010-02-19 18:25:08 UTC (rev 109165)
@@ -11,7 +11,7 @@
 # FOR A PARTICULAR PURPOSE.
 #
 ##############################################################################
-from zope.app.publisher.browser.viewmeta import page
+from zope.browserpage.metaconfigure import page
 from z3c.optionstorage.browser import OptionStorageView
 
 class optionStorage(object):

Modified: z3c.optionstorage/trunk/src/z3c/optionstorage/browser/metadirectives.py
===================================================================
--- z3c.optionstorage/trunk/src/z3c/optionstorage/browser/metadirectives.py	2010-02-19 18:22:13 UTC (rev 109164)
+++ z3c.optionstorage/trunk/src/z3c/optionstorage/browser/metadirectives.py	2010-02-19 18:25:08 UTC (rev 109165)
@@ -11,7 +11,7 @@
 # FOR A PARTICULAR PURPOSE.
 #
 ##############################################################################
-from zope.app.publisher.browser.metadirectives import IViewDirective
+from zope.browserpage.metadirectives import IViewDirective
 from zope.configuration.fields import MessageID
 from zope.interface import Interface
 from zope.schema import TextLine



More information about the checkins mailing list