summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-06-24- Add information to the URL Dispatch narrative documentation aboutChris McDonough
path pattern matching syntax.
2009-06-24Back to dev.Chris McDonough
2009-06-24Wrong.Chris McDonough
2009-06-24Prep for 1.0a3.Chris McDonough
2009-06-24Rendering.Chris McDonough
2009-06-24Reverse ordering of args to route_url.Chris McDonough
2009-06-24Note bw compat.Chris McDonough
2009-06-24- ``repoze.bfg`` no longer relies on the Routes package to interpretChris McDonough
URL paths.
2009-06-24Merge noroutes branch to trunk.Chris McDonough
2009-06-24Typo.Chris McDonough
2009-06-24Logic error in GAE tutorial (Michael B).Chris McDonough
2009-06-24Change the implementation and the signature for ``route_url``.Chris McDonough
2009-06-24Note BFG on GAE bugfix.Chris McDonough
2009-06-24Speculative fix for symptom similar to:Chris McDonough
http://code.google.com/p/google-app-engine-django/issues/detail?id=11 (reported by webmaven)
2009-06-24- Use ``repoze.bfg.url.route_url`` API in tutorials rather than RoutesChris McDonough
``url_for`` API.
2009-06-24- Added the ``repoze.bfg.url.route_url`` API. This is meant toChris 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-24(no commit message)Chris McDonough
2009-06-24Add (painful) explanation of weak-binding route view context registrations.Chris McDonough
2009-06-24- ``model_url`` when passed a request that was generated as a resultChris McDonough
of a route match would fail in a call to ``route.generate``.
2009-06-23Deal with no-route-yet-defined case.Chris McDonough
2009-06-23Back to dev.Chris McDonough
2009-06-23Sentence.Chris McDonough
2009-06-23Docstring.Chris McDonough
2009-06-23Prep for 1.0a2.Chris McDonough
2009-06-23Update tutorials with new callback API.Chris McDonough
2009-06-23- The ``callback`` argument of the ``repoze.bfg.authentication``Chris McDonough
authentication policies named ``RepozeWho1AuthenticationPolicy``, ``RemoteUserAuthenticationPolicy``, and ``AuthTktAuthenticationPolicy`` now must accept two positional arguments: the orginal argument accepted by each (userid or identity) plus a second argument, which will be the current request. Apologies, this is required to service finding groups when there is no "global" database connection.
2009-06-23Reverse the order.Chris McDonough
2009-06-22- The ``bfg_routesalchemy`` paster template app tests failed due to aChris McDonough
mismatch between test and view signatures.
2009-06-22Note non-runnable state.Chris McDonough
2009-06-22Note non-runnability.Chris McDonough
2009-06-22Make sure nose and coverage are installed.Chris McDonough
2009-06-22- Conditional documentation in installation section ("how to install aChris McDonough
Python interpreter").
2009-06-22Useless marker.Chris McDonough
2009-06-22- Add a ``view_for`` attribute to the ``route`` ZCML directive. ThisChris McDonough
attribute should refer to an interface or a class (ala the ``for`` attribute of the ``view`` ZCML directive).
2009-06-22Back to dev.Chris McDonough
2009-06-22Update test output.Chris McDonough
2009-06-22Prep for 1.0a1.Chris McDonough
2009-06-22Typo.Chris McDonough
2009-06-22We weren't computing the virtual root correctly in a corner case.Chris McDonough
2009-06-22More micro-optimizations to the default traverser.Chris McDonough
Fix registerModels to use the right traversal info names.
2009-06-22- The values of ``subpath``, ``traversed``, and ``virtual_root_path``Chris McDonough
attached to the request object are always now tuples instead of lists (performance).
2009-06-22Unused import.Chris McDonough
2009-06-22Gardening.Chris McDonough
2009-06-22Gardening.Chris McDonough
2009-06-22Back to *subpath in urldispatch tutorial.Chris McDonough
2009-06-22Add documentation for *subpath.Chris McDonough
Switch back to using a route with a subpath in the bfgalchemy paster template.
2009-06-22- Adding ``*path_info`` to a route no longer changes the PATH_INFO forChris McDonough
a request that matches using URL dispatch. This feature was only there to service the ``repoze.bfg.wsgi.wsgiapp2`` decorator and it did it wrong; use ``*subpath`` instead now. - The interface generation performed for named request factories had the wrong base classes.
2009-06-21Make urldispatch put matchdict into environ.Chris McDonough
Traverser no longer returns matchdict.
2009-06-21- Make Routes mapper responsible for doing magic to fix up PATH_INFOChris McDonough
and SCRIPT_NAME when a ``path_info`` key exists in the matchdict. This used to be done in the traverser, which made no sense.
2009-06-21Make views that do not have a route_name match when any route is used.Chris McDonough