summaryrefslogtreecommitdiff
path: root/repoze/bfg/urldispatch.py
AgeCommit message (Collapse)Author
2008-09-17 - Routes URL dispatch did not have access to the WSGI environment,Chris McDonough
so conditions such as method=GET did not work.
2008-09-16Document url dispatch in narrative form.Chris McDonough
2008-08-08 - Add ``find_context_from_path`` and ``find_root`` traversal APIs.Chris McDonough
In the process, make ITraverser a uni-adapter (on context) rather than a multiadapter (on context and request).
2008-08-06Fix.Chris McDonough
2008-08-06 - Small url dispatch overhaul: the ``connect`` method of theChris McDonough
``urldispatch.RoutesMapper`` object now accepts a keyword parameter named ``context_factory``. If this parameter is supplied, it must be a callable which returns an instance. This instance is used as the context for the request when a route is matched. - The registration of a RoutesModelTraverser no longer needs to be performed by the application; it's in the bfg ZCML now.
2008-07-22Add url-based dispatch.Chris McDonough