summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2010-10-25 22:30:23 -0400
committerChris McDonough <chrism@plope.com>2010-10-25 22:30:23 -0400
commit17a325604b64fb9c4668ac587fbfe48e1b49ef66 (patch)
tree4f630dd102840f45554008bdefbea5b0c4861c72
parent61efe0bf678bc8dc463487943a6fefade855ca1e (diff)
downloadpyramid-17a325604b64fb9c4668ac587fbfe48e1b49ef66.tar.gz
pyramid-17a325604b64fb9c4668ac587fbfe48e1b49ef66.tar.bz2
pyramid-17a325604b64fb9c4668ac587fbfe48e1b49ef66.zip
wording
-rw-r--r--docs/tutorials/bfg/index.rst10
1 files changed, 7 insertions, 3 deletions
diff --git a/docs/tutorials/bfg/index.rst b/docs/tutorials/bfg/index.rst
index d79115b90..5eb8be1b0 100644
--- a/docs/tutorials/bfg/index.rst
+++ b/docs/tutorials/bfg/index.rst
@@ -96,10 +96,14 @@ Here's how to convert a :mod:`repoze.bfg` application to a
converted recursively, except Python files which live in
directories which start with a ``.`` (dot).
- - ZCML attributes which name ``repoze.bfg``
+ - ZCML files which contain directives that have attributes which
+ name ``repoze.bfg``
(e.g. ``context="repoze.bfg.exceptions.NotFound"``) will be
converted to :mod:`pyramid` compatible ZCML attributes
- (e.g. ``context="pyramid.exceptions.NotFound``).
+ (e.g. ``context="pyramid.exceptions.NotFound``). Every ZCML file
+ beneath the top-level path (files ending with ``.zcml``) will be
+ visited and converted recursively, except ZCML files which live
+ in directories which start with a ``.`` (dot).
#. Edit the ``setup.py`` file of the application you've just converted
(if you've been using the example paths, this will be
@@ -142,6 +146,6 @@ Here's how to convert a :mod:`repoze.bfg` application to a
#. Fix any test failures.
-#. Celebrate.
+#. Start using the converted version of your application. Celebrate.