summaryrefslogtreecommitdiff
path: root/pyramid
AgeCommit message (Collapse)Author
2013-09-08Remove useless spaces.Bert JW Regeer
2013-09-08Deprecate custom_predicates for add_view/add_routeBert JW Regeer
2013-09-08Update documentation to reflect the dotted python nameBert JW Regeer
2013-09-08Small change to allow predicates to be Python Dotted NamesBert JW Regeer
This allows a {view,route,subscriber} predicate factory to be named as a python dotted name that is then automatically resolved. Includes tests.
2013-09-08fix merge conflictChris McDonough
2013-09-07- The ``pyramid.events.NewResponse`` event is now sent **after** responseChris McDonough
callbacks are executed. It previously executed before response callbacks were executed. Rationale: it's more useful to be able to inspect the response after response callbacks have done their jobs instead of before. Closes #1116.
2013-09-07single line importChris McDonough
2013-09-07unused importsChris McDonough
2013-09-07make the right assertions about this caseChris McDonough
2013-09-07Merge branch 'feature/split_renderers_from_pyramid' of ↵Chris McDonough
github.com:bertjwregeer/pyramid into bertjwregeer-feature/split_renderers_from_pyramid
2013-09-06Merge pull request #1112 from dhellmann/bug/namespace-packagesChris McDonough
Update package_name() to work with namespace pkgs
2013-09-06removed MyModel.__init__ from the scaffoldssergey.volobuev
2013-09-06Remove un-used Dummies: DummyFactory/DummyRendererInfoBert JW Regeer
2013-09-06Add pragma: nocover due to Py3x/Py2x differencesBert JW Regeer
2013-09-06Remove _registerRenderer function from testsBert JW Regeer
It is no longer used, and thus wasn't covered.
2013-09-06Remove useless function that was used only for ChameleonBert JW Regeer
2013-09-06Add test to verify renders don't add response to RequestBert JW Regeer
We already added a test that verified that a renderer no longer mutated request.response, now we also have a test that verifies that if no response exists, then it won't be touched either.
2013-09-06Update package_name() to work with namespace pkgsDoug Hellmann
The logic in pyramid.path.package_name() should take into account the fact that namespace packages created by setuptools do not have __init__.py[c] files, and so they have no __file__ attribute. This resolves an issue with WSME (https://bugs.launchpad.net/wsme/+bug/1221201) Change-Id: I39bc32a9c38fa11c4cef22a041077ed9001091be
2013-09-06update scaffolds to require pyramid_chameleonMichael Merickel
2013-09-05Fix tests on Python 3.xBert JW Regeer
2013-09-05Fix DummyRequest so that response is created each timeBert JW Regeer
Due to only creating the DummyRequest once various mutations were bleeding across various different tests. With hilarious results.
2013-09-05Merge branch 'master' into feature/split_chameleon_from_pyramidBert JW Regeer
Conflicts: pyramid/tests/test_renderers.py
2013-09-05Remove unnecessary try/finallyBert JW Regeer
2013-09-05Re-enable two tests using JSON renderer instead of ChameleonBert JW Regeer
2013-09-05resolve conflicts, reword change entry a bitChris McDonough
2013-09-05Fix remaining tests/remove last traces of ChameleonBert JW Regeer
2013-09-05Remove chameleon templates from fixtureappBert JW Regeer
2013-09-05Remove Chameleon templates from viewdecoratorappBert JW Regeer
2013-09-05Remove Chameleon templatesBert JW Regeer
2013-09-05Replace .txt renderer with JSONBert JW Regeer
Update tests expected results so that they now correctly look for the return value returned from the JSON renderer.
2013-09-05remove the deprecated request.response_* attributesMichael Merickel
2013-09-05update render() to preserve the original response objectMichael Merickel
2013-09-04Remove TestTemplateRenderFactory which is Chameleon onlyBert JW Regeer
2013-09-04Remove Chameleon only fixtures files.Bert JW Regeer
2013-09-04Remove Chameleon specific renderer testsBert JW Regeer
2013-09-04Comment out tests that require ChameleonBert JW Regeer
These tests should be rewritten to use the JSON or string renderer instead.
2013-09-04Remove Chameleon specific support in i18nBert JW Regeer
2013-09-04Remove fixes sub-packageBert JW Regeer
2013-09-04Remove traces of Chameleon from tests/fixersBert JW Regeer
2013-09-04Remove chameleon from default renderers listBert JW Regeer
2013-09-04Remove Chameleon specific interfacesBert JW Regeer
2013-09-04Remove chameleon filesBert JW Regeer
2013-09-04Remove the Chameleon renderer from renderers.pyBert JW Regeer
2013-09-03Remove last references to makoBert JW Regeer
We remove the default addition of .mak/.mako files in the configuration object, and we remove the test to see if it is has been defined as a renderer.
2013-09-03Import mako from the proper location...Bert JW Regeer
2013-09-03Remove mako test specific filesBert JW Regeer
These files now live in the pyramid_mako git repository...
2013-09-03Remove the mako templatingBert JW Regeer
2013-08-30squash console output during test runsChris McDonough
2013-08-30dammit, typoChris McDonough
2013-08-30fix httpok docstringChris McDonough