In case some of you noticed my sudden interest in Zope 3.4 after a long
period of silent indifference, I'm porting a large-ish app from 3.2 to
3.4.

At the moment is it simpler for me to use the monolithic Zope 3.4
subversion branch with all those svn:externals.  This is why I'm doing
various cleanups around it.  Today I was irritated by deprecation
warnings and fixed them all, but haven't had the time to commit them.

The commits are a bit more involved these days:

  - for each egg (assuming none of them have C modules):
    - check out from svn
    - apply patch
    - run tests
    - tag a release
    - update setup.py (twice)
    - upload to pypi
  - update the KGS version list in zope.release
  - upload it to downloads.zope.org
  - update the 3.4 tree

At least we have documentation:

  - 
http://svn.zope.org/*checkout*/Sandbox/philikon/foundation/releasing-software.txt
  - http://svn.zope.org/*checkout*/zope.release/branches/3.4/README.txt

It's time to go home for me today, so I'm posting the uncommitted diff
here, for two reasons:

  - Tomorrow I'll see the diff and a list of actions, so I won't forget
    what I was doing and where exactly I stopped

  - Maybe someone else will take a look at the diff and update a few of
    the affected packages:

      zope.app.applicationcontrol
      zope.app.cache
      zope.app.pagetemplate
      zope.app.pythonpage
      zope.app.wsgi
      zope.traversing

Marius Gedminas
-- 
main(k){float i,j,r,x,y=-16;while(puts(""),y++<15)for(x
=0;x++<84;putchar(" .:-;!/>)|&IH%*#"[k&15]))for(i=k=r=0;
j=r*r-i*i-2+x/25,i=2*r*i+y/10,j*j+i*i<11&&k++<111;r=j);}
/* Mandelbrot in ASCII. */
Index: src/zope/app/applicationcontrol/ftesting.zcml
===================================================================
--- src/zope/app/applicationcontrol/ftesting.zcml       (revision 88973)
+++ src/zope/app/applicationcontrol/ftesting.zcml       (working copy)
@@ -15,7 +15,7 @@
   <include package="zope.app.securitypolicy" />
 
   <securityPolicy
-    component="zope.app.securitypolicy.zopepolicy.ZopeSecurityPolicy" />
+    component="zope.securitypolicy.zopepolicy.ZopeSecurityPolicy" />
 
   <role id="zope.Manager" title="Site Manager" />
 
Index: src/zope/app/cache/browser/cacheable.py
===================================================================
--- src/zope/app/cache/browser/cacheable.py     (revision 88973)
+++ src/zope/app/cache/browser/cacheable.py     (working copy)
@@ -23,7 +23,7 @@
 
 from zope.app.cache.caching import getCacheForObject, getLocationForCache
 from zope.app.form.utility import setUpEditWidgets
-from zope.app.i18n import ZopeMessageFactory as _
+from zope.i18nmessageid import ZopeMessageFactory as _
 from zope.app.cache.interfaces import ICacheable
 from zope.app.form.interfaces import WidgetInputError
 from zope.app.pagetemplate.viewpagetemplatefile import ViewPageTemplateFile
Index: src/zope/app/pagetemplate/ftesting.zcml
===================================================================
--- src/zope/app/pagetemplate/ftesting.zcml     (revision 88973)
+++ src/zope/app/pagetemplate/ftesting.zcml     (working copy)
@@ -15,7 +15,7 @@
   <include package="zope.app.securitypolicy" />
 
   <securityPolicy
-    component="zope.app.securitypolicy.zopepolicy.ZopeSecurityPolicy" />
+    component="zope.securitypolicy.zopepolicy.ZopeSecurityPolicy" />
 
   <role id="zope.Manager" title="Site Manager" />
 
Index: src/zope/app/pythonpage/browser.py
===================================================================
--- src/zope/app/pythonpage/browser.py  (revision 88973)
+++ src/zope/app/pythonpage/browser.py  (working copy)
@@ -16,7 +16,7 @@
 $Id$
 """
 from zope.app.form.browser.editview import EditView
-from zope.app.i18n import ZopeMessageFactory as _
+from zope.i18nmessageid import ZopeMessageFactory as _
 
 class PythonPageEval(object):
     """Evaluate the Python Page."""
Index: src/zope/app/wsgi/ftesting.zcml
===================================================================
--- src/zope/app/wsgi/ftesting.zcml     (revision 88973)
+++ src/zope/app/wsgi/ftesting.zcml     (working copy)
@@ -13,7 +13,7 @@
   <include package="zope.app.securitypolicy" />
 
   <securityPolicy
-    component="zope.app.securitypolicy.zopepolicy.ZopeSecurityPolicy" />
+    component="zope.securitypolicy.zopepolicy.ZopeSecurityPolicy" />
 
   <role id="zope.Manager" title="Site Manager" />
 
Index: src/zope/traversing/tests/ftesting.zcml
===================================================================
--- src/zope/traversing/tests/ftesting.zcml     (revision 88973)
+++ src/zope/traversing/tests/ftesting.zcml     (working copy)
@@ -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" />

Attachment: signature.asc
Description: Digital signature

_______________________________________________
Zope-Dev maillist  -  Zope-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope )

Reply via email to