summaryrefslogtreecommitdiff
path: root/docs/narr/templates.rst
AgeCommit message (Collapse)Author
2011-11-21de-jythonifyChris McDonough
2011-10-06remove all reference to the paster command-line utilityChris McDonough
2011-09-23fixed up all the warning dealing ..note and ..warnmichr
added a hide toc for glossary to prevent warnings
2011-08-28clean up inappropriate discussions of ZCMLChris McDonough
2011-08-22- Use [app:main] instead of a pipeline in all scaffolds and tutorialsChris McDonough
and narrative docs. - Break out awkward description of PasteDeploy entry points from project chapter into its own Paste chapter.
2011-07-30Updated 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 toChris McDonough
use ``/projects/pyramid/current`` rather than ``/projects/pyramid/dev``.
2011-07-20add more index markersChris McDonough
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-02-25typoChris McDonough
2011-02-05fix conflictsChris McDonough
2011-01-30too-long lineChris McDonough
2011-01-29renderingsChris McDonough
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-27module name contractionsChris McDonough
2011-01-12Changed some references from pylonshq.com to pylonsproject.orgBlaise Laflamme
2011-01-02indirection is hardChris McDonough
2010-12-20BFG_ -> PYRAMID_Jamaludin Ahmad
2010-12-18model->resource; make docs render without warningsChris McDonough
2010-12-18model -> resource; resource -> assetChris McDonough
2010-12-14replace link to pyramid_jinja2 on github with pypi release package linkCasey Duncan
2010-12-14add comma, remove redundant wordCasey Duncan
2010-12-14grammar fixCasey Duncan
2010-12-14minor reword to paragraph describing how to configure mako template renderersCasey Duncan
2010-12-14cause =Casey Duncan
2010-12-14clarify paragraph about passing templates to other templatesCasey Duncan
2010-12-14clarify/simplifyCasey Duncan
2010-12-14add seeCasey Duncan
2010-12-14add commaCasey Duncan
2010-12-14break-up/clarify long sentencesCasey Duncan
2010-12-12clarify note about pyramid automatically providing the request to renderersCasey Duncan
2010-12-12add commaCasey Duncan
2010-12-12rework/clarify opening paragraphCasey Duncan
2010-12-12be a bit more specificCasey Duncan
2010-12-12fix output formattingCasey Duncan
2010-12-12add commaCasey Duncan
2010-12-12clarify paragraph about contructing response objects from templates rendered ↵Casey Duncan
to a string
2010-12-12Add sentence to explain the implications of render_to_response returing a ↵Casey Duncan
response
2010-12-12simplify paragraph a bitCasey Duncan
2010-12-12break long sentenceCasey Duncan
2010-12-12clarify warning about only chameleon supporting relative template pathsCasey Duncan
2010-12-12be specific that sample_view is a function aboveCasey Duncan
2010-12-12minor clarity improvementCasey Duncan
2010-12-12change title wordingCasey Duncan
2010-12-12add commaCasey Duncan
2010-11-28Normalized narrative doc, code with linenos while text+bash don'tBlaise Laflamme
2010-11-28Narrative doc cleanupBlaise Laflamme
2010-11-09- All references to Pyramid-the-application were changed from :mod:`pyramid`Chris McDonough
to :app:`Pyramid`. A custom role setting was added to ``docs/conf.py`` to allow for this. (internal)
2010-11-07Minor documentation fixes.Marius Gedminas