[Zope-Checkins] SVN: Products.Five/trunk/ forwardport bugfix: Add
<class> as alias to <content>
Philipp von Weitershausen
philikon at philikon.de
Fri Mar 31 11:25:43 EST 2006
Log message for revision 66270:
forwardport bugfix: Add <class> as alias to <content>
Changed:
U Products.Five/trunk/CHANGES.txt
U Products.Five/trunk/meta.zcml
-=-
Modified: Products.Five/trunk/CHANGES.txt
===================================================================
--- Products.Five/trunk/CHANGES.txt 2006-03-31 16:23:20 UTC (rev 66269)
+++ Products.Five/trunk/CHANGES.txt 2006-03-31 16:25:43 UTC (rev 66270)
@@ -8,6 +8,10 @@
Features
--------
+* Add python-packages-as-zope-products support which basically allows
+ for using any python package as a zope product without it having to
+ live in Products/
+
* Add zope.formlib support. Please see ``doc/formlib.txt`` for more
information.
@@ -23,9 +27,19 @@
NOTE: Anyone who copied the Five site.zcml to their
$INSTANCE_HOME/etc/ directory is going to need to update it.
+Five 1.3.4 (2006-03-31)
+=======================
+
+Bugfixes
+--------
+
+* Added the ``class`` ZCML directive as an alias to ``content``.
+
Five 1.3.3 (2006-03-26)
=======================
+This version is also included in Five 2.9.2
+
Bugfixes
--------
Modified: Products.Five/trunk/meta.zcml
===================================================================
--- Products.Five/trunk/meta.zcml 2006-03-31 16:23:20 UTC (rev 66269)
+++ Products.Five/trunk/meta.zcml 2006-03-31 16:25:43 UTC (rev 66270)
@@ -51,6 +51,29 @@
/>
<meta:complexDirective
+ name="class"
+ schema="zope.app.component.metadirectives.IClassDirective"
+ handler=".metaconfigure.ContentDirective"
+ >
+
+ <meta:subdirective
+ name="implements"
+ schema="zope.app.component.metadirectives.IImplementsSubdirective"
+ />
+
+ <meta:subdirective
+ name="require"
+ schema="zope.app.component.metadirectives.IRequireSubdirective"
+ />
+
+ <meta:subdirective
+ name="allow"
+ schema="zope.app.component.metadirectives.IAllowSubdirective"
+ />
+
+ </meta:complexDirective>
+
+ <meta:complexDirective
name="content"
schema="zope.app.component.metadirectives.IClassDirective"
handler=".metaconfigure.ContentDirective"
More information about the Zope-Checkins
mailing list