| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2010-01-19 | Spellcheck. | Chris McDonough | |
| 2010-01-18 | Prep for b1 | Chris McDonough | |
| Merge a bunch of paper-based docs fixes Configure logging during bfgshell. | |||
| 2010-01-17 | Final review layout. | Chris McDonough | |
| 2010-01-17 | Checklist. | Chris McDonough | |
| 2010-01-17 | More pass overhaul based on making contextfinding explicit within documentation. | Chris McDonough | |
| 2010-01-16 | Stray text. | Chris McDonough | |
| 2010-01-16 | Massive overhaul to deal with the reality that we don't map URLs directly to ↵ | Chris McDonough | |
| code. | |||
| 2010-01-11 | Merge of andrew-docs branch. | Chris McDonough | |
| 2010-01-03 | Overlong lines. | Chris McDonough | |
| 2009-12-30 | Bugs detected by Ricardo Mendes. | Chris McDonough | |
| 2009-12-27 | - Added manual index entries to generated index. | Chris McDonough | |
| 2009-12-27 | Rendering cleanups. | Chris McDonough | |
| 2009-12-26 | - Created new top-level documentation section: "ZCML Directives". | Chris McDonough | |
| This section contains detailed ZCML directive information, some of which was removed from various narrative chapters. | |||
| 2009-12-25 | Fix syntax errors found via manuel, and add manuel-style markers to prevent | Chris McDonough | |
| untestable code blocks from being tested. | |||
| 2009-12-24 | Imperative and roles. | Chris McDonough | |
| 2009-12-19 | More docs. | Chris McDonough | |
| 2009-12-09 | Excise make_app from docs. | Chris McDonough | |
| 2009-11-28 | Fix. | Chris McDonough | |
| 2009-11-14 | Spellcheck. | Chris McDonough | |
| 2009-11-02 | - "What's New in ``repoze.bfg`` 1.1" document added to narrative | Chris McDonough | |
| documentation. - Minor typo fixes. | |||
| 2009-11-01 | Leave some confusing and near-useless params undocumented. | Chris McDonough | |
| 2009-11-01 | - The ZCML ``route`` directive's attributes ``xhr``, | Chris McDonough | |
| ``request_method``, ``path_info``, ``request_param``, ``header`` and ``accept`` are now *route* predicates rather than *view* predicates. If one or more of these predicates is specified in the route configuration, all of the predicates must return true for the route to match a request. If one or more of the route predicates associated with a route returns ``False`` when checked during a request, the route match fails, and the next match in the routelist is tried. This differs from the previous behavior, where no route predicates existed and all predicates were considered view predicates, because in that scenario, the next route was not tried. | |||
| 2009-10-30 | - The ``__call__`` of a plugin "traverser" implementation (registered | Chris McDonough | |
| as an adapter for ``ITraverser`` or ``ITraverserFactory``) will now receive a *request* as the single argument to its ``__call__`` method. In previous versions it was passed a WSGI ``environ`` object. The request object passed to the factory implements dictionary-like methods in such a way that existing traverser code which expects to be passed an environ will continue to work. - Fix docs. | |||
| 2009-10-14 | - Add ``xhr``, ``accept``, and ``header`` view configuration | Chris McDonough | |
| predicates to ZCML view declaration, ZCML route declaration, and ``bfg_view`` decorator. See the ``Views`` narrative documentation chapter for more information about these predicates. | |||
| 2009-09-30 | - Describe "request-only" view calling conventions inside the | Chris McDonough | |
| urldispatch narrative chapter, where it's most helpful. | |||
| 2009-09-30 | Note. | Chris McDonough | |
| 2009-09-30 | Fix. | Chris McDonough | |
| 2009-09-30 | Add narrative docs about the append_slash_notfound_view. | Chris McDonough | |
| 2009-09-16 | - Give the ``route`` ZCML directive the ``view_attr`` and | Chris McDonough | |
| ``view_renderer`` parameters (bring up to speed with 1.1a3 features). These can also be spelled as ``attr`` and ``renderer``. | |||
| 2009-09-06 | Merge multiview2 branch to HEAD. | Chris McDonough | |
| 2009-07-20 | Fixed documentation bug showing invalid test for values from the ``matchdict``. | Tres Seaver | |
| o They are stored as attributes of the ``Article``, rather than subitems. | |||
| 2009-07-20 | Fixed documentation bug showing wrong environment key for the ``matchdict`` | Tres Seaver | |
| produced by the matching route. Thanks to leopay for the catch. | |||
| 2009-07-05 | Spellcheck. | Chris McDonough | |
| 2009-07-03 | General editing walkthrough. | Chris McDonough | |
| 2009-06-26 | Wrong. | Chris McDonough | |
| 2009-06-26 | Typo. | Chris McDonough | |
| 2009-06-26 | Rendering. | Chris McDonough | |
| 2009-06-26 | - Cause ``:segment`` matches in route paths to put a Unicode-decoded | Chris McDonough | |
| and URL-dequoted value in the matchdict for the value matched. Previously a non-decoded non-URL-dequoted string was placed in the matchdict as the value. - Cause ``*remainder`` matches in route paths to put a *tuple* in the matchdict dictionary in order to be able to present Unicode-decoded and URL-dequoted values for the traversal path. Previously a non-decoded non-URL-dequoted string was placed in the matchdict as the value. | |||
| 2009-06-24 | - Add information to the URL Dispatch narrative documentation about | Chris McDonough | |
| path pattern matching syntax. | |||
| 2009-06-24 | - ``repoze.bfg`` no longer relies on the Routes package to interpret | Chris McDonough | |
| URL paths. | |||
| 2009-06-24 | Change the implementation and the signature for ``route_url``. | Chris McDonough | |
| 2009-06-24 | - Added the ``repoze.bfg.url.route_url`` API. This is meant to | Chris McDonough | |
| "front" for the Routes ``url_for`` API. See the URL Dispatch narrative chapter and the "repoze.bfg.url" module API documentation for more information. | |||
| 2009-06-22 | - Add a ``view_for`` attribute to the ``route`` ZCML directive. This | Chris McDonough | |
| attribute should refer to an interface or a class (ala the ``for`` attribute of the ``view`` ZCML directive). | |||
| 2009-06-11 | Merge unifyroutesandtraversal branch into trunk | Chris McDonough | |
| 2009-06-03 | Subclass factories from dict in examples. | Chris McDonough | |
| 2009-06-01 | Add headers. | Chris McDonough | |
| 2009-05-31 | - The ``route`` ZCML directive now accepts ``request_type`` as an | Chris McDonough | |
| alias for its ``condition_method`` argument for symmetry with the ``view`` directive. | |||
| 2009-05-27 | Merge authchanges branch to trunk. | Chris McDonough | |
| 2009-05-16 | These are useless to explain; I don't even understand them. | Chris McDonough | |
| 2009-05-16 | Remove non-sequitur. | Chris McDonough | |
