[Checkins] SVN: grok/branches/philikon-eggs2/ Eggify grokwiki (make it depend on grok, load grok's ZCML).

Philipp von Weitershausen philikon at philikon.de
Thu Jul 12 05:49:29 EDT 2007


Log message for revision 77722:
  Eggify grokwiki (make it depend on grok, load grok's ZCML).
  

Changed:
  U   grok/branches/philikon-eggs2/buildout.cfg
  U   grok/branches/philikon-eggs2/grokwiki/setup.py
  U   grok/branches/philikon-eggs2/grokwiki/src/grokwiki/configure.zcml

-=-
Modified: grok/branches/philikon-eggs2/buildout.cfg
===================================================================
--- grok/branches/philikon-eggs2/buildout.cfg	2007-07-12 09:38:33 UTC (rev 77721)
+++ grok/branches/philikon-eggs2/buildout.cfg	2007-07-12 09:49:28 UTC (rev 77722)
@@ -1,18 +1,16 @@
 [buildout]
 develop = . grokwiki ldapaddressbook
-parts = app instance data test
+parts = grokwiki instance data test
 find-links = http://download.zope.org/distribution/
 
 [zope3]
 # this dead chicken is needed by some other recipe(s)
 location =
 
-[app]
+[grokwiki]
 recipe = zc.zope3recipes:app
-eggs = grok
-       grokwiki
-site.zcml = <include package="grok" />
-            <include package="grokwiki" />
+eggs = grokwiki
+site.zcml = <include package="grokwiki" />
             <include package="zope.app.twisted" />
 
             <securityPolicy 
@@ -51,7 +49,7 @@
 
 [instance]
 recipe = zc.zope3recipes:instance
-application = app
+application = grokwiki
 zope.conf = ${data:zconfig}
 
 [test]

Modified: grok/branches/philikon-eggs2/grokwiki/setup.py
===================================================================
--- grok/branches/philikon-eggs2/grokwiki/setup.py	2007-07-12 09:38:33 UTC (rev 77721)
+++ grok/branches/philikon-eggs2/grokwiki/setup.py	2007-07-12 09:49:28 UTC (rev 77722)
@@ -16,5 +16,6 @@
     license='ZPL',
 
     install_requires=['setuptools',
-                     ],
+                      'grok',
+                      ],
 )

Modified: grok/branches/philikon-eggs2/grokwiki/src/grokwiki/configure.zcml
===================================================================
--- grok/branches/philikon-eggs2/grokwiki/src/grokwiki/configure.zcml	2007-07-12 09:38:33 UTC (rev 77721)
+++ grok/branches/philikon-eggs2/grokwiki/src/grokwiki/configure.zcml	2007-07-12 09:49:28 UTC (rev 77722)
@@ -1 +1,5 @@
-<grok package="." xmlns="http://namespaces.zope.org/grok" />
\ No newline at end of file
+<configure xmlns="http://namespaces.zope.org/zope"
+           xmlns:grok="http://namespaces.zope.org/grok">
+  <include package="grok" />
+  <grok:grok package="." />
+</configure>
\ No newline at end of file



More information about the Checkins mailing list