summaryrefslogtreecommitdiff
path: root/pyramid
AgeCommit message (Collapse)Author
2014-05-16Merge branch 'pull.1251'Michael Merickel
2014-05-16close resources and 80-char line widthMichael Merickel
2014-05-16Expand tests - make sure pdf, jpeg types also are not annotated with a charset.Dobes Vandermeer
2014-05-16Add tests for the content_type fix.Dobes Vandermeer
2014-05-16Don't incorrectly default charset on FileResponsedobesv
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-16fix typokrysros
2014-05-07Merge branch 'master' of https://github.com/ftravers/pyramid into pull.1325Michael Merickel
2014-05-05modify p.testing.setUp() to configure the package relative to callerMichael Merickel
2014-05-05Order of response_callback in the docstringflibustenet
2014-05-01fix #1253Michael Merickel
2014-04-29require ISession.invalidate to leave behind a usable sessionMichael Merickel
2014-04-27Update static.pyRoy Hyunjin Han
2014-04-27Replaced five minutes with one hourRoy Hyunjin Han
2014-04-24Replaced non-ascii copyright character with HTML equivalent.Fenton Travers
2014-04-24The 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-23remove redundant testsMichael Merickel
2014-04-22Verify that wrapped is not NoneBert JW Regeer
If wrapped is None we raise a ValueError to let the user know that we are unable to continue.
2014-04-20add correct handling for dev docs which now points to 'master' docsgoodwillcoding
2014-04-20remove special case for dev branchesMichael 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-20update the version detection to use better regex matching for versiongoodwillcoding
and add more test cases
2014-04-20refine language some more to say 'Pyramid' lessgoodwillcoding
2014-04-20standardize on scaffold over template naminggoodwillcoding
2014-04-20clean up the language to say "Generated by"goodwillcoding
2014-04-19Merge branch 'master' of github.com:Pylons/pyramid into scaffold_versiongoodwillcoding
2014-04-19Move the docs and pyramid version to scaffold template generation andgoodwillcoding
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 namesBert JW Regeer
2014-04-16update the alchemy template to use pyramid version and doc versionMichael R
2014-04-16add pyramid version and pyramid docs branch to the scaffold generationMichael 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-08no idea how this ever worked without pyramid being installed into the python ↵Chris McDonough
being used to run the tests first
2014-04-08Drop setup.cfg from scaffoldsWichert 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-08Remove Babel from all setup.cfg filesWichert Akkerman
2014-04-08Update documentation for Lingua 2Wichert Akkerman
2014-04-08fix merge conflict while merging master to 1.5 branchChris McDonough
2014-03-11test_unicode_in_url_404: Add comment to clarify why request_path_unicodeMarc Abramowitz
is expected to be in res.txt
2014-03-11Convert from u prefix to byte string and decodeMarc Abramowitz
because the u prefix is not supported in Python 3.2
2014-03-11Remove 'b'; WebTest or WebOb doesn't like Python 3 bytes for URLsMarc Abramowitz
2014-03-10Add integration tests for Unicode in URLMarc Abramowitz
2014-03-05'request_method' is *not* limited to the named set.Tres Seaver
2014-03-04update inconsistent effective_principals docsMichael Merickel
fixes #1196
2014-03-03Hand RepozeWho1AuthenticationPolicy.remember kwargs to repoze.who #1249Robert 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-03Hand RepozeWho1AuthenticationPolicy.remember kwargs to repoze.who #1249Robert 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-27handle reissue_time=None properlyMichael Merickel
2014-02-27reproduce reissue_time=None bugMichael Merickel
2014-02-27fix timeout=None bug as well as some other potential unpacking problemsMichael Merickel
2014-02-27reproduce timeout=None bugMichael Merickel
2014-02-2779-char line widths!Michael Merickel
2014-02-27improve timeout docsMichael Merickel
2014-02-27Remove reference to request.get_logout_headers()dobesv
2014-02-27Add get_logout_headers to requestdobesv
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-21fix regression with code expecting secrets to be encoded with latin-1Michael Merickel