[Checkins] SVN: five.customerize/branches/plone-3.0-branch-with-viewlet-support/ merged intermediate changes from the plone-3.0 branch

Andreas Zeidler az at zitc.de
Thu Aug 16 06:09:19 EDT 2007


Log message for revision 78872:
  merged intermediate changes from the plone-3.0 branch

Changed:
  U   five.customerize/branches/plone-3.0-branch-with-viewlet-support/CHANGES.txt
  U   five.customerize/branches/plone-3.0-branch-with-viewlet-support/setup.py
  U   five.customerize/branches/plone-3.0-branch-with-viewlet-support/src/five/customerize/browser.py
  U   five.customerize/branches/plone-3.0-branch-with-viewlet-support/src/five/customerize/version.txt

-=-
Modified: five.customerize/branches/plone-3.0-branch-with-viewlet-support/CHANGES.txt
===================================================================
--- five.customerize/branches/plone-3.0-branch-with-viewlet-support/CHANGES.txt	2007-08-16 10:02:59 UTC (rev 78871)
+++ five.customerize/branches/plone-3.0-branch-with-viewlet-support/CHANGES.txt	2007-08-16 10:09:18 UTC (rev 78872)
@@ -1,6 +1,12 @@
 CHANGES
 =======
 
+five.customerize 0.1.3 (2007/07/08)
+---------------------------------
+
+Fix in setup.py
+
+
 five.customerize 0.1.2 (2007/05/04)
 ---------------------------------
 

Modified: five.customerize/branches/plone-3.0-branch-with-viewlet-support/setup.py
===================================================================
--- five.customerize/branches/plone-3.0-branch-with-viewlet-support/setup.py	2007-08-16 10:02:59 UTC (rev 78871)
+++ five.customerize/branches/plone-3.0-branch-with-viewlet-support/setup.py	2007-08-16 10:09:18 UTC (rev 78872)
@@ -16,7 +16,7 @@
 from setuptools import setup
 
 setup(name = 'five.customerize',
-      version = '0.1.2',
+      version = '0.1.3',
       description = 'TTW customization of template-based Zope 3 views',
       keywords = 'zope3 views templates customization ttw',
       author = 'Zope Corporation and Contributors',
@@ -30,6 +30,9 @@
       include_package_data = True,
       platforms = 'Any',
       zip_safe = False,
+      install_requires=[
+        'setuptools'
+      ],
       classifiers = [
         'Development Status :: 4 - Beta',
         'Environment :: Web Environment',

Modified: five.customerize/branches/plone-3.0-branch-with-viewlet-support/src/five/customerize/browser.py
===================================================================
--- five.customerize/branches/plone-3.0-branch-with-viewlet-support/src/five/customerize/browser.py	2007-08-16 10:02:59 UTC (rev 78871)
+++ five.customerize/branches/plone-3.0-branch-with-viewlet-support/src/five/customerize/browser.py	2007-08-16 10:09:18 UTC (rev 78872)
@@ -54,7 +54,7 @@
         try:
             zope.dottedname.resolve.resolve('.'.join(pieces))
             break
-        except ImportError:
+        except (ImportError, ValueError):
             pieces = pieces[1:]
     if not pieces:
         return filename

Modified: five.customerize/branches/plone-3.0-branch-with-viewlet-support/src/five/customerize/version.txt
===================================================================
--- five.customerize/branches/plone-3.0-branch-with-viewlet-support/src/five/customerize/version.txt	2007-08-16 10:02:59 UTC (rev 78871)
+++ five.customerize/branches/plone-3.0-branch-with-viewlet-support/src/five/customerize/version.txt	2007-08-16 10:09:18 UTC (rev 78872)
@@ -1 +1 @@
-0.1.2
\ No newline at end of file
+0.1.3
\ No newline at end of file



More information about the Checkins mailing list