Tres Seaver
2009-07-20 14bfc6c150233020eb27d67c1d1cdb8699d9b22e
Fixed documentation bug showing invalid test for values from the ``matchdict``.

o They are stored as attributes of the ``Article``, rather than subitems.

2 files modified
6 ■■■■ changed files
CHANGES.txt 4 ●●●● patch | view | raw | blame | history
docs/narr/urldispatch.rst 2 ●●● patch | view | raw | blame | history
CHANGES.txt
@@ -1,6 +1,10 @@
Next release
============
- Fixed documentation bug showing invalid test for values from the
  ``matchdict``:  they are stored as attributes of the ``Article``, rather
  than subitems.
- Fixed documentation bug showing wrong environment key for the ``matchdict``
  produced by the matching route.
docs/narr/urldispatch.rst
@@ -354,7 +354,7 @@
           self.__dict__.update(environ['bfg.routes.matchdict'])
       def is_root(self):
           return self['article'] == 'root'
           return self.article == 'root'
The ``.views`` module referred to above might look like so: