summaryrefslogtreecommitdiff
path: root/pyramid
AgeCommit message (Collapse)Author
2013-08-30squash console output during test runsChris McDonough
2013-08-30dammit, typoChris McDonough
2013-08-30fix httpok docstringChris McDonough
2013-08-30fix docstringsChris McDonough
2013-08-30add HTTPSuccessful base class, allowing HTTPOk to be caught independently; ↵Chris McDonough
closes #986
2013-08-30allow exception view registrations for HTTPException to override default ↵Chris McDonough
exception view; closes #985
2013-08-30unused codeChris McDonough
2013-08-29get rid of remainder_name on route, and just default to passing traverse; ↵Chris McDonough
add route_remainder_name argument to resource_url
2013-08-29fix the regex used by get_remainder_name, add tests for get_remainder_nameChris McDonough
2013-08-29fix nameChris McDonough
2013-08-29documentation for hybrid url generationChris McDonough
2013-08-29resource_url coverageChris McDonough
2013-08-29first cut at hybrid url generation; still needs tests for resource_url logicChris McDonough
2013-08-29make local_name an attribute of Request, move logic from get_localizer into ↵Chris McDonough
Request.localizer, fix docs; closes #1099
2013-08-29- When the ``pyramid.reload_templates`` setting was true, and a ChameleonChris McDonough
template was reloaded, and the renderer specification named a macro (e.g. ``foo#macroname.pt``), renderings of the template after the template was reloaded due to a file change would produce the entire template body instead of just a rendering of the macro. See https://github.com/Pylons/pyramid/issues/1013. Closes #1013
2013-08-28Permit escaping of double braces in scaffolds, see #862Chris McDonough
2013-08-28- The ``route_url`` and ``route_path`` APIs no longer quote ``/``Chris McDonough
to ``%2F`` when a replacement value contains a ``/``. This was pointless, as WSGI servers always unquote the slash anyway, and Pyramid never sees the quoted value.
2013-08-27Merge branch 'master' of github.com:Pylons/pyramidChris McDonough
2013-08-27utilize the tuple form of starts/endswithPhilip Jenvey
2013-08-27- Fix an obscure problem when combining a virtual root with a route with aChris McDonough
``*traverse`` in its pattern. Now the traversal path generated in such a configuration will be correct, instead of an element missing a leading slash.
2013-08-20Merge branch 'feature.external-routes'Chris McDonough
2013-08-20raise ValueError instead of generating just path when _app_url is provided ↵Chris McDonough
to request.route_url and the route has an external pattern
2013-08-19remove mention of unused http status codeMichael Merickel
2013-08-19allow pregenerator and route_prefix with external routesMichael Merickel
2013-08-19Merge branch 'feature.issue611-external-static-routes' of tomster/pyramid ↵Michael Merickel
into feature.external-routes
2013-08-19Fix indentation.Fabian Neumann
2013-08-17Merge branch 'master' of github.com:adroullier/pyramid into adroullier-masterChris McDonough
2013-08-17Oops, indent one level deeper.Fabian Neumann
2013-08-17document the behavior for ``route_path``Tom Lazar
2013-08-17if `_app_url` is given it takes precedenceTom Lazar
2013-08-17assemble a custom pregenerator for static external urlsTom Lazar
we split the pattern via urlparse and pass the parts into the pregenerator such that route_url will behave as expected, mainly by assembling an appropriate value for ``_app_url``
2013-08-17clean up test namesAndreas Zeidler
2013-08-17don't use the default locale when testing custom localizerAndreas Zeidler
also, use an object as a dummy localizer for better readability
2013-08-17remove test that explicitly sets a registry on the requestAndreas Zeidler
outside tests the router puts the registry on the request, but in tests it sometimes needs to exist as well. however, it doesn't make sense to test something that's only done in tests anyway
2013-08-17test a custom localizerAndreas Zeidler
2013-08-17test the default localizerAndreas Zeidler
2013-08-17remove duplicate of `Test_get_locale_name.test_name_on_request`Andreas Zeidler
2013-08-17add ``localizer`` property to the request (refs #508)Andreas Zeidler
2013-08-17copy_dir() recursive overwrite test updatesadroullier
2013-08-17copy_dir() recursive overwrite fixadroullier
2013-08-16unused importsChris McDonough
2013-08-16unused importChris McDonough
2013-08-16rename teststaticappbase to staticappbase so non-nose testrunner (e.g. ↵Chris McDonough
pytest testrunner) wont pick it up as a test, tear down the global registries in a new teardown to avoid globals pollution seen when running under py.test testrunner
2013-08-16remove dead codeChris McDonough
2013-08-15prefer the functionish printPhilip Jenvey
2013-08-15cleanup cherrypy runnerMichael Merickel
2013-08-15Make ``pserve.cherrypy_server_runner`` Python 3 compatible.Tom Lazar
Closes https://github.com/Pylons/pyramid/issues/718
2013-08-15Merge pull request #1078 from wichert/auth-explicit-domainAndreas Zeidler
Allow explicit auth cookie domain setting.
2013-08-15Merge pull request #1072 from wichert/auth-parent-domain-cleanupAndreas Zeidler
No cookies on other domain when using parent_domain
2013-08-14prevent reparenting if no properties are definedMichael Merickel