summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-08-13Require that tween_factory argument to add_tween be a dotted name.Chris McDonough
2011-08-13gardenChris McDonough
2011-08-13- WSGIHTTPException (HTTPFound, HTTPNotFound, etc) now has a new API namedChris McDonough
"prepare" which renders the body and content type when it is provided with a WSGI environ. Required for debug toolbar. - Once ``__call__`` or ``prepare`` is called on a WSGIHTTPException, the body will be set, and subsequent calls to ``__call__`` will always return the same body. Delete the body attribute to rerender the exception body.
2011-08-13disallow adding a tween factory which is an instance without passing its ↵Chris McDonough
globally importable name
2011-08-13gardenChris McDonough
2011-08-13gardenChris McDonough
2011-08-13mention pyramid_exclogChris McDonough
2011-08-13- Added a Logging chapter to the narrative docs (based on the Pylons loggingChris McDonough
docs, thanks Phil).
2011-08-13- Projects created via a scaffold no longer depend on the ``WebError``Chris McDonough
package at all; configuration in the ``production.ini`` file which used to require its ``error_catcher`` middleware has been removed. Configuring error catching / email sending is now the domain of the ``pyramid_exclog`` package (see https://docs.pylonsproject.org/projects/pyramid_exclog/dev/).
2011-08-12gardenChris McDonough
2011-08-12- Pyramid now relies on PasteScript >= 1.7.4. This version contains aChris McDonough
feature important for allowing flexible logging configuration.
2011-08-12reduce awkwardness of phrasingChris McDonough
2011-08-12gardenChris McDonough
2011-08-12Merge branch 'master' of github.com:Pylons/pyramidChris McDonough
2011-08-12Merge branch 'fix.tween-graph'Michael Merickel
2011-08-12Added checks to config.add_tween for over/under ingress/main.Michael Merickel
2011-08-12Updated the docs with the new over/under tuples.Michael Merickel
2011-08-12Added support for specifying tuples in over/under.Michael Merickel
This change means that errors are now raised if no tween is found from either an over or an under specification.
2011-08-12Removed unused ingress_alias_names.Michael Merickel
2011-08-12garden changes; fix docs renderingChris McDonough
2011-08-12add pyramid.tweens configuration value docsChris McDonough
2011-08-11fix docs, scaffolds, and tutorials to use pyramid.includesChris McDonough
2011-08-11add docs for pyramid.includes; allow space-separated or cr separated items ↵Chris McDonough
or both for tweens and includes
2011-08-11Merge branch 'master' of github.com:Pylons/pyramidChris McDonough
2011-08-11Merge branch 'fix.ini-includes'Michael Merickel
2011-08-11Renamed setting 'pyramid.include' -> 'pyramid.includes'.Michael Merickel
2011-08-11gardenMichael Merickel
2011-08-11pyramid_tm->tmChris McDonough
2011-08-11mod->termChris McDonough
2011-08-10gardenChris McDonough
2011-08-10- Added a ``route_prefix`` argument to theChris McDonough
``pyramid.config.Configurator.include`` method. This argument allows you to compose URL dispatch applications together. See the section entitled "Using a Route Prefix to Compose Applications" in the "URL Dispatch" narrative documentation chapter. - Added a section entitled "Using a Route Prefix to Compose Applications" to the "URL Dispatch" narrative documentation chapter.
2011-08-10trunk is 1.2dev, who are we foolingChris McDonough
2011-08-10trunk is 1.2dev, who are we foolingChris McDonough
2011-08-10gardenChris McDonough
2011-08-10Merge branch 'aodag-master'Chris McDonough
2011-08-10fix merge conflictsChris McDonough
2011-08-10clean off exception attr from request tooChris McDonough
2011-08-10reformat codeChris McDonough
2011-08-10better messageChris McDonough
2011-08-10Merge branch 'topotween'Chris McDonough
2011-08-10fill in template holeChris McDonough
2011-08-10remove bogus sortroots; add some more ordering tests; prevent people from ↵Chris McDonough
attempting to add tweens over ingress or under main
2011-08-10 # we override the initializer to avoid calling get_current_registryChris McDonough
# (it will return a reference to the global registry when this # thing is called at module scope; we don't want that).
2011-08-10- Fixed an issue with the default renderer not working at certain times. SeeChris McDonough
https://github.com/Pylons/pyramid/issues/249 Closes #249.
2011-08-10gardenChris McDonough
2011-08-10unused codeChris McDonough
2011-08-10simplify aliasing logic a bit (thanks raydeo)Chris McDonough
2011-08-10add note about NO_PERMISSION_REQUIREDChris McDonough
2011-08-10Merge branch 'master' of github.com:Pylons/pyramidChris McDonough
2011-08-09Merge pull request #250 from mmerickel/feature.no-perm-constChris McDonough
Added the `pyramid.security.NO_PERMISSION_REQUIRED` constant.