| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2016-09-01 | clean up HACKING and RELEASING for 1.8 | Steve Piercy | |
| 2016-09-01 | drop support for python 3.3 and error on 2.6 | Michael Merickel | |
| closes #2476 | |||
| 2016-08-31 | reference pull request for #2662 | Michael Merickel | |
| 2016-08-31 | Merge branch 'canni-extract_http_basic' | Michael Merickel | |
| 2016-08-31 | rename the credentials class | Michael Merickel | |
| 2016-08-31 | Merge branch 'extract_http_basic' of canni/pyramid into canni-extract_http_basic | Michael Merickel | |
| 2016-08-31 | ref the pull request for #2615 in the changelog | Michael Merickel | |
| 2016-08-31 | silence the warning generated by #2715 in the test suite | Michael Merickel | |
| 2016-08-31 | add changelog for #2715 | Michael Merickel | |
| 2016-08-31 | Merge pull request #2715 from Pylons/bugfix/authtkt_bad_cookie | Michael Merickel | |
| Fix AuthTktCookieHelper so that it doesn't create bad cookies | |||
| 2016-08-31 | add changelog for #2714 | Michael Merickel | |
| 2016-08-31 | Merge pull request #2714 from Pylons/bugfix/proutes_re_split | Michael Merickel | |
| re.split() requires non-empty match | |||
| 2016-08-20 | Merge pull request #2754 from stevepiercy/master | Steve Piercy | |
| add testing for py36 | |||
| 2016-08-19 | attempt to add testing for py36 | Steve Piercy | |
| 2016-08-19 | attempt to add testing for py36 | Steve Piercy | |
| 2016-08-19 | attempt to add testing for py36 | Steve Piercy | |
| 2016-08-18 | Merge pull request #2752 from stevepiercy/master | Steve Piercy | |
| update output for pcreate --list in Quick Tutorial | |||
| 2016-08-18 | update output for pcreate --list in Quick Tutorial | Steve Piercy | |
| 2016-08-16 | Merge pull request #2745 from mmerickel/fix/2744 | Michael Merickel | |
| revert changes to the renderers from #2706 | |||
| 2016-08-16 | Fix #2744 by reverting #2706 | Michael Merickel | |
| This reverts commit c7d8f6515d4b154c4a4cf2cbaac9789fbcd19282. This reverts commit 0dcd259c0263c14e8c51d9e204c1419daffbd2ce. This reverts commit 412ed2e1988e2fd70d02e4176c9c9c7855b0093c. | |||
| 2016-08-15 | Merge pull request #2742 from stevepiercy/master | Steve Piercy | |
| Fix up URLs to include default language and reduce verbosity | |||
| 2016-08-15 | Fix up URLs to include default language and reduce verbosity | Steve Piercy | |
| (cherry picked from commit d6b2c66) | |||
| 2016-08-15 | Merge pull request #2739 from stevepiercy/master | Steve Piercy | |
| update output of pcreate --list for Quick Tour | |||
| 2016-08-15 | update output of pcreate --list for Quick Tour | Steve Piercy | |
| 2016-08-15 | fix alchemy scaffold help text | Michael Merickel | |
| 2016-08-11 | Add this feature to chenges & small improvement | Dariusz Górecki | |
| 2016-08-10 | Add docs & explict tests | Dariusz Górecki | |
| 2016-08-10 | Merge branch 'master' into extract_http_basic | Dariusz Górecki | |
| 2016-07-30 | Merge pull request #2730 from stevepiercy/master | Steve Piercy | |
| forward port docs fixes from 1.7-branch | |||
| 2016-07-29 | corrected folder name in docs | andrew david burt | |
| one of the instances of the tutorial's folder name was mistyped as "tutorials" rather than "tutorial" in the "Route declarations" section (cherry picked from commit 696f17c) | |||
| 2016-07-29 | remove essentially duplicate "note" section under "initializing the database" | andrew david burt | |
| The note section under "initializing the database" was entered twice, the same except differing verb tenses. I removed one. (cherry picked from commit 96c1e36) | |||
| 2016-07-24 | Merge pull request #2722 from stevepiercy/master | Steve Piercy | |
| Add highlighting of changed lines | |||
| 2016-07-23 | Add highlighting of changed lines | Steve Piercy | |
| 2016-07-23 | Merge pull request #2719 from stevepiercy/master | Steve Piercy | |
| Rewrite Quick Tutorial narrative in authentication.rst for consistent… | |||
| 2016-07-23 | Rewrite Quick Tutorial narrative in authentication.rst for consistent flow | Steve Piercy | |
| 2016-07-21 | Merge pull request #2716 from keitheis/quick_tutorial_hashpw_bcrypt | Steve Piercy | |
| Add one-way password hash to security example in Quick Tutorial. | |||
| 2016-07-22 | Sign CONTRIBUTORS.txt | Keith Yang | |
| 2016-07-21 | Add one-way password hash to security example in Quick Tutorial. | Keith Yang | |
| 2016-07-20 | re.split() requires non-empty match | Bert JW Regeer | |
| Change from a * to a +, so long as there is something to split on, it will split. Fixes this warning: FutureWarning: split() requires a non-empty pattern match. return _compile(pattern, flags).split(string, maxsplit) | |||
| 2016-07-19 | Fix AuthTktCookieHelper so that it doesn't create bad cookies | Bert JW Regeer | |
| The AuthTktCookieHelper when provided a type it didn't knoww what to do with would simply pass it through unchanged, this would lead to things like object() being serialised by just having str() called on it, which may included spaces and other characters that are not allowed in cookie values. WebOb would send a RuntimeWarning: RuntimeWarning: Cookie value contains invalid bytes: (b' '). Future versions will raise ValueError upon encountering invalid bytes. This fix warns the user of the library directly, and makes sure to call str() on the provided userid, AND then encode it as base64. The user won't get back the original object after decoding on a request/response round-trip, but at least no cookies are being generated that are invalid. | |||
| 2016-07-19 | Merge pull request #2711 from inklesspen/nongendered-example-language | Steve Piercy | |
| Change gendered language in examples | |||
| 2016-07-19 | Change gendered language in examples | Jon Davidson | |
| Some examples in documentation use "dude" and "bro" -- for example, "Not found, bro". While playful, this language can make some people uncomfortable. I have changed the wording to something equally playful that doesn't make assumptions about the reader's gender. | |||
| 2016-07-19 | Merge PR #2706: Fix Renderers: JSON is not text | Bert JW Regeer | |
| Closes #2706 | |||
| 2016-07-18 | Merge remote-tracking branch 'upstream/master' into extract_http_basic | Dariusz Górecki | |
| 2016-07-17 | Merge pull request #2710 from stevepiercy/master | Steve Piercy | |
| Fix commands in quick tutorial | |||
| 2016-07-17 | Corrected test command in static_assets.rst | Christian Kollee | |
| (cherry picked from commit 619c4b8) | |||
| 2016-07-17 | Corrected command line for tests | Christian Kollee | |
| (cherry picked from commit df3db24) | |||
| 2016-07-16 | Update CHANGES.txt for #2706 | Bert JW Regeer | |
| 2016-07-16 | Add a test that covers the no charset case | Bert JW Regeer | |
| 2016-07-16 | JSON renderers now return bytes objects | Bert JW Regeer | |
