summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2011-07-21- Added the ``pyramid.renderers.null_renderer`` object as an API. The nullChris McDonough
renderer is an object that can be used in advanced integration cases as input to the view configuration ``renderer=`` argument. When the null renderer is used as a view renderer argument, Pyramid avoids converting the view callable result into a Response object. This is useful if you want to reuse the view configuration and lookup machinery outside the context of its use by the Pyramid router. This feature was added for consumption by the ``pyramid_rpc`` package, which uses view configuration and lookup outside the context of a router in exactly this way. ``pyramid_rpc`` has been broken under 1.1 since 1.1b1; adding it allows us to make it work again.
2011-07-21urllib2 example of creating a request suitable for producing a json bodyChris McDonough
2011-07-20add description of keys and valuesChris McDonough
2011-07-20name noncpython versions we work withChris McDonough
2011-07-20typoChris McDonough
2011-07-20use less awkward languageChris McDonough
2011-07-20- Reordered chapters in narrative section for better new user friendliness.Chris McDonough
- Added more indexing markers to sections in documentation.
2011-07-20add more index markersChris McDonough
2011-07-20use env26Chris McDonough
2011-07-19- Fixed two typos in wiki2 (SQLA + URL Dispatch) tutorial.Chris McDonough
2011-07-19remove process=1 option; see ↵Chris McDonough
http://stackoverflow.com/questions/6703850/cant-get-pyramid-to-work-with-mod-wsgi
2011-07-18prep for 1.1b4Chris McDonough
2011-07-16orderingChris McDonough
2011-07-16- Change paster pviews and paster proutes to use bootstrap.Chris McDonough
2011-07-16mention manual logging configChris McDonough
2011-07-16mention paster pshell using bootstrapChris McDonough
2011-07-16Changed the URL generation example to be more practical.Michael Merickel
2011-07-16Reworked pyramid.scripting. Modified docs and made make_request private.Michael Merickel
Renamed make_request to _make_request to make clear that it's not a private API. p.scripting.prepare now raises an exception if no valid pyramid app can be found to avoid obscure errors later on.
2011-07-16Renamed the 'info' dict to 'env' in scripting.Michael Merickel
2011-07-16gardenMichael Merickel
2011-07-16Mmm, maybe the bad func name was pasted from an emacs bufferCarlos de la Guardia
2011-07-16typo in func nameCarlos de la Guardia
2011-07-16promote bootstrap to major featureChris McDonough
2011-07-16note version reqt; fix dangling refChris McDonough
2011-07-16- Added a section entitled "Writing a Script" to the "Command-Line Pyramid"Chris McDonough
chapter.
2011-07-15remove bogus information about route_name, refer to the right method of ↵Chris McDonough
Configurator when describing global_registries, add http_cache newness warning
2011-07-15prep for 1.1b3Chris McDonough
2011-07-15- get_root2 -> prepareChris McDonough
- change prepare return value to a dict, and return the registry, request, etc - various docs and changelog entries.
2011-07-14Added test coverage for p.paster.bootstrap.Michael Merickel
2011-07-14Added p.paster.bootstrap for handling simple loading of INI files.Michael Merickel
2011-07-14Added p.scripting.get_root2 that doesn't require an app arg.Michael Merickel
2011-07-14Added some docs for make_request and global_registries.Michael Merickel
2011-07-14Edited docs/narr/viewconfig.rst via GitHubAnneGilles
2011-07-14describe what Pyramid doesChris McDonough
2011-07-14we no longer support py24Chris McDonough
2011-07-14mention traversalChris McDonough
2011-07-14note that flask does not use import ordering, but complexity orderingChris McDonough
2011-07-14Sentence was badly structured and also had a word capitalized after a commaCarlos de la Guardia
2011-07-14Removed superfluous 'and'Carlos de la Guardia
2011-07-14corrected typoCarlos de la Guardia
2011-07-14eliminated repeated wordCarlos de la Guardia
2011-07-14typoChris McDonough
2011-07-14promote http_cache to major featureChris McDonough
2011-07-14forgot to change whatsnewChris McDonough
2011-07-14- New API class: ``pyramid.static.static_view``. This supersedes theChris McDonough
deprecated ``pyramid.view.static`` class. ``pyramid.satic.static_view`` by default serves up documents as the result of the request's ``path_info``, attribute rather than it's ``subpath`` attribute (the inverse was true of ``pyramid.view.static``, and still is). ``pyramid.static.static_view`` exposes a ``use_subpath`` flag for use when you don't want the static view to behave like the older deprecated version. - The ``pyramid.view.static`` class has been deprecated in favor of the newer ``pyramid.static.static_view`` class. A deprecation warning is raised when it is used. You should replace it with a reference to ``pyramid.static.static_view`` with the ``use_subpath=True`` argument.
2011-07-13move all paster commands to a separate chapterChris McDonough
2011-07-13prep for 1.1b2Chris McDonough
2011-07-12clarifyChris McDonough
2011-07-12- New environment setting ``PYRAMID_PREVENT_HTTP_CACHE`` and newChris McDonough
configuration file value ``prevent_http_cache``. These are synomymous and allow you to prevent HTTP cache headers from being set by Pyramid's ``http_cache`` machinery globally in a process. see the "Influencing HTTP Caching" section of the "View Configuration" narrative chapter and the detailed documentation for this setting in the "Environment Variables and Configuration Settings" narrative chapter. - New documentation section in View Configuration narrative chapter: "Influencing HTTP Caching".
2011-07-12- The ``pyramid_routesalchemy`` and ``pyramid_alchemy`` scaffoldsChris McDonough
inappropriately used ``DBSession.rollback()`` instead of ``transaction.abort()`` in one place. - Wiki2 (SQLAlchemy + URL Dispatch) tutorial ``models.initialize_sql`` didn't match the ``pyramid_routesalchemy`` scaffold function of the same name; it didn't get synchronized when it was changed in the scaffold.