summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2011-04-19clarifyChris McDonough
2011-04-18fixed makefile to update theme submodule correctlycguardia
2011-04-18- Deprecated all assignments to ``request.response_*`` attributes such asChris McDonough
``request.response_content_type = 'foo'``. Assignments and mutations of the following request attributes that were considered by the framework for response influence are now deprecated: ``response_content_type``, ``response_headerlist``, ``response_status``, ``response_charset``, and ``response_cache_for``. Instead of assigning these to the request object for detection by the rendering machinery, users should use the appropriate API of the Response object created by accessing ``request.response`` (e.g. ``request.response_content_type = 'abc'`` -> ``request.response.content_type = 'abc'``). - Custom request objects are now required to have a ``response`` attribute (or reified property) if they are meant to be used with renderers. This ``response`` attribute should be an instance of the class ``pyramid.response.Response``. - The JSON and string renderer factories now use ``request.response.content_type`` rather than ``request.response_content_type``. They determine whether they should set the content type of the response by comparing the response's content type against the default (usually ``text/html``); if the content type is not the default, the renderer changes the content type (to ``application/json`` or ``text/plain`` for JSON and string renderers respectively). - Made it possible to assign to and delete ``pyramid.testing.DummyRequest.registry`` (bugfix).
2011-04-18test adding theme as a submodulecguardia
2011-04-16Consolidate two identical paragraphsPatricio Paez
2011-04-16ZODB tutorial Adding Authorization reorganizePatricio Paez
- Sections sorted by general, views, templates - List steps in the introduction
2011-04-16Improve ZODB tutorial (Adding Authorization)Patricio Paez
- Consolidate two sections and promote some to first level - Add a couple of terms
2011-04-13- Add missing docs reference toChris McDonough
``pyramid.config.Configurator.set_view_mapper`` and refer to it within Hooks chapter section named "Using a View Mapper".
2011-04-13- Make ``pyramid.interfaces.IAuthenticationPolicy`` andChris McDonough
``pyramid.interfaces.IAuthorizationPolicy`` public interfaces, and refer to them within the ``pyramid.authentication`` and ``pyramid.authorization`` API docs. - Render the function definitions for each exposed interface in ``pyramid.interfaces``. Closes #167.
2011-04-11pyramid_sqla -> akhetChris McDonough
2011-04-11add description of MANIFEST.inChris McDonough
2011-04-11make prettierChris McDonough
2011-04-11fix improper use of :ref: (should have been :meth:)Chris McDonough
2011-04-10Wrong attribute name; closes #146.Chris McDonough
2011-04-01add patricio to list of contributorsChris McDonough
2011-03-31Move Viewing the Application in a Browser upPatricio Paez
2011-03-31Fix typos in the tutorialsPatricio Paez
2011-03-31Sync the Defining Views intro with the SQLAlchemy tutorialPatricio Paez
2011-03-31Sync note with SQLAlchemy tutorialPatricio Paez
2011-03-30Sync Declaring Dependencies with the SQLAlchemy tutorialPatricio Paez
2011-03-30Move the Declaring Dependencies topic to the Defining Views sectionPatricio Paez
2011-03-29fixed typocguardia
2011-03-28branch coverageChris McDonough
2011-03-26Simplify the Defining the Domain Model section in the ZODB tutorialPatricio Paez
and standardize with the SQLAlchemy tutorial
2011-03-25Moved the content that was put into whatsnew-1.0.rst into the CHANGES.txtJoe Dallago
file, b/c the terminology change doesn't apply to version 1.0. Also changed the output of the paster create command in project.rst back to its original state.
2011-03-24It 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-24Merge remote branch 'source/master'Alexandre Bourget
Conflicts: docs/narr/hooks.rst
2011-03-24Fix some typos.Alexandre Bourget
2011-03-22Merge branch 'cguardia-master'Chris McDonough
2011-03-21changed mentions of repoze.tm to repoze.tm2 to fix issue 151cguardia
2011-03-20review changes to sqla tutorialChris McDonough
2011-03-19update description of shootoutChris McDonough
2011-03-15Restructured the routes wiki tutorial to make it easier to follow along. ↵Carlos de la Guardia
Moved the routes tutorial above the traversal tutorial.
2011-03-09leave some breadcrumbs for finding renderered response attribute settingsChris McDonough
2011-03-05add section about pluggable appsChris McDonough
2011-03-02Closes #128Chris McDonough
2011-03-02Closes #125Chris McDonough
2011-02-28Fix authentication policy example.Chris McDonough
Closes #137
2011-02-26it's request_paramChris McDonough
2011-02-25typoChris McDonough
2011-02-25unusedChris McDonough
2011-02-23mirror virhilo's changes to views tutorial package in authorization stepChris McDonough
2011-02-23normalized test cases in wiki2 tutorialŁukasz Fidosz
2011-02-16fix tutorial wordingChris McDonough
2011-02-15fixed typo in docs in wiki2 tutorialŁukasz Fidosz
2011-02-13Merge branch 'master' of https://github.com/lambacck/pyramid into ↵Chris McDonough
lambacck-master
2011-02-12Add make_localizer function & docs & testsChristopher Lambacher
2011-02-12fix typoChris McDonough
2011-02-05mention Chris BeeblyChris McDonough
2011-02-05fix conflictsChris McDonough