[Checkins] SVN: z3c.optionstorage/trunk/ Remove dependency on zope.app.publisher by using a newer zope.browserpage

Gediminas Paulauskas menesis at pov.lt
Sat Feb 20 19:35:47 EST 2010


Log message for revision 109196:
  Remove dependency on zope.app.publisher by using a newer zope.browserpage
  

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

-=-
Modified: z3c.optionstorage/trunk/CHANGES.txt
===================================================================
--- z3c.optionstorage/trunk/CHANGES.txt	2010-02-20 18:11:23 UTC (rev 109195)
+++ z3c.optionstorage/trunk/CHANGES.txt	2010-02-21 00:35:46 UTC (rev 109196)
@@ -2,6 +2,11 @@
 CHANGES
 =======
 
+1.0.7 (2010-02-21)
+------------------
+
+- Remove dependency on zope.app.publisher by using a newer zope.browserpage
+
 1.0.6 (2010-02-20)
 ------------------
 

Modified: z3c.optionstorage/trunk/setup.py
===================================================================
--- z3c.optionstorage/trunk/setup.py	2010-02-20 18:11:23 UTC (rev 109195)
+++ z3c.optionstorage/trunk/setup.py	2010-02-21 00:35:46 UTC (rev 109196)
@@ -22,7 +22,7 @@
     return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
 setup(name='z3c.optionstorage',
-      version = '1.0.6',
+      version = '1.0.7',
       author='Zope Corporation and Contributors',
       author_email='zope-dev at zope.org',
       description='Optional Storages -- Persistent, Managable Vocabularies',
@@ -51,7 +51,7 @@
       install_requires = ['setuptools',
                           'ZODB3',
                           'zope.annotation',
-                          'zope.browserpage',
+                          'zope.browserpage>=3.10',
                           'zope.component',
                           'zope.configuration',
                           'zope.i18n',
@@ -60,7 +60,6 @@
                           'zope.schema',
                           'zope.security',
                           'zope.traversing',
-                          'zope.app.pagetemplate',
                           'zope.app.form'],
       include_package_data = True,
       zip_safe = False,

Modified: z3c.optionstorage/trunk/src/z3c/optionstorage/browser/__init__.py
===================================================================
--- z3c.optionstorage/trunk/src/z3c/optionstorage/browser/__init__.py	2010-02-20 18:11:23 UTC (rev 109195)
+++ z3c.optionstorage/trunk/src/z3c/optionstorage/browser/__init__.py	2010-02-21 00:35:46 UTC (rev 109196)
@@ -12,7 +12,7 @@
 #
 ##############################################################################
 
-from zope.app.pagetemplate.viewpagetemplatefile import ViewPageTemplateFile
+from zope.browserpage.viewpagetemplatefile import ViewPageTemplateFile
 from z3c.optionstorage.interfaces import IOptionStorage
 from z3c.optionstorage import OptionDict
 



More information about the checkins mailing list