[Checkins] SVN: megrok.resourcelibrary/trunk/ Fix a silly bug causing all of this not to work outside of the test..

Martijn Faassen faassen at infrae.com
Wed Aug 6 14:36:30 EDT 2008


Log message for revision 89464:
  Fix a silly bug causing all of this not to work outside of the test..
  

Changed:
  U   megrok.resourcelibrary/trunk/CHANGES.txt
  U   megrok.resourcelibrary/trunk/setup.py
  A   megrok.resourcelibrary/trunk/src/megrok/resourcelibrary/meta.zcml

-=-
Modified: megrok.resourcelibrary/trunk/CHANGES.txt
===================================================================
--- megrok.resourcelibrary/trunk/CHANGES.txt	2008-08-06 18:09:48 UTC (rev 89463)
+++ megrok.resourcelibrary/trunk/CHANGES.txt	2008-08-06 18:36:30 UTC (rev 89464)
@@ -1,11 +1,13 @@
 Changes
 =======
 
-0.10 (unreleased)
------------------
+0.9.1 (2008-08-06)
+------------------
 
-* ...
+* Turn off zip-safeness.
 
+* Actually add a meta.zcml that loads up the grokker!
+
 0.9 (2008-08-06)
 ----------------
 

Modified: megrok.resourcelibrary/trunk/setup.py
===================================================================
--- megrok.resourcelibrary/trunk/setup.py	2008-08-06 18:09:48 UTC (rev 89463)
+++ megrok.resourcelibrary/trunk/setup.py	2008-08-06 18:36:30 UTC (rev 89464)
@@ -11,7 +11,7 @@
     )
 
 setup(name='megrok.resourcelibrary',
-      version='0.10dev',
+      version='0.9.1dev',
       description="Static resource library support for Grok.",
       long_description=long_description,
       # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
@@ -28,7 +28,7 @@
       package_dir = {'': 'src'},
       namespace_packages=['megrok'],
       include_package_data=True,
-      zip_safe=True,
+      zip_safe=False,
       install_requires=[
           'setuptools',
           'grok >= 0.13',

Added: megrok.resourcelibrary/trunk/src/megrok/resourcelibrary/meta.zcml
===================================================================
--- megrok.resourcelibrary/trunk/src/megrok/resourcelibrary/meta.zcml	                        (rev 0)
+++ megrok.resourcelibrary/trunk/src/megrok/resourcelibrary/meta.zcml	2008-08-06 18:36:30 UTC (rev 89464)
@@ -0,0 +1,9 @@
+<configure
+    xmlns="http://namespaces.zope.org/zope"
+    xmlns:meta="http://namespaces.zope.org/meta"
+    xmlns:grok="http://namespaces.zope.org/grok">
+
+  <!-- Load the grokkers -->
+  <grok:grok package=".meta" />
+
+</configure>



More information about the Checkins mailing list