[Zope3-checkins] CVS: Zope3/doc/zcml - attribute_conventions.stx:1.3
R. David Murray
bitz@bitdance.com
Fri, 30 Aug 2002 15:00:57 -0400
Update of /cvs-repository/Zope3/doc/zcml
In directory cvs.zope.org:/tmp/cvs-serv6547
Modified Files:
attribute_conventions.stx
Log Message:
Add an explanation of what the composite factory syntax gets you.
http://collector.zope.org/Zope3-dev/9/.
=== Zope3/doc/zcml/attribute_conventions.stx 1.2 => 1.3 ===
--- Zope3/doc/zcml/attribute_conventions.stx:1.2 Mon Jun 10 19:27:36 2002
+++ Zope3/doc/zcml/attribute_conventions.stx Fri Aug 30 15:00:57 2002
@@ -32,6 +32,6 @@
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.
-
-
+ of dotted-names. If a factory attribute is given as "a b c"
+ (three chained factories), this results in a composite factory
+ of the form c(b(a(context))).