Chris McDonough
2010-12-16 a66a131abd893bb9e8ffd8a484f9c17ddfca5db7
- Fix reference to ``repoze.bfg.traversalwrapper`` in "Models" chapter (point
at ``pyramid_traversalwrapper`` instead).
3 files modified
18 ■■■■■ changed files
CHANGES.txt 3 ●●●●● patch | view | raw | blame | history
docs/narr/models.rst 13 ●●●● patch | view | raw | blame | history
docs/tutorials/bfg/index.rst 2 ●●●●● patch | view | raw | blame | history
CHANGES.txt
@@ -25,6 +25,9 @@
- Updated ZODB+Traversal tutorial setup.py of all steps to match what's
  generated by ``pyramid_zodb``.
- Fix reference to ``repoze.bfg.traversalwrapper`` in "Models" chapter (point
  at ``pyramid_traversalwrapper`` instead).
1.0a5 (2010-12-14)
==================
docs/narr/models.rst
@@ -280,18 +280,17 @@
   to every path and URL generated (as opposed to a single leading
   slash or empty tuple element).
.. sidebar::  Using :mod:`repoze.bfg.traversalwrapper`
.. sidebar::  Using :mod:`pyramid_traversalwrapper`
  If you'd rather not manage the ``__name__`` and ``__parent__``
  attributes of your models "by hand", an add-on package named
  :mod:`repoze.bfg.traversalwrapper` can help.
  :mod:`pyramid_traversalwrapper` can help.
  In order to use this helper feature, you must first install the
  :mod:`repoze.bfg.traversalwrapper` package (available via `SVN
  <http://svn.repoze.org/repoze.bfg.traversalwrapper>`_), then
  register its ``ModelGraphTraverser`` as the traversal policy, rather
  than the default :app:`Pyramid` traverser. The package contains
  instructions for doing so.
  :mod:`pyramid_traversalwrapper` package (available via PyPI), then register
  its ``ModelGraphTraverser`` as the traversal policy, rather than the
  default :app:`Pyramid` traverser. The package contains instructions for
  doing so.
  Once :app:`Pyramid` is configured with this feature, you will no
  longer need to manage the ``__parent__`` and ``__name__`` attributes
docs/tutorials/bfg/index.rst
@@ -186,6 +186,8 @@
#. Fix any test failures.
#. Fix any code which generates deprecation warnings.
#. Start using the converted version of your application.  Celebrate.