| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-01-15 | Update output of install of docutils | Steve Piercy | |
| - Fix line number reference | |||
| 2020-01-10 | sync wiki installation, basiclayout, models and views chapters with new ↵ | Michael Merickel | |
| cookiecutter | |||
| 2020-01-02 | Update docs/tutorials/wiki/definingviews.rst and related src files, and ↵ | Steve Piercy | |
| models src files | |||
| 2018-11-25 | Fix template to include either the page name or a title for the title tag | Steve Piercy | |
| 2018-11-25 | Add section for notfound | Steve Piercy | |
| 2018-11-25 | Fix up line numbers, add a not found error check | Steve Piercy | |
| 2018-11-25 | Align line numbers with src in views | Steve Piercy | |
| 2018-11-25 | Clean up templates narrative. | Steve Piercy | |
| 2018-11-25 | Rewrap edit_page view section | Steve Piercy | |
| 2018-11-24 | Use proper reST syntax and directives | Steve Piercy | |
| 2018-11-24 | Revise the add_page view section narrative | Steve Piercy | |
| 2018-11-24 | Use double backticks on objects | Steve Piercy | |
| 2018-11-24 | Update models and view application sections | Steve Piercy | |
| 2018-11-24 | Revise view_page narrative | Steve Piercy | |
| 2018-11-24 | Update view_wiki narrative | Steve Piercy | |
| 2018-11-24 | Clean up introduction to views, synch views files | Steve Piercy | |
| 2018-11-24 | rewrap introduction, spell out contractions | Steve Piercy | |
| 2018-09-16 | doc fixes | Stephen Martin | |
| 2018-09-09 | merging cookiecutters | Stephen Martin | |
| 2018-08-19 | Standardize Unix capitalization | Steve Piercy | |
| 2018-08-18 | Clean up code-blocks in tutorials/wiki/definingviews | Steve Piercy | |
| 2017-06-10 | synch emphasize-lines with src files for zodb wiki tutorial | Steve Piercy | |
| 2016-12-23 | replace pcreate w/cc | Steve Piercy | |
| 2016-12-23 | Use cookiecutter instead of scaffold and pcreate | Steve Piercy | |
| - minor grammar and reST fixes | |||
| 2016-12-18 | Fix typo | Pavlo Kapyshin | |
| 2016-12-06 | Changed wiki tutorial to showcase passwrd hashing with bcrypt. Relates to #2204 | Martin | |
| 2016-04-16 | replace ps1con with doscon for lexer | Steve Piercy | |
| 2016-04-10 | - update definingviews and its src files | Steve Piercy | |
| - fix css in zodb scaffold and wiki tutorial previous steps | |||
| 2016-04-09 | - fix traversal tutorial reference | Steve Piercy | |
| - add intersphinx targets to wiki/* | |||
| 2015-05-27 | - clean up and make consistent across wiki tutorials | Steve Piercy | |
| - update templates and static assets for new design | |||
| 2015-05-26 | - clean up and make defininingviews consistent between two wiki tutorials | Steve Piercy | |
| - sort imports to be consistent with scaffold setup.py - update templates, static assets | |||
| 2013-09-06 | fix some more broken references | Michael Merickel | |
| 2013-03-05 | update some links and fix others | Tshepang Lekhonkhobe | |
| 2013-01-24 | Add source code snippets to supply context for the narrative. | Steve Piercy | |
| 2013-01-20 | point to the sources of the wiki tutorials in just one location; fix #763 | Tshepang Lekhonkhobe | |
| * This avoids having to update the link multiple times. * Also, mention their location, in case user has Pyramid checkout. | |||
| 2013-01-02 | eliminate other repeated words | Tshepang Lekhonkhobe | |
| 2012-08-04 | add quotes for clarity | Daniel Haaker | |
| 2012-04-16 | Normalize and update the last section | Patricio Paez | |
| 2012-04-13 | Simplify the introduction | Patricio Paez | |
| - Moved the selection of the templates to the Design chapter - Improved the Views section in the Design chapter - Normalize in both tutorials | |||
| 2012-04-12 | Improve the Adding Templates section in both tutorials | Patricio Paez | |
| - As suggested by Paulo in the PyCon sprint | |||
| 2012-03-17 | master->1.3-branch | Chris McDonough | |
| 2012-03-12 | Added links to Starting the Application | Patricio Paez | |
| - Sections 'Viewing the Application in a Browser' in the 'Defining the Domain Model' and 'Defining the Views' chapters now offer a quick link in both wiki tutorials, as suggested by Paulo. | |||
| 2011-11-18 | - Fix ZODB tutorial docs to match ZODB tutorial code (I removed program name | Chris McDonough | |
| from ``scan``). | |||
| 2011-11-08 | No longer using request.static_url() in the demos. | kenmanheimer | |
| 2011-10-06 | remove all reference to the paster command-line utility | Chris McDonough | |
| 2011-09-23 | fixed up all the warning dealing ..note and ..warn | michr | |
| added a hide toc for glossary to prevent warnings | |||
| 2011-08-14 | - All tutorials now use - The ``route_url``, ``route_path``, | Chris McDonough | |
| ``resource_url``, ``static_url``, and ``current_route_url`` methods of the request rather than the function variants imported from ``pyramid.url``. | |||
| 2011-08-13 | - Projects created via a scaffold no longer depend on the ``WebError`` | Chris McDonough | |
| package at all; configuration in the ``production.ini`` file which used to require its ``error_catcher`` middleware has been removed. Configuring error catching / email sending is now the domain of the ``pyramid_exclog`` package (see https://docs.pylonsproject.org/projects/pyramid_exclog/dev/). | |||
| 2011-06-14 | merge httpexception-utils branch | Chris McDonough | |
| 2011-06-13 | - Remove IResponder abstraction in favor of more general IResponse | Chris McDonough | |
| abstraction. - It is now possible to return an arbitrary object from a Pyramid view callable even if a renderer is not used, as long as a suitable adapter to ``pyramid.interfaces.IResponse`` is registered for the type of the returned object. See the section in the Hooks chapter of the documentation entitled "Changing How Pyramid Treats View Responses". - The Pyramid router now, by default, expects response objects returned from view callables to implement the ``pyramid.interfaces.IResponse`` interface. Unlike the Pyramid 1.0 version of this interface, objects which implement IResponse now must define a ``__call__`` method that accepts ``environ`` and ``start_response``, and which returns an ``app_iter`` iterable, among other things. Previously, it was possible to return any object which had the three WebOb ``app_iter``, ``headerlist``, and ``status`` attributes as a response, so this is a backwards incompatibility. It is possible to get backwards compatibility back by registering an adapter to IResponse from the type of object you're now returning from view callables. See the section in the Hooks chapter of the documentation entitled "Changing How Pyramid Treats View Responses". - The ``pyramid.interfaces.IResponse`` interface is now much more extensive. Previously it defined only ``app_iter``, ``status`` and ``headerlist``; now it is basically intended to directly mirror the ``webob.Response`` API, which has many methods and attributes. - Documentation changes to support above. | |||
