| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2011-04-27 | removed line that will never be executed | cguardia | |
| 2011-04-27 | use __doc__ instead of __text__ for predicate description | cguardia | |
| 2011-04-25 | Merge branch 'master' of https://github.com/Pylons/pyramid | cguardia | |
| 2011-04-25 | revert a5702cd8: oops, it undoes timing attack protection | Philip Jenvey | |
| 2011-04-24 | refactor | Philip Jenvey | |
| 2011-04-25 | Merge branch 'master' of https://github.com/Pylons/pyramid | cguardia | |
| 2011-04-24 | finished paster views command and 100% test coverage | cguardia | |
| 2011-04-24 | fix rendering issue | Chris McDonough | |
| 2011-04-22 | test coverage | Chris McDonough | |
| 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-22 | Merge branch 'disambiguate_add_route' of ↵ | Chris McDonough | |
| https://github.com/mmerickel/pyramid into mmerickel-disambiguate_add_route | |||
| 2011-04-22 | Updated static tests to pass using the add_route deprecations. | Michael Merickel | |
| 2011-04-21 | add changelog entries, fix docs for wsgiapp2 | Chris McDonough | |
| 2011-04-21 | add unit tests for call_app_with_subpath_as_path_info | Chris McDonough | |
| 2011-04-21 | add an integration test for wsgiapp2 | Chris McDonough | |
| 2011-04-21 | name change | Chris McDonough | |
| 2011-04-21 | spellings | Chris McDonough | |
| 2011-04-21 | share call_app_with_subpath_as_path_info between static view and wsgiapp2 | Chris McDonough | |
| 2011-04-21 | fewer tests fail | Chris McDonough | |
| 2011-04-20 | fix scriptname and path_info computation in wsgiapp2 decorator; share code ↵ | Chris McDonough | |
| between static and wsgiapp2 decorator | |||
| 2011-04-20 | Provided a possible fix for StaticURLInfo. | Michael Merickel | |
| 2011-04-20 | Fixed a small bug in the paster template. | Michael Merickel | |
| 2011-04-20 | Converting docs to deprecate view parameters in config.add_route. | Michael Merickel | |
| 2011-04-20 | Fix for issue #164. Disambiguation of add_route(). | Michael Merickel | |
| 2011-04-19 | Merge branch 'master' of git://github.com/Pylons/pyramid | Juliusz Gonera | |
| 2011-04-19 | replacement for torturous_route_re, inner squigglies work again | Juliusz Gonera | |
| 2011-04-18 | appease python gods by converting failIf*/failUnless* to assert* equivalents | Chris McDonough | |
| 2011-04-18 | - Deprecated all assignments to ``request.response_*`` attributes such as | Chris 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-18 | - When visiting a URL that represented a static view which resolved to a | Chris 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-17 | refine; 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-17 | condition coverage | Chris McDonough | |
| 2011-04-17 | add tests for PyramidTemplate | Chris McDonough | |
| 2011-04-17 | condition coverage for the pyramid.static module; simplify PackageURLParser, ↵ | Chris McDonough | |
| removing some impossible-to-reach code | |||
| 2011-04-16 | start playing with paster command to show matching views for url | cguardia | |
| 2011-04-15 | condition coverage for pyramid.i18n | Chris McDonough | |
| 2011-04-15 | better docstring | Chris McDonough | |
| 2011-04-15 | 100% condition coverage for pyramid.encode | Chris McDonough | |
| 2011-04-15 | condition coverage for pyramid.config | Chris McDonough | |
| 2011-04-14 | condition coverage for asset module | Chris McDonough | |
| 2011-04-13 | - Add missing docs reference to | Chris McDonough | |
| ``pyramid.config.Configurator.set_view_mapper`` and refer to it within Hooks chapter section named "Using a View Mapper". | |||
| 2011-04-13 | - Make ``pyramid.interfaces.IAuthenticationPolicy`` and | Chris McDonough | |
| ``pyramid.interfaces.IAuthorizationPolicy`` public interfaces, and refer to them within the ``pyramid.authentication`` and ``pyramid.authorization`` API docs. - Render the function definitions for each exposed interface in ``pyramid.interfaces``. Closes #167. | |||
| 2011-04-13 | condition coverage and simplify 'get_spec' method of chameleonlookup | Chris McDonough | |
| 2011-04-12 | extend test | Chris McDonough | |
| 2011-04-12 | condition coverage | Chris McDonough | |
| 2011-04-12 | add test for mimetypes initialization import-time side-effect callable | Chris McDonough | |
| 2011-04-11 | condition coverage for authorization module | Chris McDonough | |
| 2011-04-11 | Updated auth api docs to use the term principals instead of groups. | Michael Merickel | |
| 2011-04-11 | 100% condition coverage of authentication module | Chris McDonough | |
| 2011-04-11 | - Don't explicitly prevent the ``timeout`` from being lower than the | Chris McDonough | |
| ``reissue_time`` when setting up an ``AuthTktAuthenticationPolicy`` (previously such a configuration would raise a ``ValueError``, now it's allowed, although typically nonsensical). Allowing the nonsensical configuration made the code more understandable and required fewer tests. - Add a test for when the auth_tkt value is empty. | |||
| 2011-04-10 | - It is now possible to get information about why Pyramid raised a Forbidden | Chris McDonough | |
| exception from within an exception view. The ``ACLDenied`` object returned by the ``permits`` method of each stock authorization policy (``pyramid.interfaces.IAuthorizationPolicy.permits``) is now attached to the Forbidden exception as its ``result`` attribute. Therefore, if you've created a Forbidden exception view, you can see the ACE, ACL, permission, and principals involved in the request as eg. ``context.result.permission``, ``context.result.acl``, etc within the logic of the Forbidden exception view. | |||
