summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2011-06-03fix renderingChris McDonough
2011-06-03minor edits to cito's editsChris McDonough
2011-06-03Some more small fixes in the narrative docu.Christoph Zwerschke
2011-06-03Minor fixes in the Renderers docu.Christoph Zwerschke
2011-06-03Fixed quote chars.Christoph Zwerschke
2011-06-02Some typos, better quoting in Traversal docs.Christoph Zwerschke
2011-06-02Fix wrong parameter name.Christoph Zwerschke
2011-05-31broke this in the last commitChris McDonough
2011-05-31the canonical import location for HTTP exceptions/responses is now ↵Chris McDonough
pyramid.response
2011-05-30Sync Adding Authorization on both wiki tutorialsPatricio Paez
2011-05-30Improvements to Adding Authorization of the wiki tutorialsPatricio Paez
2011-05-30add design defense entry for simpler traversalChris McDonough
2011-05-27Attempt to fix issue #193 by setting mako default filter to 'h'.Michael Merickel
2011-05-26Fix typo to close issue 196.Carlos de la Guardia
2011-05-25add notifications for new featureChris McDonough
2011-05-25Added a simple session-based authentication policy.Michael Merickel
2011-05-16typoChris McDonough
2011-05-16- Added API docs for ``pyramid.httpexceptions.abort`` andChris McDonough
``pyramid.httpexceptions.redirect``. - Added "HTTP Exceptions" section to Views narrative chapter including a description of ``pyramid.httpexceptions.abort``; adjusted redirect section to note ``pyramid.httpexceptions.redirect``. - A default exception view for the context ``webob.exc.HTTPException`` (aka ``pyramid.httpexceptions.HTTPException``) is now registered by default. This means that an instance of any exception class imported from ``pyramid.httpexceptions`` (such as ``HTTPFound``) can now be raised from within view code; when raised, this exception view will render the exception to a response. - New functions named ``pyramid.httpexceptions.abort`` and ``pyramid.httpexceptions.redirect`` perform the equivalent of their Pylons brethren when an HTTP exception handler is registered. These functions take advantage of the newly registered exception view for ``webob.exc.HTTPException``. - The Configurator now accepts an additional keyword argument named ``httpexception_view``. By default, this argument is populated with a default exception view function that will be used when an HTTP exception is raised. When ``None`` is passed for this value, an exception view for HTTP exceptions will not be registered. Passing ``None`` returns the behavior of raising an HTTP exception to that of Pyramid 1.0 (the exception will propagate to middleware and to the WSGI server).
2011-05-14template -> scaffoldChris McDonough
2011-05-14Merge branch 'master' of github.com:Pylons/pyramidChris McDonough
2011-05-14add 'What's new In Pyramid 1.1' documentChris McDonough
2011-05-14Correct spelling of my nameWichert Akkerman
2011-05-14applied some of the suggestions from issue #189. closes #189Chris McDonough
2011-05-14use lingua in docs (thanks to wichert)Chris McDonough
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-13- Added documentation for a "multidict" (e.g. the API of ``request.POST``) asChris McDonough
interface API documentation.
2011-05-05Fixed some line numbers in the docs.Michael Merickel
2011-05-05Fixed a bug in the wiki2/auth tutorial.Michael Merickel
2011-05-04Revert "test adding theme as a submodule"cguardia
This reverts commit 94c2dc0bae9cf14cc6a5548119933e4477d07042.
2011-05-04Revert "fixed makefile to update theme submodule correctly"cguardia
This reverts commit f2d5cb59deba682d7c1d461ab5e90ba1802d42ac.
2011-05-04code refactoring for showing route->view relationship more correctly; tests ↵cguardia
and docs for pull request
2011-04-27Merge branch 'master' of https://github.com/Pylons/pyramidcguardia
2011-04-25spell it out entirelyChris McDonough
2011-04-25Merge branch 'master' of https://github.com/Pylons/pyramidcguardia
2011-04-24Merge branch 'zodb-tutorial-test-reorg' of https://github.com/ppaez/pyramid ↵Chris McDonough
into ppaez-zodb-tutorial-test-reorg
2011-04-24Merge branch 'master' of https://github.com/jdnavarro/pyramid into ↵Chris McDonough
jdnavarro-master
2011-04-24fix rendering issueChris McDonough
2011-04-23BFG -> PyramidDanny Navarro
2011-04-22fix merge conflictsChris 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-22Merge branch 'disambiguate_add_route' of ↵Chris McDonough
https://github.com/mmerickel/pyramid into mmerickel-disambiguate_add_route
2011-04-22version bumpChris McDonough
2011-04-21add 'adding a custom settings'Chris McDonough
2011-04-20Sync with SQLAlchemy wiki tutorialPatricio Paez
2011-04-20Adding Tests in the ZODB wiki tutorialPatricio Paez
- New section in the main index - Move Model and View tests there - Added Functional tests
2011-04-20Fixed typos and added clarifications in a tutorialKirk Strauser
I was working through the wiki2 tutorial this morning and found some slightly confusing bits. As I went along, I added the suggested changes to my local files to make them match the tutorial's version, but found several times that key parts were missing. I'm not new to Python so this didn't slow me down, but thought some clarifications might help new users.
2011-04-20Upgraded the url dispatch tutorials to use add_view.Michael Merickel
2011-04-20Converting docs to deprecate view parameters in config.add_route.Michael Merickel
2011-04-19renderingChris McDonough
2011-04-19renderingChris McDonough