[Checkins] SVN: zope.traversing/branches/3.4/ Fixed deprecation warning caused by using an old module name for

Marius Gedminas marius at pov.lt
Wed Jul 30 14:00:44 EDT 2008


Log message for revision 89053:
  Fixed deprecation warning caused by using an old module name for
  ZopeSecurityPolicy in ftesting.zcml
  
  Backport revision 89016 from trunk with
  
    svn merge -r 89015:89016 svn+ssh://svn.zope.org/repos/main/zope.traversing/trunk .
  
  

Changed:
  U   zope.traversing/branches/3.4/CHANGES.txt
  U   zope.traversing/branches/3.4/src/zope/traversing/tests/ftesting.zcml

-=-
Modified: zope.traversing/branches/3.4/CHANGES.txt
===================================================================
--- zope.traversing/branches/3.4/CHANGES.txt	2008-07-30 17:57:32 UTC (rev 89052)
+++ zope.traversing/branches/3.4/CHANGES.txt	2008-07-30 18:00:44 UTC (rev 89053)
@@ -4,16 +4,15 @@
 3.4.1 (unreleased)
 ------------------
 
-...
+- Fixed deprecation warning caused by using an old module name for
+  ZopeSecurityPolicy in ftesting.zcml
 
-
 3.4.1a1 (2007-11-13)
 --------------------
 
 - do not use unicode strings to set the application server in the virtual host
   namespace. This caused absolute_url to create unicode URL's.
 
-
 3.4.0 (2007-09-29)
 ------------------
 

Modified: zope.traversing/branches/3.4/src/zope/traversing/tests/ftesting.zcml
===================================================================
--- zope.traversing/branches/3.4/src/zope/traversing/tests/ftesting.zcml	2008-07-30 17:57:32 UTC (rev 89052)
+++ zope.traversing/branches/3.4/src/zope/traversing/tests/ftesting.zcml	2008-07-30 18:00:44 UTC (rev 89053)
@@ -20,7 +20,7 @@
   <include package="zope.app.securitypolicy" file="meta.zcml" />
 
   <securityPolicy
-    component="zope.app.securitypolicy.zopepolicy.ZopeSecurityPolicy" />
+    component="zope.securitypolicy.zopepolicy.ZopeSecurityPolicy" />
 
   <role id="zope.Anonymous" title="Everybody"
                  description="All users have this role implicitly" />



More information about the Checkins mailing list