summaryrefslogtreecommitdiff
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-21- Add a deprecation warning for non-API functionChris McDonough
``pyramid.renderers.renderer_from_name`` which has seen use in the wild. - Add a ``clone`` method to ``pyramid.renderers.RendererHelper`` for use by the ``pyramid.view.view_config`` decorator.
2011-07-21commentChris McDonough
2011-07-21urllib2 example of creating a request suitable for producing a json bodyChris McDonough
2011-07-21- Remove ``compat`` code that served only the purpose of providing backwardsChris McDonough
compatibility with Python 2.4.
2011-07-20add description of keys and valuesChris McDonough
2011-07-20name noncpython versions we work withChris McDonough
2011-07-20pin coverage for nosexcover+toxChris 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-18remember to pullChris McDonough
2011-07-18Merge branch 'master' of github.com:Pylons/pyramidChris McDonough
2011-07-18prep for 1.1b4Chris McDonough
2011-07-18move import statementChris McDonough
2011-07-17Merge pull request #240 from michr/masterReed O'Brien
fix typo in urls.py :: current_route_url
2011-07-17fix typo in urls.py :: current_route_urlmichr
2011-07-16orderingChris McDonough
2011-07-16gardenChris McDonough
2011-07-16not reusing thisChris McDonough
2011-07-16gardenChris McDonough
2011-07-16- Change paster pviews and paster proutes to use bootstrap.Chris McDonough
2011-07-16mention manual logging configChris McDonough
2011-07-16gardenChris McDonough
2011-07-16mention paster pshell using bootstrapChris McDonough
2011-07-16mention paster pshell using prepareChris McDonough
2011-07-16add note about removing make_requestChris McDonough
2011-07-16Merge branch 'master' of github.com:Pylons/pyramidChris McDonough
2011-07-16Changed the URL generation example to be more practical.Michael Merickel
2011-07-16Added test coverage for 'PShellCommand'.Michael Merickel
2011-07-16Updated 'pshell' to support the new bootstrap api.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-16Modified the order of the WeakOrderedSet to remember the most recent.Michael Merickel
2011-07-16Renamed the 'info' dict to 'env' in scripting.Michael Merickel
2011-07-16gardenMichael Merickel
2011-07-16Merge branch 'master' of github.com:Pylons/pyramidChris McDonough
2011-07-16- Omit custom environ variables when rendering a custom exception template inChris McDonough
``pyramid.httpexceptions.WSGIHTTPException._set_default_attrs``; stringifying thse may trigger code that should not be executed; see https://github.com/Pylons/pyramid/issues/239 Closes #239
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-15add not-for-civilians warningsChris McDonough
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-15typoChris McDonough
2011-07-15note that make_app mutates global_registriesChris McDonough