| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-10-26 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2012-10-26 | prep for 1.4a3 | Chris McDonough | |
| 2012-10-26 | - New ``physical_path`` view predicate. If specified, this value should be a | Chris McDonough | |
| string or a tuple representing the physical traversal path of the context found via traversal for this predicate to match as true. For example: ``physical_path='/'`` or ``physical_path='/a/b/c'`` or ``physical_path=('', 'a', 'b', 'c')``. This is not a path prefix match or a regex, it's a whole-path match. It's useful when you want to always potentially show a view when some object is traversed to, but you can't be sure about what kind of object it will be, so you can't use the ``context`` predicate. The individual path elements inbetween slash characters or in tuple elements should be the Unicode representation of the name of the resource and should not be encoded in any way. | |||
| 2012-10-18 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2012-10-14 | pypi support for python 3.3 | Michael Merickel | |
| 2012-10-14 | Merge branch 'feature-basic-auth' | Chris McDonough | |
| 2012-10-14 | point at policy | Chris McDonough | |
| 2012-10-14 | Fixes for Python 3. | Chris Rossi | |
| 2012-10-14 | Update change log. | Chris Rossi | |
| 2012-10-14 | Merge branch 'master' into feature-basic-auth | Chris Rossi | |
| 2012-10-14 | Include recipe for issuing challenge. | Chris Rossi | |
| 2012-10-14 | Fix rst syntax error which prevented Sphinx docs from building. | Chris Rossi | |
| 2012-10-14 | Add BasicAuthAuthenticationPolicy to Sphinx documentation. Move ↵ | Chris Rossi | |
| Repoze1AuthenticationPolicy lower in the list. | |||
| 2012-10-13 | Merge branch '1.4-branch' | Chris McDonough | |
| 2012-10-13 | mention comments | Chris McDonough | |
| 2012-10-13 | Merge branch '1.4-branch' | Chris McDonough | |
| 2012-10-13 | Merge pull request #706 from mmerickel/feature.scaffold-comments2 | Chris McDonough | |
| updated ini files with links to documentation | |||
| 2012-10-13 | updated ini files with links to documentation | Michael Merickel | |
| 2012-10-13 | Merge branch '1.4-branch' | Chris McDonough | |
| 2012-10-13 | Merge branch 'master' into 1.4-branch | Chris McDonough | |
| 2012-10-13 | Merge branch 'mmerickel-feature.multi-predicates' into 1.4-branch | Chris McDonough | |
| 2012-10-13 | add docs and changelog note | Chris McDonough | |
| 2012-10-13 | Merge pull request #704 from knzm/1.4-branch-fix-doc | Michael Merickel | |
| Fix typo and markup in docs/whatsnew-1.4.rst | |||
| 2012-10-13 | added tests for header predicate and standardized the text property | Michael Merickel | |
| 2012-10-13 | updated request_param and match_param to use as_sorted_tuple | Michael Merickel | |
| 2012-10-13 | collapsed request_param text to match the match_param text format | Michael Merickel | |
| 2012-10-13 | allow request_param predicate to accept a tuple of constraints | Michael Merickel | |
| 2012-10-13 | fix typo and markup | Nozomu Kaneko | |
| 2012-10-12 | Test coverage. | Chris Rossi | |
| 2012-10-12 | Add basic auth authentication policy. | Chris Rossi | |
| 2012-10-12 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2012-10-12 | Fix indentation | Chris McDonough | |
| 2012-10-08 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2012-10-07 | - The Configurator ``testing_securitypolicy`` method now returns the policy | Chris McDonough | |
| object it creates. - The Configurator ``testing_securitypolicy`` method accepts two new arguments: ``remember_result`` and ``forget_result``. If supplied, these values influence the result of the policy's ``remember`` and ``forget`` methods, respectively. - The DummySecurityPolicy created by ``testing_securitypolicy`` now sets a ``forgotten`` value on the policy (the value ``True``) when its ``forget`` method is called. - The DummySecurityPolicy created by ``testing_securitypolicy`` now sets a ``remembered`` value on the policy, which is the value of the ``principal`` argument it's called with when its ``remember`` method is called. | |||
| 2012-10-05 | remove unintended commit | Chris McDonough | |
| 2012-10-05 | garden | Chris McDonough | |
| 2012-10-05 | Merge branch 'fix.templatemacroreg' | Chris McDonough | |
| 2012-10-05 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2012-10-05 | fix caching of template registrations that reference macros | Chris McDonough | |
| 2012-10-04 | Merge pull request #701 from Sapphire64/1.4-branch | Chris McDonough | |
| Updated links to documentation and copyrights year | |||
| 2012-10-04 | Updated links to documentation and copyrights year | Anton Vlasenko | |
| 2012-10-02 | Merge pull request #699 from davidjb/master | Chris McDonough | |
| Clarify documentation for pyramid.session.check_csrf_token function | |||
| 2012-10-03 | Clarify documentation for pyramid.session.check_csrf_token function | David\ Beitey | |
| 2012-09-30 | s/either// | Chris McDonough | |
| 2012-09-30 | An attempt at better behavior when reload cannot restart the controlled ↵ | Chris McDonough | |
| application, see issue #681 | |||
| 2012-09-30 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2012-09-30 | - 1.4a ``pyramid.scripting.prepare`` behaved differently than 1.3 series | Chris McDonough | |
| function of same name. In particular, if passed a request, it would not set the ``registry`` attribute of the request like 1.3 did. A symptom would be that passing a request to ``pyramid.paster.bootstrap`` (which uses the function) that did not have a ``registry`` attribute could assume that the registry would be attached to the request by Pyramid. This assumption could be made in 1.3, but not in 1.4. The assumption can now be made in 1.4 too (a registry is attached to a request passed to bootstrap or prepare). | |||
| 2012-09-28 | Remove duplicate word | Carlos de la Guardia | |
| 2012-09-27 | Merge branch '1.4-branch' | Chris McDonough | |
| 2012-09-27 | prep for 1.4a2 | Chris McDonough | |
