summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-06-26Prep for 1.0a4 release.Chris McDonough
2009-06-26- Cause ``:segment`` matches in route paths to put a Unicode-decodedChris 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-25(no commit message)Chris McDonough
2009-06-25- Add optional ``max_age`` keyword value to the ``remember`` method ofChris McDonough
``repoze.bfg.authentication.AuthTktAuthenticationPolicy``; if this value is passed to ``remember``, the generated cookie will have a corresponding Max-Age value.
2009-06-25(no commit message)Chris McDonough
2009-06-25Wording.Chris McDonough
2009-06-25- Make ``route_url`` URL-quote segment replacements during generation.Chris McDonough
Remainder segments are not quoted.
2009-06-24Save the scary stuff for later.Chris McDonough
2009-06-24Single arg style.Chris McDonough
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).