summaryrefslogtreecommitdiff
path: root/docs/zcml/utility.rst
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2010-01-17 17:55:39 +0000
committerChris McDonough <chrism@agendaless.com>2010-01-17 17:55:39 +0000
commitbd73fc6cc17544d14b029c528cd70da73dd0a364 (patch)
tree29cb63aabf483a6049f5481c680a94cf9d1077af /docs/zcml/utility.rst
parent04bee54e9b793790e8e612ccaa50547f1e440e9f (diff)
downloadpyramid-bd73fc6cc17544d14b029c528cd70da73dd0a364.tar.gz
pyramid-bd73fc6cc17544d14b029c528cd70da73dd0a364.tar.bz2
pyramid-bd73fc6cc17544d14b029c528cd70da73dd0a364.zip
Using a single chapter for the API docs and a single chapter for the ZCML directives made it hard to read.
Diffstat (limited to 'docs/zcml/utility.rst')
-rw-r--r--docs/zcml/utility.rst50
1 files changed, 50 insertions, 0 deletions
diff --git a/docs/zcml/utility.rst b/docs/zcml/utility.rst
new file mode 100644
index 000000000..88198eaa0
--- /dev/null
+++ b/docs/zcml/utility.rst
@@ -0,0 +1,50 @@
+.. _utility_directive:
+
+``utility``
+-----------
+
+Register a :term:`Zope Component Architecture` "utility".
+
+Attributes
+~~~~~~~~~~
+
+``component``
+
+ The utility component (cannot be specified if ``factory`` is
+ specified).
+
+``factory``
+
+ A factory that creates a component (cannot be specified if
+ ``component`` is specified).
+
+``provides``
+
+ The :term:`interface` that an utility instance resulting from a
+ lookup will provide.
+
+``name``
+
+ The utility name.
+
+Example
+~~~~~~~
+
+.. code-block:: xml
+ :linenos:
+
+ <utility
+ provides=".interfaces.IMyUtility"
+ component=".utilities.MyUtility"
+ />
+
+Alternatives
+~~~~~~~~~~~~
+
+Use the ``registerUtility`` method of the ``registry`` attribute of a
+:term:`Configurator` instance during initial application setup.
+
+See Also
+~~~~~~~~
+
+None.