summaryrefslogtreecommitdiff
path: root/docs/narr
AgeCommit message (Collapse)Author
2011-04-20Converting docs to deprecate view parameters in config.add_route.Michael Merickel
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-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-11pyramid_sqla -> akhetChris McDonough
2011-04-11add description of MANIFEST.inChris McDonough
2011-04-11make prettierChris McDonough
2011-03-29fixed typocguardia
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-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-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-05fix conflictsChris McDonough
2011-02-02Wrong name for variableChris Beelby
2011-02-02Capitalization fixChris Beelby
2011-01-30fix referencesChris McDonough
2011-01-30More errors in narrative fixed.Chris Beelby
2011-01-30fix too-long linesChris McDonough
2011-01-30too-long lineChris McDonough
2011-01-30- Remove duplication of ``add_route`` API documentation from URL DispatchChris McDonough
narrative chapter.
2011-01-30inappropriate mentions of alternate declarative formsChris McDonough
2011-01-30remove reference to ZCML directives; doesnt work in printed bookChris McDonough
2011-01-30remove direct reference to pyramid_cookbook; doesnt work in printed versionChris McDonough
2011-01-30remove reference to static ZCML directive; cant refer to it from printed bookChris McDonough
2011-01-29- Changed "Cleaning up After a Request" section in the URL Dispatch chapterChris McDonough
to use ``request.add_finished_callback`` instead of jamming an object with a ``__del__`` into the WSGI environment.
2011-01-29Merge branch 'master' of https://github.com/osmaker/pyramid into osmaker-masterChris McDonough
2011-01-29no longer brokenChris McDonough
2011-01-29renderingsChris McDonough
2011-01-28shorten too-long lines for latexChris McDonough
2011-01-28render URL properlyChris McDonough
2011-01-28minor grammar fixes ('a' vs 'an')Kyle Johnson
2011-01-28Removed reference to Zope XML namespace since this is a Mako example. Also ↵Chris Beelby
Mako in general does not require such well-formed documents and it is perhaps more accurate of a typical mako template to make the example very basic.
2011-01-28capitalizationsChris McDonough
2011-01-28nonsensical modChris McDonough
2011-01-28convert 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)
2011-01-27remove bacticks from interface descriptionChris McDonough
2011-01-27module name contractionsChris McDonough
2011-01-27spell out 20Chris McDonough
2011-01-27this line is too long to fit in the book; cheatChris McDonough
2011-01-27method name contractionsChris McDonough
2011-01-27method name contractions; move details of view lookup to endChris McDonough
2011-01-27fix dangling referencesChris McDonough
2011-01-27- Beef up documentation related to ``set_default_permission``: explicitlyChris McDonough
mention that default permissions also protect exception views.
2011-01-27First batch of fixes for typo's and other language issues.Chris Beelby