[Checkins] SVN: five.grok/branches/sylvain-zope213/ Fix configure.zcml for zope.contentprovider ZCML who is broken under Zope 2.13.

Sylvain Viollon sylvain at infrae.com
Thu Dec 2 05:05:39 EST 2010


Log message for revision 118664:
  Fix configure.zcml  for zope.contentprovider ZCML who is broken under Zope 2.13.
  

Changed:
  U   five.grok/branches/sylvain-zope213/README.txt
  U   five.grok/branches/sylvain-zope213/buildout.cfg
  U   five.grok/branches/sylvain-zope213/src/five/grok/configure.zcml

-=-
Modified: five.grok/branches/sylvain-zope213/README.txt
===================================================================
--- five.grok/branches/sylvain-zope213/README.txt	2010-12-01 16:45:55 UTC (rev 118663)
+++ five.grok/branches/sylvain-zope213/README.txt	2010-12-02 10:05:38 UTC (rev 118664)
@@ -61,17 +61,18 @@
 your buildout::
 
   grokcore.annotation = 1.2
-  grokcore.component = 1.8
+  grokcore.component = 1.9
   grokcore.formlib = 1.5
   grokcore.security = 1.4
-  grokcore.site = 1.2
-  grokcore.view = 1.12.2
-  grokcore.viewlet = 1.4.1
-  five.localsitemanager = 2.0.3
+  grokcore.site = 1.3
+  grokcore.view = 1.13.5
+  grokcore.viewlet = 1.5
+  five.localsitemanager = 2.0.4
+  five.formlib = 1.0.3
   martian = 0.11.2
 
-Zope 2.12 is required. If you wish to use a previous version of Zope
-2, look at the version 1.0 of five.grok.
+Zope 2.13 is required. If you wish to use a previous version of Zope
+2, look at the version 1.0 or 1.1 of five.grok.
 
 
 More information

Modified: five.grok/branches/sylvain-zope213/buildout.cfg
===================================================================
--- five.grok/branches/sylvain-zope213/buildout.cfg	2010-12-01 16:45:55 UTC (rev 118663)
+++ five.grok/branches/sylvain-zope213/buildout.cfg	2010-12-02 10:05:38 UTC (rev 118664)
@@ -6,7 +6,7 @@
     code
 extensions = buildout.dumppickedversions
 develop = .
-extends = http://download.zope.org/Zope2/index/2.13.0c1/versions.cfg
+extends = http://download.zope.org/Zope2/index/2.13.0/versions.cfg
 versions = versions
 
 [versions]
@@ -19,8 +19,9 @@
 grokcore.view = 1.13.5
 grokcore.viewlet = 1.5
 five.localsitemanager = 2.0.4
+five.formlib = 1.0.3
 martian = 0.11.2
-Zope2 = 2.13.0c1
+Zope2 = 2.13.0
 
 # This is needed in order to set up the mkzopeinstance script
 [zope2]

Modified: five.grok/branches/sylvain-zope213/src/five/grok/configure.zcml
===================================================================
--- five.grok/branches/sylvain-zope213/src/five/grok/configure.zcml	2010-12-01 16:45:55 UTC (rev 118663)
+++ five.grok/branches/sylvain-zope213/src/five/grok/configure.zcml	2010-12-02 10:05:38 UTC (rev 118664)
@@ -5,6 +5,9 @@
     xmlns:grok="http://namespaces.zope.org/grok"
     i18n_domain="five.grok">
 
+  <!-- ZCML of this package fails in Zope 2.13 for strange reason -->
+  <exclude package="zope.contentprovider" />
+
   <include package="Products.Five" />
   <include package="five.grok" file="meta.zcml" />
 
@@ -12,8 +15,7 @@
   <include package="five.localsitemanager" />
   <include package="grokcore.annotation" />
   <include package="grokcore.view" />
-  <!-- zope.contentprovider doesn't work by default -->
-  <!--   <include package="grokcore.viewlet" /> -->
+  <include package="grokcore.viewlet" />
 
   <grok:grok package=".subscribers" />
   <grok:grok package=".absoluteurl" />



More information about the checkins mailing list