[Zope-Checkins] CVS: Zope3/doc/zcml/namespaces.zope.org/zope - include.stx:1.2

Steve Alexander steve@cat-box.net
Tue, 11 Jun 2002 08:27:03 -0400


Update of /cvs-repository/Zope3/doc/zcml/namespaces.zope.org/zope
In directory cvs.zope.org:/tmp/cvs-serv17901/zope

Modified Files:
	include.stx 
Log Message:
added a few more details and some examples for the include directive


=== Zope3/doc/zcml/namespaces.zope.org/zope/include.stx 1.1 => 1.2 ===
+
+Attributes
+
+  * package, optional, a dotted name of the Python Package to include from
+
+  * file, the filename of the zcml file to include
+  
+Example
+
+  Including the Contact zcml file from the ZopeProducts.Contact package::
+  
+    <include package=".Contact" file="Contact.zcml" />
+    
+  Another spelling of the same thing::
+  
+    <include package="ZopeProducts.Contact" file="Contact.zcml" />
+    
+