| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2011-10-24 | garden | Michael Merickel | |
| 2011-10-12 | Edited docs/narr/urldispatch.rst via GitHub | Wayne Tong | |
| 2011-10-06 | remove all reference to the paster command-line utility | Chris McDonough | |
| 2011-09-23 | add documenteation for the __text__ attribute for a predicate | michr | |
| 2011-09-23 | fixed up all the warning dealing ..note and ..warn | michr | |
| added a hide toc for glossary to prevent warnings | |||
| 2011-09-12 | document replacement marker composition | Chris McDonough | |
| 2011-09-07 | more refs to root factory docs | Chris McDonough | |
| 2011-09-07 | add squishy whats-unique section to introduction | Chris McDonough | |
| 2011-09-05 | move unrelated request cleanup to webob.rest; reorder urldispatch chapter ↵ | Chris McDonough | |
| from most-important-concept-to-least | |||
| 2011-08-14 | - The ``route_url``, ``route_path``, ``resource_url``, ``static_url``, and | Chris McDonough | |
| ``current_route_url`` functions in the ``pyramid.url`` package now delegate to a method on the request they've been passed, instead of the other way around. The pyramid.request.Request object now inherits from a mixin named pyramid.url.URLMethodsMixin to make this possible, and all url/path generation logic is embedded in this mixin. - Narrative and API documentation which used the ``route_url``, ``route_path``, ``resource_url``, ``static_url``, and ``current_route_url`` functions in the ``pyramid.url`` package have now been changed to use eponymous methods of the request instead. | |||
| 2011-08-10 | - Added a ``route_prefix`` argument to the | Chris McDonough | |
| ``pyramid.config.Configurator.include`` method. This argument allows you to compose URL dispatch applications together. See the section entitled "Using a Route Prefix to Compose Applications" in the "URL Dispatch" narrative documentation chapter. - Added a section entitled "Using a Route Prefix to Compose Applications" to the "URL Dispatch" narrative documentation chapter. | |||
| 2011-07-30 | Updated all of the docs to reflect the new pyramid.* settings prefix. | Michael Merickel | |
| 2011-07-20 | - Reordered chapters in narrative section for better new user friendliness. | Chris McDonough | |
| - Added more indexing markers to sections in documentation. | |||
| 2011-07-20 | add more index markers | Chris McDonough | |
| 2011-07-13 | move all paster commands to a separate chapter | Chris McDonough | |
| 2011-07-12 | fix sample | Chris McDonough | |
| 2011-07-12 | remove references to add_route view-related configuration | Chris McDonough | |
| 2011-07-12 | remove deprecated mechanism to associate views with routes; add description ↵ | Chris McDonough | |
| of scan mechanism | |||
| 2011-07-07 | Updated proutes and pviews docs. | Michael Merickel | |
| 2011-06-11 | - Pyramid now expects Response objects to have a __call__ | Chris McDonough | |
| method which implements the WSGI application interface instead of the three webob attrs status, headerlist and app_iter. Backwards compatibility exists for code which returns response objects that do not have a __call__. - pyramid.response.Response is no longer an exception (and therefore cannot be raised in order to generate a response). - Changed my mind about moving stuff from pyramid.httpexceptions to pyramid.response. The stuff I moved over has been moved back to pyramid.httpexceptions. | |||
| 2011-05-31 | the canonical import location for HTTP exceptions/responses is now ↵ | Chris McDonough | |
| pyramid.response | |||
| 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-04 | code refactoring for showing route->view relationship more correctly; tests ↵ | cguardia | |
| and docs for pull request | |||
| 2011-04-24 | fix rendering issue | Chris 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-20 | Converting docs to deprecate view parameters in config.add_route. | Michael Merickel | |
| 2011-03-24 | It 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-02 | Closes #125 | Chris McDonough | |
| 2011-02-05 | fix conflicts | Chris McDonough | |
| 2011-01-30 | fix references | Chris McDonough | |
| 2011-01-30 | - Remove duplication of ``add_route`` API documentation from URL Dispatch | Chris McDonough | |
| narrative chapter. | |||
| 2011-01-29 | - Changed "Cleaning up After a Request" section in the URL Dispatch chapter | Chris McDonough | |
| to use ``request.add_finished_callback`` instead of jamming an object with a ``__del__`` into the WSGI environment. | |||
| 2011-01-29 | Merge branch 'master' of https://github.com/osmaker/pyramid into osmaker-master | Chris McDonough | |
| 2011-01-28 | shorten too-long lines for latex | Chris McDonough | |
| 2011-01-28 | minor grammar fixes ('a' vs 'an') | Kyle Johnson | |
| 2011-01-27 | method name contractions; move details of view lookup to end | Chris McDonough | |
| 2011-01-27 | fix dangling references | Chris McDonough | |
| 2011-01-27 | First batch of fixes for typo's and other language issues. | Chris Beelby | |
| 2011-01-26 | fix 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 dispatch | Chris McDonough | |
| replacement markers within URL Dispatch chapter. | |||
| 2011-01-21 | Incorporate suggestions from https://github.com/Pylons/pyramid/issues/#issue/57 | Chris McDonough | |
| 2011-01-21 | - Added "What's New in Pyramid 1.0" chapter to HTML rendering of | Chris McDonough | |
| documentation. | |||
| 2011-01-18 | - Most references to ZCML in narrative chapters have been removed or | Chris McDonough | |
| redirected to ``pyramid_zcml`` locations. | |||
| 2011-01-02 | Split view chapter, move view config after templates, some reordering in ↵ | Casey Duncan | |
| view config | |||
| 2010-12-31 | don't repeat the version so many times | Casey Duncan | |
| 2010-12-31 | simplify route/traversal relationship. No need to repeat ourselves | Casey Duncan | |
| 2010-12-31 | add word chapter | Casey Duncan | |
| 2010-12-31 | add missing word | Casey Duncan | |
| 2010-12-31 | Remove 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-29 | fix from mike | Chris McDonough | |
