| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2016-04-23 | Fix all the stinky linkie rot via `make linkcheck ↵ | Steve Piercy | |
| SPHINXBUILD=$VENV/bin/sphinx-build`, but don't bother with HISTORY.txt or whatsnew-xx | |||
| 2015-10-07 | - grammar, rewrapping | Steve Piercy | |
| 2015-10-06 | - grammar, rewrapping | Steve Piercy | |
| 2015-03-15 | Allow passing a custom redirect class for appending slashes | Donald Stufft | |
| 2015-02-17 | reword a small part to clarify what's happening with view_config | Michael Merickel | |
| 2014-12-10 | Revise URL Dispatch documentation to use config.scan() in Examples 1, 2, and 3 | Zack Marvel | |
| In response to #600. | |||
| 2014-02-10 | - Garden PR #1121 | Steve Piercy | |
| 2013-11-17 | Removed extra indentation from some examples (:linenos: should be indented ↵ | Antti Haapala | |
| with the same indentation as the rest of the code block) | |||
| 2013-09-08 | - Removed the ability to pass the following arguments to | Chris McDonough | |
| ``pyramid.config.Configurator.add_route``: `view``, ``view_context``. ``view_for``, ``view_permission``, ``view_renderer``, and ``view_attr``. Using these arguments had been deprecated since Pyramid 1.1. Instead of passing view-related arguments to ``add_route``, use a separate call to ``pyramid.config.Configurator.add_view`` to associate a view with a route using its ``route_name`` argument. Note that this impacts the ``pyramid.config.Configurator.add_static_view`` function too, because it delegates to ``add_route``. | |||
| 2013-08-20 | raise ValueError instead of generating just path when _app_url is provided ↵ | Chris McDonough | |
| to request.route_url and the route has an external pattern | |||
| 2013-08-19 | allow pregenerator and route_prefix with external routes | Michael Merickel | |
| 2013-08-17 | reference the static url route feature | Tom Lazar | |
| 2013-08-17 | typo | Tom Lazar | |
| 2013-08-17 | Document the external URL feature. | Fabian Neumann | |
| 2013-08-09 | "arent" to "aren't" | tisdall | |
| 2013-04-02 | fix #964 | Michael Merickel | |
| 2013-03-22 | remove unused ignore-next-block directive | Tshepang Lekhonkhobe | |
| 2013-03-21 | Resolve conflict. | Tres Seaver | |
| 2013-03-13 | consistency: use $VENV whenever virtualenv binaries are used | Tshepang Lekhonkhobe | |
| 2013-03-12 | Merge pull request #896 from tshepang/consistency | Michael Merickel | |
| consistency fixes | |||
| 2013-03-12 | Merge pull request #890 from tshepang/misc | Michael Merickel | |
| miscellaneous doc improvements | |||
| 2013-03-12 | Merge pull request #888 from tshepang/fixes | Michael Merickel | |
| miscellaneous doc fixes | |||
| 2013-03-09 | capitalize; add term role | Tshepang Lekhonkhobe | |
| 2013-03-06 | remove a distraction | Tshepang Lekhonkhobe | |
| 2013-03-06 | address issues raised by Tres Seaver at #884 | Tshepang Lekhonkhobe | |
| 2013-03-05 | fix grammar; shorten overlong sentence | Tshepang Lekhonkhobe | |
| 2013-03-05 | DRY | Tshepang Lekhonkhobe | |
| 2013-03-05 | DRY | Tshepang Lekhonkhobe | |
| 2013-03-05 | grammar fixes | Tshepang Lekhonkhobe | |
| 2013-01-29 | replace 'note' with the more correct 'versionadded' directive | Tshepang Lekhonkhobe | |
| 2013-01-18 | make example links clickable, for convenience | Tshepang Lekhonkhobe | |
| 2013-01-02 | eliminate other repeated words | Tshepang Lekhonkhobe | |
| 2012-12-22 | Typo pakage => package | Reinout van Rees | |
| 2012-05-23 | Fixed a few glitches in the "Using a Route Prefix to Compose Applications" ↵ | Fabian Büchler | |
| section of the docs/narr/urldispatch.rst docs. | |||
| 2012-04-27 | Update docs/narr/urldispatch.rst | VlAleVas | |
| 2012-02-26 | make latex render again | Chris McDonough | |
| 2012-02-22 | - New API: ``pyramid.config.Configurator.add_notfound_view``. This is a | Chris McDonough | |
| wrapper for ``pyramid.Config.configurator.add_view`` which provides easy append_slash support. It should be preferred over calling ``add_view`` directly with ``context=HTTPNotFound`` as was previously recommended. - New API: ``pyramid.view.notfound_view_config``. This is a decorator constructor like ``pyramid.view.view_config`` that calls ``pyramid.config.Configurator.add_notfound_view`` when scanned. It should be preferred over using ``pyramid.view.view_config`` with ``context=HTTPNotFound`` as was previously recommended. - The older deprecated ``set_notfound_view`` Configurator method is now an alias for the new ``add_notfound_view`` Configurator method. This has the following impact: the ``context`` sent to views with a ``(context, request)`` call signature registered via the deprecated ``add_notfound_view``/``set_notfound_view`` will now be the HTTPNotFound exception object instead of the actual resource context found. Use ``request.context`` to get the actual resource context. It's also recommended to disuse ``set_notfound_view`` in favor of ``add_notfound_view``, despite the aliasing. - The API documentation for ``pyramid.view.append_slash_notfound_view`` and ``pyramid.view.AppendSlashNotFoundViewFactory`` was removed. These names still exist and are still importable, but they are no longer APIs. Use ``pyramid.config.Configurator.add_notfound_view(append_slash=True)`` or ``pyramid.view.notfound_view_config(append_slash=True)`` to get the same behavior. - The ``set_forbidden_view`` method of the Configurator was removed from the documentation. It has been deprecated since Pyramid 1.1. - The AppendSlashNotFoundViewFactory used request.path to match routes. This was wrong because request.path contains the script name, and this would cause it to fail in circumstances where the script name was not empty. It should have used request.path_info, and now does. - Updated the "Registering a Not Found View" section of the "Hooks" chapter, replacing explanations of registering a view using ``add_view`` or ``view_config`` with ones using ``add_notfound_view`` or ``notfound_view_config``. - Updated the "Redirecting to Slash-Appended Routes" section of the "URL Dispatch" chapter, replacing explanations of registering a view using ``add_view`` or ``view_config`` with ones using ``add_notfound_view`` or ``notfound_view_config`` | |||
| 2012-02-07 | bug in url dispatch docs | Michael Merickel | |
| 2012-02-05 | fix extra paren | Chris McDonough | |
| 2012-01-05 | bring docs up to date with code | Chris McDonough | |
| 2012-01-05 | fix urldispatch matching and generation to cope with various inputs | Chris McDonough | |
| 2011-10-24 | garden | Michael Merickel | |
| 2011-10-12 | Edited docs/narr/urldispatch.rst via GitHub | Wayne Tong | |
| 2011-10-06 | remove all reference to the paster command-line utility | Chris McDonough | |
| 2011-09-23 | add documenteation for the __text__ attribute for a predicate | michr | |
| 2011-09-23 | fixed up all the warning dealing ..note and ..warn | michr | |
| added a hide toc for glossary to prevent warnings | |||
| 2011-09-12 | document replacement marker composition | Chris McDonough | |
| 2011-09-07 | more refs to root factory docs | Chris McDonough | |
| 2011-09-07 | add squishy whats-unique section to introduction | Chris McDonough | |
| 2011-09-05 | move unrelated request cleanup to webob.rest; reorder urldispatch chapter ↵ | Chris McDonough | |
| from most-important-concept-to-least | |||
