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

Steve Alexander steve@cat-box.net
Sun, 9 Jun 2002 16:34:27 -0400


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

Modified Files:
      Tag: Zope-3x-branch
	implements.stx 
Log Message:
more zcml docs.


=== Zope3/doc/zcml/namespaces.zope.org/zope/implements.stx 1.1.2.1 => 1.1.2.2 ===
+
+See lib/python/Zope/App/ComponentArchitecture/component-meta.zcml
+
+Overview
+
+  The implements subdirective lets you assert that a component
+  implements a given interface.
+  
+Attributes
+
+  * interface, the interface that is implemented
+  
+Example::
+
+  <content class=".Contact.">
+    <implements interface=".IContact." />
+  </content>
+
+
+