[Checkins] SVN: zope.traversing/branches/3.5/ Revert BBB-incompatible use of ``zope.publisher.skinnable``: that

Tres Seaver tseaver at palladion.com
Mon Apr 6 12:38:14 EDT 2009


Log message for revision 98937:
  Revert BBB-incompatible use of ``zope.publisher.skinnable``:  that
  change belongs in a 3.6.0 release, because it requires a BBB-incompatible
  version of ``zope.publisher``.
  

Changed:
  U   zope.traversing/branches/3.5/CHANGES.txt
  U   zope.traversing/branches/3.5/setup.py
  U   zope.traversing/branches/3.5/src/zope/traversing/browser/absoluteurl.py

-=-
Modified: zope.traversing/branches/3.5/CHANGES.txt
===================================================================
--- zope.traversing/branches/3.5/CHANGES.txt	2009-04-06 16:31:28 UTC (rev 98936)
+++ zope.traversing/branches/3.5/CHANGES.txt	2009-04-06 16:38:14 UTC (rev 98937)
@@ -2,6 +2,24 @@
 Changes
 =======
 
+3.5.4 (2009-04-06)
+------------------
+
+- Revert BBB-incompatible use of ``zope.publisher.skinnable``:  that
+  change belongs in a 3.6.0 release, because it requires a BBB-incompatible
+  version of ``zope.publisher``.
+
+
+3.5.3 (2009-03-10)
+------------------
+
+- Use applySkin from new location. zope.publisher.skinnable instead of
+  zope.publisher.browser.
+
+- Use IAbsoluteURL lookup instead of the "absolute_url" view in the
+  recursive AbsoluteURL adapters (LP: #338101).
+
+
 3.5.2 (2009-02-04)
 ------------------
 

Modified: zope.traversing/branches/3.5/setup.py
===================================================================
--- zope.traversing/branches/3.5/setup.py	2009-04-06 16:31:28 UTC (rev 98936)
+++ zope.traversing/branches/3.5/setup.py	2009-04-06 16:38:14 UTC (rev 98937)
@@ -22,7 +22,7 @@
                     open('CHANGES.txt').read())
 
 setup(name='zope.traversing',
-      version = '3.5.2',
+      version = '3.5.4',
       url='http://pypi.python.org/pypi/zope.traversing',
       license='ZPL 2.1',
       author='Zope Corporation and Contributors',

Modified: zope.traversing/branches/3.5/src/zope/traversing/browser/absoluteurl.py
===================================================================
--- zope.traversing/branches/3.5/src/zope/traversing/browser/absoluteurl.py	2009-04-06 16:31:28 UTC (rev 98936)
+++ zope.traversing/branches/3.5/src/zope/traversing/browser/absoluteurl.py	2009-04-06 16:38:14 UTC (rev 98937)
@@ -57,7 +57,7 @@
             raise TypeError(_insufficientContext)
 
         url = str(zope.component.getMultiAdapter((container, request),
-                                                 name='absolute_url'))
+                                                 IAbsoluteURL))
         name = getattr(context, '__name__', None)
         if name is None:
             raise TypeError(_insufficientContext)
@@ -84,7 +84,7 @@
             return ({'name':'', 'url': self.request.getApplicationURL()}, )
 
         base = tuple(zope.component.getMultiAdapter(
-                (container, request), name='absolute_url').breadcrumbs())
+                (container, request), IAbsoluteURL).breadcrumbs())
 
         name = getattr(context, '__name__', None)
         if name is None:



More information about the Checkins mailing list