summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2011-01-15General reformatting of the wiki and wiki2 tutorials to eliminateJohn Shipman
any overly long lines in the PDF rendering. Changes to .rst files: (docs/tutorials/wiki/authorization.rst) (docs/tutorials/wiki/definingviews.rst) (docs/tutorials/wiki2/authorization.rst) (docs/tutorials/wiki2/definingviews.rst) 1. For included templates, added :tab-width: 2 options. 2. wiki2/authorization.rst: Wrong markup for file names __init__.py and views.py just after the subhead "Adding security.py". Changes to .py files: Folded a few long lines. (docs/tutorials/wiki/src/basiclayout/tutorial/views.py) (docs/tutorials/wiki/src/authorization/tutorial/views.py) (docs/tutorials/wiki/src/views/tutorial/views.py) (docs/tutorials/wiki2/src/basiclayout/tutorial/models.py) (docs/tutorials/wiki2/src/models/tutorial/models.py) Changes to .pt files: Broke long lines; reformatted for 2-space indentation using tabs. (docs/tutorials/wiki/src/authorization/tutorial/templates/edit.pt) (docs/tutorials/wiki/src/authorization/tutorial/templates/login.pt) (docs/tutorials/wiki/src/authorization/tutorial/templates/view.pt) (docs/tutorials/wiki/src/views/tutorial/templates/edit.pt) (docs/tutorials/wiki/src/views/tutorial/templates/view.pt) (docs/tutorials/wiki2/src/authorization/tutorial/templates/edit.pt) (docs/tutorials/wiki2/src/authorization/tutorial/templates/login.pt) (docs/tutorials/wiki2/src/authorization/tutorial/templates/view.pt) (docs/tutorials/wiki2/src/views/tutorial/templates/edit.pt) (docs/tutorials/wiki2/src/views/tutorial/templates/view.pt)
2011-01-08prep for 1.0a9Chris McDonough
2011-01-08redocument relationship between get_csrf_token and new_csrf_tokenChris McDonough
2011-01-08fix renderingsChris McDonough
2011-01-07- Document ``Configurator.set_view_mapper``.Chris McDonough
- Document ``__view_mapper__`` attribute and ``mapper`` argument to view configuration for view callable view mapper preference.
2011-01-07- Allow ``decorator`` and ``mapper`` arguments to view ZCML directive.Chris McDonough
- Document ``decorator`` and ``mapper`` arguments in various places.
2011-01-07preserve method signatures of @action_method-decorated methods in sphinx docsChris McDonough
2011-01-06get rid of incorrect usage of threadlocals during configuration in venusian ↵Chris McDonough
example
2011-01-06Typo: python setup.py develop.py shouldn't have that .py at the end.Marius Gedminas
2011-01-06remove comment, it's more or less answeredCasey Duncan
2011-01-06clarify by promoting parenthetical, add comment requesting some adviceCasey Duncan
2011-01-06clarifyCasey Duncan
2011-01-05add parens to method referencesCasey Duncan
2011-01-05forgot an important session feature in summaryCasey Duncan
2011-01-05add summary paragraph to tie things together betterCasey Duncan
2011-01-05incorporate return type and queue semantics into same paragraphCasey Duncan
2011-01-05clarify behavior of allow_duplicateCasey Duncan
2011-01-06Added missing imagesBlaise Laflamme
2011-01-06Added small header support to css paster templates, using small header for ↵Blaise Laflamme
wiki tutorial
2011-01-05remove redundant sentenceCasey Duncan
2011-01-05add parens to method referencesCasey Duncan
2011-01-05don't need linenos for one lineCasey Duncan
2011-01-05combine flash and csrf into sessions chaptCasey Duncan
2011-01-05reduce strength of assertionCasey Duncan
2011-01-06Updated wiki tutorial docsBlaise Laflamme
2011-01-06Removed login option from tutorial defining views templatesBlaise Laflamme
2011-01-05slight reword for better flowCasey Duncan
2011-01-05Updated tutorial sources to use the new theme, use ↵Blaise Laflamme
request.static_url('{{package}}:static/foo.css') instead of ${request.application_url}/static/foo.css for static files
2011-01-03copyrightsChris McDonough
2011-01-03remove stray slash which prevented _themes from being downloaded if they ↵Chris McDonough
didnt exist
2011-01-03- Add a new API ``pyramid.url.current_route_url``, which computes a URL basedChris McDonough
on the "current" route (if any) and its matchdict values.
2011-01-03edit much ado chapterChris McDonough
2011-01-03add placeholder form handling chapt, may move to cookbookCasey Duncan
2011-01-02add intro paragraph to view config chaptCasey Duncan
2011-01-02:term: not :mod:Casey Duncan
2011-01-02remove unneeded liars remorse paragraph atop renderersCasey Duncan
2011-01-02Split view chapter, move view config after templates, some reordering in ↵Casey Duncan
view config
2011-01-03contributorsChris McDonough
2011-01-03fix renderingChris McDonough
2011-01-03Merge git://github.com/caseman/pyramid into caseman-masterChris McDonough
2011-01-03Merge branch 'master' of https://github.com/jahmad/pyramid into jahmad-masterChris McDonough
2011-01-03Merge branch 'master' of https://github.com/nek4life/pyramid into ↵Chris McDonough
nek4life-master
2011-01-02rework paragraph about view callable return values and the possibility of ↵Casey Duncan
renderers
2011-01-02rework view callables introCasey Duncan
2011-01-02add word chaptersCasey Duncan
2011-01-02provide a reference target for modifying package structureChris McDonough
2011-01-02indirection is hardChris McDonough
2011-01-02typo, add exampleChris McDonough
2011-01-02- add a ``add_view_mapper`` API to Configurator. This API allows you to addChris McDonough
a named implementation of a ``pyramid.interfaces.IViewMapperFactory`` interface. Its name can be passed as a ``view_mapper`` argument to ``config.add_view``. A view mapper allows objects that are meant to be used as view callables to have an arbitrary argument list and an arbitrary result. This feature will be used by Pyramid extension developers, not by "civilians". - New constructor argument to Configurator: ``default_view_mapper``. Useful to create systems that have view callables with alternate default calling conventions. - ``view_mapper`` argument to ``add_view`` should now be a view mapper *name* rather than an implementation. - Add ``view_mapper`` argument to ``view_config`` decorator constructor. - Remove (non-API) function of config.py named _map_view. - Fix docstring for ``decorator`` argument to add_view. - Factor invocation of view mapper into a viewderiver method. - Promote view rendering and decorating into viewderiver, out of view mapper. - Make requestonly into a function rather than a method of the default view mapper.
2011-01-01rework paragraphs discussifng root factot configCasey Duncan