[Zope-Checkins] CVS: Zope3/doc/zcml - attribute_conventions.stx:1.2

Jim Fulton jim@zope.com
Mon, 10 Jun 2002 19:28:36 -0400


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

Added Files:
	attribute_conventions.stx 
Log Message:
Merged Zope-3x-branch into newly forked Zope3 CVS Tree.


=== Zope3/doc/zcml/attribute_conventions.stx 1.1 => 1.2 ===
+
+  Dotted name
+  
+    XXX: explain resolution of ".Foo.Bar." and ".Foo.Bar+"
+    
+
+The attributes used in zcml usually follow this convention
+
+  component
+  
+    A dotted name that resolves to an object
+    
+  class
+  
+    A dotted name that resolves to a class
+    
+  permission
+  
+    The id of a permission
+    
+  principal
+  
+    The id of a principal
+    
+  role
+  
+    The id of a role
+    
+  factory
+  
+    A dotted name that resolves to a callable that acts as a factory.
+    A factory can also be made of several callables chained together.
+    In this case, the factory attribute is a whitespace separated list
+    of dotted-names.
+    
+