| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2011-09-23 | fixed up all the warning dealing ..note and ..warn | michr | |
| added a hide toc for glossary to prevent warnings | |||
| 2011-09-06 | prep for 1.2a6 | Chris McDonough | |
| 2011-08-28 | clean up inappropriate discussions of ZCML | Chris McDonough | |
| 2011-08-22 | remove time bombs | Chris McDonough | |
| 2011-08-22 | - Use [app:main] instead of a pipeline in all scaffolds and tutorials | Chris McDonough | |
| and narrative docs. - Break out awkward description of PasteDeploy entry points from project chapter into its own Paste chapter. | |||
| 2011-08-20 | - Mention debug toolbar in tutorials. | Chris McDonough | |
| 2011-08-14 | - The ZODB wiki tutorial now uses the ``pyramid_zodbconn`` package rather | Chris McDonough | |
| than the ``repoze.zodbconn`` package to provide ZODB integration. - The ZODB scaffold now uses the ``pyramid_zodbconn`` package rather than the ``repoze.zodbconn`` package to provide ZODB integration. | |||
| 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-08-11 | fix docs, scaffolds, and tutorials to use pyramid.includes | Chris McDonough | |
| 2011-08-11 | pyramid_tm->tm | Chris McDonough | |
| 2011-08-09 | convert tutorials to pyramid_tm+pyramid_debugtoolbar | Chris McDonough | |
| 2011-07-31 | updated wiki tutorials css | Blaise Laflamme | |
| 2011-07-30 | Updated all of the docs to reflect the new pyramid.* settings prefix. | Michael Merickel | |
| 2011-07-21 | - Change all scaffolding templates that point to docs.pylonsproject.org to | Chris McDonough | |
| use ``/projects/pyramid/current`` rather than ``/projects/pyramid/dev``. | |||
| 2011-07-02 | remove male pronoun | Chris McDonough | |
| 2011-07-01 | fix wiki tests too | Chris McDonough | |
| 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. | |||
| 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-06-07 | Merge remote branch 'cito/master' | Carlos de la Guardia | |
| 2011-06-05 | More small fixes made reading the rest of the docs and the tutorials. | Christoph Zwerschke | |
| 2011-06-05 | Close zodb before removing in functional tests | Patricio Paez | |
| 2011-05-31 | the canonical import location for HTTP exceptions/responses is now ↵ | Chris McDonough | |
| pyramid.response | |||
| 2011-05-30 | Sync Adding Authorization on both wiki tutorials | Patricio Paez | |
| 2011-05-30 | Improvements to Adding Authorization of the wiki tutorials | Patricio Paez | |
| 2011-04-20 | Sync with SQLAlchemy wiki tutorial | Patricio Paez | |
| 2011-04-20 | Adding Tests in the ZODB wiki tutorial | Patricio Paez | |
| - New section in the main index - Move Model and View tests there - Added Functional tests | |||
| 2011-04-16 | Consolidate two identical paragraphs | Patricio Paez | |
| 2011-04-16 | ZODB tutorial Adding Authorization reorganize | Patricio Paez | |
| - Sections sorted by general, views, templates - List steps in the introduction | |||
| 2011-04-16 | Improve ZODB tutorial (Adding Authorization) | Patricio Paez | |
| - Consolidate two sections and promote some to first level - Add a couple of terms | |||
| 2011-03-31 | Move Viewing the Application in a Browser up | Patricio Paez | |
| 2011-03-31 | Fix typos in the tutorials | Patricio Paez | |
| 2011-03-31 | Sync the Defining Views intro with the SQLAlchemy tutorial | Patricio Paez | |
| 2011-03-31 | Sync note with SQLAlchemy tutorial | Patricio Paez | |
| 2011-03-30 | Sync Declaring Dependencies with the SQLAlchemy tutorial | Patricio Paez | |
| 2011-03-30 | Move the Declaring Dependencies topic to the Defining Views section | Patricio Paez | |
| 2011-03-26 | Simplify the Defining the Domain Model section in the ZODB tutorial | Patricio Paez | |
| and standardize with the SQLAlchemy tutorial | |||
| 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-21 | changed mentions of repoze.tm to repoze.tm2 to fix issue 151 | cguardia | |
| 2011-03-02 | Closes #128 | Chris McDonough | |
| 2011-02-05 | fix conflicts | Chris McDonough | |
| 2011-02-03 | Corrected a/an usage and also clarified "deployment" to mean to a production ↵ | Chris Beelby | |
| system (as opposed to deploying to a development, QA, etc... machine) | |||
| 2011-01-30 | Typo - "tutorial.models.Wiki" should be "tutorial.models.Page" | Claus Conrad | |
| 2011-01-30 | fix too-long lines | Chris McDonough | |
| 2011-01-29 | - Added ``egg:repoze.retry#retry`` middleware to the WSGI pipeline in ZODB | Chris McDonough | |
| templates (retry ZODB conflict errors which occur in normal operations). | |||
| 2011-01-29 | fix too-long lines in tutorials | Chris McDonough | |
| 2011-01-28 | docutils necessary as per tutorial flow | Chris McDonough | |
| 2011-01-28 | dont use tab-width directive (older sphinx does not support, need to build ↵ | Chris McDonough | |
| book with older sphinx) | |||
| 2011-01-28 | convert all tabs to spaces in templates (sorry, blaise, i may have to use an ↵ | Chris McDonough | |
| older version of sphinx which doesnt respect tab-width) | |||
