| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-05-16 | Merge branch 'pull.1251' | Michael Merickel | |
| 2014-05-16 | close resources and 80-char line width | Michael Merickel | |
| 2014-05-16 | Expand tests - make sure pdf, jpeg types also are not annotated with a charset. | Dobes Vandermeer | |
| 2014-05-16 | Add tests for the content_type fix. | Dobes Vandermeer | |
| 2014-05-16 | Don't incorrectly default charset on FileResponse | dobesv | |
| By passing the content_type into the constructor to Response, we can allow it to decide intelligently whether the default charset should apply. Otherwise we'd have to replicate that logic somehow, or live with weird charset annotations on images, pdfs, and zips. | |||
| 2014-05-16 | fix typo | krysros | |
| 2014-05-07 | Merge branch 'master' of https://github.com/ftravers/pyramid into pull.1325 | Michael Merickel | |
| 2014-05-05 | modify p.testing.setUp() to configure the package relative to caller | Michael Merickel | |
| 2014-05-05 | Order of response_callback in the docstring | flibustenet | |
| 2014-05-01 | fix #1253 | Michael Merickel | |
| 2014-04-29 | require ISession.invalidate to leave behind a usable session | Michael Merickel | |
| 2014-04-27 | Update static.py | Roy Hyunjin Han | |
| 2014-04-27 | Replaced five minutes with one hour | Roy Hyunjin Han | |
| 2014-04-24 | Replaced non-ascii copyright character with HTML equivalent. | Fenton Travers | |
| 2014-04-24 | The copyright symbol causes this error: | Fenton Travers | |
| UnicodeDecodeError: 'ascii' codec can't decode byte 0xc2 in position 2559: ordinal not in range(128) | |||
| 2014-04-23 | remove redundant tests | Michael Merickel | |
| 2014-04-22 | Verify that wrapped is not None | Bert JW Regeer | |
| If wrapped is None we raise a ValueError to let the user know that we are unable to continue. | |||
| 2014-04-20 | add correct handling for dev docs which now points to 'master' docs | goodwillcoding | |
| 2014-04-20 | remove special case for dev branches | Michael Merickel | |
| the way pyramid's RTD works is that doc changes are rendered automatically on each release branch, so dev versions should actually point at their parent branch for the most up-to-date docs | |||
| 2014-04-20 | update the version detection to use better regex matching for version | goodwillcoding | |
| and add more test cases | |||
| 2014-04-20 | refine language some more to say 'Pyramid' less | goodwillcoding | |
| 2014-04-20 | standardize on scaffold over template naming | goodwillcoding | |
| 2014-04-20 | clean up the language to say "Generated by" | goodwillcoding | |
| 2014-04-19 | Merge branch 'master' of github.com:Pylons/pyramid into scaffold_version | goodwillcoding | |
| 2014-04-19 | Move the docs and pyramid version to scaffold template generation and | goodwillcoding | |
| out of the views. Add pyramid docs version to all the .ini file scaffolds Update alchemy, zodb, and starter to have respective names | |||
| 2014-04-18 | _add_subscriber should resolve dotted names | Bert JW Regeer | |
| 2014-04-16 | update the alchemy template to use pyramid version and doc version | Michael R | |
| 2014-04-16 | add pyramid version and pyramid docs branch to the scaffold generation | Michael R | |
| machinery so it is available in scaffold templates, this will help generate proper links in scaffolds and not confiuse people when they go to documentation | |||
| 2014-04-08 | no idea how this ever worked without pyramid being installed into the python ↵ | Chris McDonough | |
| being used to run the tests first | |||
| 2014-04-08 | Drop setup.cfg from scaffolds | Wichert Akkerman | |
| Since setup.cfg is no longer needed for Babel, and no scaffold or documentation references nose there is no need to keep them. | |||
| 2014-04-08 | Remove Babel from all setup.cfg files | Wichert Akkerman | |
| 2014-04-08 | Update documentation for Lingua 2 | Wichert Akkerman | |
| 2014-04-08 | fix merge conflict while merging master to 1.5 branch | Chris McDonough | |
| 2014-03-11 | test_unicode_in_url_404: Add comment to clarify why request_path_unicode | Marc Abramowitz | |
| is expected to be in res.txt | |||
| 2014-03-11 | Convert from u prefix to byte string and decode | Marc Abramowitz | |
| because the u prefix is not supported in Python 3.2 | |||
| 2014-03-11 | Remove 'b'; WebTest or WebOb doesn't like Python 3 bytes for URLs | Marc Abramowitz | |
| 2014-03-10 | Add integration tests for Unicode in URL | Marc Abramowitz | |
| 2014-03-05 | 'request_method' is *not* limited to the named set. | Tres Seaver | |
| 2014-03-04 | update inconsistent effective_principals docs | Michael Merickel | |
| fixes #1196 | |||
| 2014-03-03 | Hand RepozeWho1AuthenticationPolicy.remember kwargs to repoze.who #1249 | Robert Buchholz | |
| Documentation for pyramid.security.remember supports keyword arguments to hand over to the authentication policy. However, when using RepozeWho1AuthenticationPolicy, all of the kw were dropped in remember. It is my understanding that with repoze.who, additional configuration parameters shall be stored in the identity dictionary. In our case, setting the max_age parameter to the authtkt identifier, would be done using an identity {'repoze.who.userid':principal, 'max_age': 23}. It seems sensible just to hand over kw through the identity dictionary and all users to specify max_age or other parameters such as userdata. | |||
| 2014-03-03 | Hand RepozeWho1AuthenticationPolicy.remember kwargs to repoze.who #1249 | Robert Buchholz | |
| Documentation for pyramid.security.remember supports keyword arguments to hand over to the authentication policy. However, when using RepozeWho1AuthenticationPolicy, all of the kw were dropped in remember. It is my understanding that with repoze.who, additional configuration parameters shall be stored in the identity dictionary. In our case, setting the max_age parameter to the authtkt identifier, would be done using an identity {'repoze.who.userid':principal, 'max_age': 23}. It seems sensible just to hand over kw through the identity dictionary and all users to specify max_age or other parameters such as userdata. | |||
| 2014-02-27 | handle reissue_time=None properly | Michael Merickel | |
| 2014-02-27 | reproduce reissue_time=None bug | Michael Merickel | |
| 2014-02-27 | fix timeout=None bug as well as some other potential unpacking problems | Michael Merickel | |
| 2014-02-27 | reproduce timeout=None bug | Michael Merickel | |
| 2014-02-27 | 79-char line widths! | Michael Merickel | |
| 2014-02-27 | improve timeout docs | Michael Merickel | |
| 2014-02-27 | Remove reference to request.get_logout_headers() | dobesv | |
| 2014-02-27 | Add get_logout_headers to request | dobesv | |
| The documentation for forget() says it is deprecated and to use get_logout_headers() on the request instead. However, no such method has been added to the request. | |||
| 2014-02-21 | fix regression with code expecting secrets to be encoded with latin-1 | Michael Merickel | |
