summaryrefslogtreecommitdiff
path: root/docs/narr/urldispatch.rst
AgeCommit message (Collapse)Author
2011-05-13- The ``add_route`` method of the Configurator now accepts a ``static``Chris McDonough
argument. If this argument is ``True``, the added route will never be considered for matching when a request is handled. Instead, it will only be useful for URL generation via ``route_url`` and ``route_path``. See the section entitled "Static Routes" in the URL Dispatch narrative chapter for more information.
2011-05-04code refactoring for showing route->view relationship more correctly; tests ↵cguardia
and docs for pull request
2011-04-24fix rendering issueChris McDonough
2011-04-22- Make sure deprecation warnings aren't raised when tests are run.Chris McDonough
- Modify documentation for cross-referencing. - Use add_view(viewname) syntax rather than add_view(view=viewname) syntax for normalization. - Use warnings.warn rather than zope.deprecated in order to make testing easier. - Move tests which test deprecated methods of configurator to a separate test case.
2011-04-20Converting docs to deprecate view parameters in config.add_route.Michael Merickel
2011-03-24It was decided that pyramid would undergo a terminology change.Joe Dallago
'Paster templates' will now be refered to as 'scaffolds,' while 'rendered templates' will remain as 'templates.' I have changed the docs to reflect this change in terminology.
2011-03-02Closes #125Chris McDonough
2011-02-05fix conflictsChris McDonough
2011-01-30fix referencesChris McDonough
2011-01-30- Remove duplication of ``add_route`` API documentation from URL DispatchChris McDonough
narrative chapter.
2011-01-29- Changed "Cleaning up After a Request" section in the URL Dispatch chapterChris McDonough
to use ``request.add_finished_callback`` instead of jamming an object with a ``__del__`` into the WSGI environment.
2011-01-29Merge branch 'master' of https://github.com/osmaker/pyramid into osmaker-masterChris McDonough
2011-01-28shorten too-long lines for latexChris McDonough
2011-01-28minor grammar fixes ('a' vs 'an')Kyle Johnson
2011-01-27method name contractions; move details of view lookup to endChris McDonough
2011-01-27fix dangling referencesChris McDonough
2011-01-27First batch of fixes for typo's and other language issues.Chris Beelby
2011-01-26fix typo in "URL Dispatch section mentioned by some on mailing list: ↵michr
https://groups.google.com/group/pylons-devel/browse_thread/thread/511291709aec2b4a
2011-01-21- Minimally explain usage of custom regular expressions in URL dispatchChris McDonough
replacement markers within URL Dispatch chapter.
2011-01-21Incorporate suggestions from https://github.com/Pylons/pyramid/issues/#issue/57Chris McDonough
2011-01-21- Added "What's New in Pyramid 1.0" chapter to HTML rendering ofChris McDonough
documentation.
2011-01-18- Most references to ZCML in narrative chapters have been removed orChris McDonough
redirected to ``pyramid_zcml`` locations.
2011-01-02Split view chapter, move view config after templates, some reordering in ↵Casey Duncan
view config
2010-12-31don't repeat the version so many timesCasey Duncan
2010-12-31simplify route/traversal relationship. No need to repeat ourselvesCasey Duncan
2010-12-31add word chapterCasey Duncan
2010-12-31add missing wordCasey Duncan
2010-12-31Remove resource location chapter and move intro parts to url dispatch. The ↵Casey Duncan
new much ado about traversal chapter takes care of selling traversal now
2010-12-29fix from mikeChris McDonough
2010-12-27- Add ``paster proute`` command which displays a summary of the routingChris McDonough
table. See the narrative documentation section within the "URL Dispatch" chapter entitled "Displaying All Application Routes". - Added narrative documentation section within the "URL Dispatch" chapter entitled "Displaying All Application Routes" (for ``paster proutes`` command).
2010-12-19adjust views chapter to better describe handlers as view classes which ↵Chris McDonough
happen to be registered using add_handler, gardening
2010-12-20BFG_ -> PYRAMID_Jamaludin Ahmad
2010-12-20there is no mypackage.run moduleJamaludin Ahmad
2010-12-20i believe it's not neededJamaludin Ahmad
2010-12-20typo fixJamaludin Ahmad
2010-12-19rearrange traversal and urldispatch chaptersChris McDonough
2010-12-19fix urldispatch chapterChris McDonough
2010-12-19context finding -> resource locationChris McDonough
2010-12-18model->resource; make docs render without warningsChris McDonough
2010-12-18model -> resource; resource -> assetChris McDonough
2010-12-16FeaturesChris 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-12fix merge conflictsCasey Duncan
2010-12-09fix docs: pyramid.configuration -> pyramid.configChris McDonough
2010-12-02Merge https://github.com/Pylons/pyramidCasey Duncan
2010-12-01fix bad info in urldispatch chapter: matchdict and matched_route will be NoneChris McDonough
2010-11-30Merge https://github.com/Pylons/pyramidCasey Duncan
2010-11-28Normalized narrative doc, code with linenos while text+bash don'tBlaise Laflamme
2010-11-28Narrative doc cleanupBlaise Laflamme
2010-11-27Merge https://github.com/Pylons/pyramidCasey Duncan
2010-11-23fix quotingChris McDonough