| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2010-12-19 | rearrange traversal and urldispatch chapters | Chris McDonough | |
| 2010-12-19 | fix urldispatch chapter | Chris McDonough | |
| 2010-12-19 | context finding -> resource location | Chris McDonough | |
| 2010-12-18 | model->resource; make docs render without warnings | Chris McDonough | |
| 2010-12-18 | model -> resource; resource -> asset | Chris McDonough | |
| 2010-12-16 | Features | Chris McDonough | |
| -------- - Added ``debug_routematch`` configuration setting that logs matched routes (including the matchdict and predicates). Documentation ------------- - Added "Debugging Route Matching" section to the urldispatch narrative documentation chapter. - Added reference to ``BFG_DEBUG_ROUTEMATCH`` envvar and ``debug_routematch`` config file setting to the Environment narrative docs chapter. | |||
| 2010-12-12 | fix merge conflicts | Casey Duncan | |
| 2010-12-09 | fix docs: pyramid.configuration -> pyramid.config | Chris McDonough | |
| 2010-12-02 | Merge https://github.com/Pylons/pyramid | Casey Duncan | |
| 2010-12-01 | fix bad info in urldispatch chapter: matchdict and matched_route will be None | Chris McDonough | |
| 2010-11-30 | Merge https://github.com/Pylons/pyramid | Casey Duncan | |
| 2010-11-28 | Normalized narrative doc, code with linenos while text+bash don't | Blaise Laflamme | |
| 2010-11-28 | Narrative doc cleanup | Blaise Laflamme | |
| 2010-11-27 | Merge https://github.com/Pylons/pyramid | Casey Duncan | |
| 2010-11-23 | fix quoting | Chris McDonough | |
| 2010-11-22 | Move however to contrasting sentence | Casey Duncan | |
| 2010-11-22 | Be consistent with the spelling of 'slash-appending not found view', Change ↵ | Casey Duncan | |
| paragraph about losing POST data on redirect to a warning | |||
| 2010-11-22 | reword paragraph explaining append_slash_notfound_view for clarity | Casey Duncan | |
| 2010-11-21 | commafy and dehyphenatei, add word 'documented' | Casey Duncan | |
| 2010-11-21 | fix typo | Casey Duncan | |
| 2010-11-21 | Break sentence in leiu of semicolon splice | Casey Duncan | |
| 2010-11-21 | fix typo | Casey Duncan | |
| 2010-11-21 | fix lingering old-style replacement marker syntax | Casey Duncan | |
| 2010-11-21 | clarify sentence about nonsensical replacement markers | Casey Duncan | |
| 2010-11-21 | fix lingering old-style replacement marker syntax | Casey Duncan | |
| 2010-11-21 | notate literal period in text for clarity | Casey Duncan | |
| 2010-11-21 | reword/simplify 'URL dispatch supplies a shortcut' paragraph | Casey Duncan | |
| 2010-11-19 | make previous version route example match current example | Casey Duncan | |
| 2010-11-19 | example of previous route marker should use old marker syntax (:, not {}) | Casey Duncan | |
| 2010-11-18 | There is no pattern_regexes. | Ben Bangert | |
| 2010-11-18 | More colon references. | Ben Bangert | |
| 2010-11-18 | Ensure the version changed info is visible. | Ben Bangert | |
| 2010-11-18 | - URL Dispatch now uses the form ``{marker}`` to denote a replace marker in | Ben Bangert | |
| the route pattern instead of ``:marker``. The old syntax is still backwards compatible and accepted. The new format allows a regular expression for that marker location to be used instead of the default ``[^/]+``, for example ``{marker:\d+}`` is now valid to require the marker to be digits. | |||
| 2010-11-18 | - URL Dispatch now allows for replacement markers to be located anywhere | Ben Bangert | |
| in the pattern, instead of immediately following a ``/``. - Added ``marker_pattern`` option to ``add_route`` to supply a dict of regular expressions to be used for markers in the pattern instead of the default regular expression that matched everything except a ``/``. | |||
| 2010-11-10 | - New API methods for ``pyramid.request.Request``: ``model_url`` and | Chris McDonough | |
| ``route_url``. These are simple passthroughs for their respective functions in ``pyramid.url``. - Documented the ``matchdict`` and ``matched_route`` attributes of the request object in the Request API documentation. | |||
| 2010-11-09 | remove unnecessary wording | Chris McDonough | |
| 2010-11-09 | - All references to Pyramid-the-application were changed from :mod:`pyramid` | Chris McDonough | |
| to :app:`Pyramid`. A custom role setting was added to ``docs/conf.py`` to allow for this. (internal) | |||
| 2010-11-04 | fix urldispatch code blocks (syntax and rendering) | Chris McDonough | |
| 2010-11-04 | repoze->pyramid | Chris McDonough | |
| 2010-11-04 | fix a typo | Chris McDonough | |
| 2010-11-04 | typo | Chris McDonough | |
| 2010-11-03 | de-zcml-ify various chapters and move ZCML to the declarative chapter | Chris McDonough | |
| 2010-11-02 | - Remove references to 'WebOb' Response and just call it 'Response', and note | Chris McDonough | |
| that it is imported from pyramid. API docs can mention its inheritance from webob (aka "Provide a webob.Response class facade for forward compat"). | |||
| 2010-10-25 | convert narrative docs to Pyramid | Chris McDonough | |
| 2010-10-14 | update | Chris McDonough | |
| 2010-09-14 | prep for 1.3a13 | Chris McDonough | |
| 2010-09-08 | Use a class role for linkage. | Chris McDonough | |
| 2010-09-08 | - The ``repoze.bfg.interfaces`` API documentation page is now rendered | Chris McDonough | |
| via ``repoze.sphinx.autointerface``. - The URL Dispatch narrative chapter now refers to the ``interfaces`` chapter to explain the API of an ``IRoute`` object. - ``tests_require`` now includes ``repoze.sphinx.autointerface`` as a dependency. | |||
| 2010-09-08 | - The ``repoze.bfg.urldispatch.Route`` constructor (not an API) now | Chris McDonough | |
| accepts a different ordering of arguments. Previously it was ``(pattern, name, factory=None, predicates=())``. It is now ``(name, pattern, factory=None, predicates=())``. This is in support of consistency with ``configurator.add_route``. - The ``repoze.bfg.urldispatch.RoutesMapper.connect`` method (not an API) now accepts a different ordering of arguments. Previously it was ``(pattern, name, factory=None, predicates=())``. It is now ``(name, pattern, factory=None, predicates=())``. This is in support of consistency with ``configurator.add_route``. - The ``repoze.bfg.urldispatch.RoutesMapper`` object now has a ``get_route`` method which returns a single Route object or ``None``. - A new interface ``repoze.bfg.interfaces.IRoute`` was added. The ``repoze.bfg.urldispatch.Route`` object implements this interface. - The canonical attribute for accessing the routing pattern from a route object is now ``pattern`` rather than ``path``. - The argument to ``repoze.bfg.configuration.Configurator.add_route`` which was previously called ``path`` is now called ``pattern`` for better explicability. For backwards compatibility purposes, passing a keyword argument named ``path`` to ``add_route`` will still work indefinitely. - The ``path`` attribute to the ZCML ``route`` directive is now named ``pattern`` for better explicability. The older ``path`` attribute will continue to work indefinitely. - All narrative, API, and tutorial docs which referred to a route pattern as a ``path`` have now been updated to refer to them as a ``pattern``. - The routesalchemy template has been updated to use ``pattern`` in its route declarations rather than ``path``. | |||
| 2010-09-06 | renderings | Chris McDonough | |
