summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-04-22- Make sure deprecation warnings aren't raised when tests are run.Chris McDonough
- Modify documentation for cross-referencing. - Use add_view(viewname) syntax rather than add_view(view=viewname) syntax for normalization. - Use warnings.warn rather than zope.deprecated in order to make testing easier. - Move tests which test deprecated methods of configurator to a separate test case.
2011-04-22Merge branch 'disambiguate_add_route' of ↵Chris McDonough
https://github.com/mmerickel/pyramid into mmerickel-disambiguate_add_route
2011-04-22Updated static tests to pass using the add_route deprecations.Michael Merickel
2011-04-22version bumpChris McDonough
2011-04-22gardenChris McDonough
2011-04-21Merge branch 'scriptname_fixes'Chris McDonough
2011-04-21add changelog entries, fix docs for wsgiapp2Chris McDonough
2011-04-21add unit tests for call_app_with_subpath_as_path_infoChris McDonough
2011-04-21add an integration test for wsgiapp2Chris McDonough
2011-04-21name changeChris McDonough
2011-04-21spellingsChris McDonough
2011-04-21share call_app_with_subpath_as_path_info between static view and wsgiapp2Chris McDonough
2011-04-21add 'adding a custom settings'Chris McDonough
2011-04-21fewer tests failChris McDonough
2011-04-20fix scriptname and path_info computation in wsgiapp2 decorator; share code ↵Chris McDonough
between static and wsgiapp2 decorator
2011-04-20Provided a possible fix for StaticURLInfo.Michael Merickel
2011-04-20Fixed a small bug in the paster template.Michael Merickel
2011-04-20Upgraded the url dispatch tutorials to use add_view.Michael Merickel
2011-04-20Converting docs to deprecate view parameters in config.add_route.Michael Merickel
2011-04-20Fix for issue #164. Disambiguation of add_route().Michael Merickel
2011-04-19Merge branch 'jgonera-master'Chris McDonough
2011-04-19Merge branch 'master' of https://github.com/jgonera/pyramid into jgonera-masterChris McDonough
2011-04-19renderingChris McDonough
2011-04-19Merge branch 'master' of git://github.com/Pylons/pyramidJuliusz Gonera
2011-04-19replacement for torturous_route_re, inner squigglies work againJuliusz Gonera
2011-04-19renderingChris McDonough
2011-04-19renderingChris McDonough
2011-04-19readd py2.4 testing (using chameleon 1)Chris McDonough
2011-04-19gardenChris McDonough
2011-04-19gardenChris McDonough
2011-04-19clarifyChris McDonough
2011-04-19clarifyChris McDonough
2011-04-18appease python gods by converting failIf*/failUnless* to assert* equivalentsChris McDonough
2011-04-18merge requestresponse section into various changes subsectionsChris McDonough
2011-04-18Merge branch 'requestresponse'Chris McDonough
2011-04-18Fix parens.Chris McDonough
2011-04-18- Pyramid now depends on WebOb >= 1.0.2 (tests depend on the bugfix in thatChris McDonough
release: "Fix handling of WSGI environs with missing ``SCRIPT_NAME``"). (Note that in reality, everyone should probably be using 1.0.4 or better though, as WebOb 1.0.2 and 1.0.3 were effectively brownbag releases.)
2011-04-18garden change messageChris McDonough
2011-04-18- Deprecated all assignments to ``request.response_*`` attributes such asChris McDonough
``request.response_content_type = 'foo'``. Assignments and mutations of the following request attributes that were considered by the framework for response influence are now deprecated: ``response_content_type``, ``response_headerlist``, ``response_status``, ``response_charset``, and ``response_cache_for``. Instead of assigning these to the request object for detection by the rendering machinery, users should use the appropriate API of the Response object created by accessing ``request.response`` (e.g. ``request.response_content_type = 'abc'`` -> ``request.response.content_type = 'abc'``). - Custom request objects are now required to have a ``response`` attribute (or reified property) if they are meant to be used with renderers. This ``response`` attribute should be an instance of the class ``pyramid.response.Response``. - The JSON and string renderer factories now use ``request.response.content_type`` rather than ``request.response_content_type``. They determine whether they should set the content type of the response by comparing the response's content type against the default (usually ``text/html``); if the content type is not the default, the renderer changes the content type (to ``application/json`` or ``text/plain`` for JSON and string renderers respectively). - Made it possible to assign to and delete ``pyramid.testing.DummyRequest.registry`` (bugfix).
2011-04-18gardenChris McDonough
2011-04-18gardenChris McDonough
2011-04-18Merge branch 'master' of github.com:Pylons/pyramidChris McDonough
2011-04-18fix conflictChris McDonough
2011-04-18Merge branch 'master' of https://github.com/jgonera/pyramid into jgonera-masterChris McDonough
2011-04-18- When visiting a URL that represented a static view which resolved to aChris McDonough
subdirectory, the ``index.html`` of that subdirectory would not be served properly. Instead, a redirect to ``/subdir`` would be issued. This has been fixed, and now visiting a subdirectory that contains an ``index.html`` within a static view returns the index.html properly. See also https://github.com/Pylons/pyramid/issues/67. - Redirects issued by a static view did not take into account any existing ``SCRIPT_NAME`` (such as one set by a url mapping composite). Now they do. Closes #67.
2011-04-18added myself to CONTRIBUTORS.txt to show that I know how to use git and ↵Juliusz Gonera
github (GSoC) ;)
2011-04-17Merge branch 'mmerickel-fix_api_docs'Chris McDonough
2011-04-17refine; it really is a special kind of principal and it would not be correct ↵Chris McDonough
to say 'no principals' (the userid is a principal id itself)
2011-04-17condition coverageChris McDonough
2011-04-17add tests for PyramidTemplateChris McDonough