[Zope3-checkins] CVS: Zope3/src/zope/app/browser/utilities - traversal.py:1.5

Sidnei da Silva sidnei at x3ng.com.br
Sat Oct 18 14:56:54 EDT 2003


Update of /cvs-repository/Zope3/src/zope/app/browser/utilities
In directory cvs.zope.org:/tmp/cvs-serv3618/src/zope/app/browser/utilities

Modified Files:
	traversal.py 
Log Message:
Moved persistence wrapper code from persistence to zope.app.utilities,
as suggested by Jim. It needs to be like this because the wrapper
needs to know about checkers, and stuff in persistence should not
depend on Zope.

There are some warts still, but I hope someone with more knowledge
about the persistence machinery will be able to help me sort that
out. I really can't go more far than that.


=== Zope3/src/zope/app/browser/utilities/traversal.py 1.4 => 1.5 ===
--- Zope3/src/zope/app/browser/utilities/traversal.py:1.4	Sun Sep 21 13:31:11 2003
+++ Zope3/src/zope/app/browser/utilities/traversal.py	Sat Oct 18 14:56:23 2003
@@ -1,7 +1,7 @@
 ##############################################################################
 # Copyright (c) 2003 Zope Corporation and Contributors.
 # All Rights Reserved.
-# 
+#
 # This software is subject to the provisions of the Zope Public License,
 # Version 2.0 (ZPL).  A copy of the ZPL should accompany this distribution.
 # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
@@ -50,7 +50,7 @@
                 if ILocation.isImplementedBy(view):
                     view.__parent__ = self.context
                     view.__name__ = name
-                    
+
                 return view
 
             raise NotFoundError(self.context, name, request)




More information about the Zope3-Checkins mailing list