| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2016-12-07 | fixed 'list' to 'listen' | Martin | |
| 2016-12-07 | Changed 'host' and 'port' configuration to a new 'listen' style that is now ↵ | Martin | |
| supported by waitress server. | |||
| 2016-12-06 | Revert "Changed 'host' and 'port' configuration to a new 'listen' style that ↵ | Bert JW Regeer | |
| …" | |||
| 2016-12-06 | Merge remote-tracking branch 'upstream/master' into issue-2656 | Martin | |
| 2016-12-06 | Another Sphinx 1.5 configuraition file change. | Mikko Ohtamaa | |
| 2016-12-06 | Fix docs for Sphinx 1.5 | Mikko Ohtamaa | |
| 2016-12-06 | fixing no new line at the end of file | Martin | |
| 2016-12-06 | Changed 'host' and 'port' configuration to a new 'listen' style that is now ↵ | Martin | |
| supported by waitress server. | |||
| 2016-11-26 | add 3.6 support to documentation | Steve Piercy | |
| - See #2835 | |||
| 2016-11-20 | link to documentation on hupper | Michael Merickel | |
| fixes #2806 | |||
| 2016-11-19 | require tuple variants on IResourceURL as well | Michael Merickel | |
| 2016-11-19 | add warnings about how notfound/forbidden views are only invoked for raised ↵ | Michael Merickel | |
| exceptions fixes #1531 | |||
| 2016-11-19 | improve view decorator return type documentation | Michael Merickel | |
| Fixes #2770. | |||
| 2016-11-15 | `pyramid-jinja2` 2.7 configured `setup.py` with test requirements out of the box | Oladipo Odumosu | |
| 2016-11-15 | The updated pyramid-jinja2 scaffold already sets up test requirments in ↵ | Oladipo Odumosu | |
| `setup.py` | |||
| 2016-11-14 | should be loaded from the virtualenv | Oladipo Odumosu | |
| (cherry picked from commit 2552d88) | |||
| 2016-10-06 | Add pyramid_nacl_session to session factories | Steve Piercy | |
| - closes #2791 | |||
| 2016-09-29 | Clean up docstrings/narr docs from PR #2660 | Steve Piercy | |
| - Closes #2768 | |||
| 2016-09-28 | Merge branch 'master' into exception_only | Michael Merickel | |
| 2016-09-28 | derive exception views separately from normal views | Michael Merickel | |
| - previously the multiview was shared for both exception and hot-route, but now that we allow some exception-only views this needed to be separated - add ViewDeriverInfo.exception_only to detect exception views - do not prevent http_cache on exception views - optimize secured_view and csrf_view derivers to remove themselves from the view pipeline for exception views | |||
| 2016-09-26 | Revise Why use venv/bin/pip instead of source bin/activate then pip? | Steve Piercy | |
| - Closes #2610 | |||
| 2016-09-24 | Why use venv/bin/pip instead of source bin/activate then pip? | Steve Piercy | |
| - Closes #2610 | |||
| 2016-09-12 | document more clearly the ``__call__`` method on route and view predicates | Michael Merickel | |
| fixes #1549 | |||
| 2016-09-12 | Merge pull request #2759 from mmerickel/drop-py33 | Michael Merickel | |
| drop support for python 3.3 and error on 2.6 | |||
| 2016-09-03 | update docs to support the bootstrap context manager from #2760 | Michael Merickel | |
| 2016-09-01 | One more for 2.6 | Steve Piercy | |
| 2016-09-01 | drop support for python 3.3 and error on 2.6 | Michael Merickel | |
| closes #2476 | |||
| 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-18 | update output for pcreate --list in Quick Tutorial | Steve Piercy | |
| 2016-08-15 | update output of pcreate --list for Quick Tour | Steve Piercy | |
| 2016-08-10 | Add docs & explict tests | Dariusz Górecki | |
| 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-23 | Add highlighting of changed lines | Steve Piercy | |
| 2016-07-23 | Rewrite Quick Tutorial narrative in authentication.rst for consistent flow | Steve Piercy | |
| 2016-07-21 | Add one-way password hash to security example in Quick Tutorial. | Keith Yang | |
| 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-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 | fix the wiki2 tutorial to set the password as unicode | Michael Merickel | |
| Something really weird is happening but this fixes it. SQLAlchemy is returning the "password_hash" from queries as the type that it was inserted as. Not consistently unicode or bytes. If I insert bytes, then I get bytes back out. If I insert unicode then I get unicode back out. It's unclear why, as the type is Text, the data we're storing is unambiguously US-ASCII and the connection is using a consistent text_factory for unicode conversions of "str" on Python 3. Here, we ensure that we always insert the value as unicode which appears to fix downstream issues like those mentioned in #2605. I was able to reproduce that bug and confirm this fixes it if the original database is initialized using this fix. Obsoletes #2623. | |||
| 2016-07-16 | Fix link to zope.component docs | Steve Piercy | |
| 2016-07-06 | Update links for Alembix | Steve Piercy | |
| 2016-07-05 | Add missing tests to quick_tutorial/forms. | Steve Piercy | |
| - Closes #2673 | |||
| 2016-07-02 | proper case heading | Steve Piercy | |
| 2016-07-02 | fix overly aggressive refactor | Steve Piercy | |
| 2016-07-02 | Update Windows installation instructions and related bits. | Steve Piercy | |
| - Use proper Windows commands, drives, and paths - Use doscon for Windows console lexer | |||
| 2016-06-20 | typo fix within urldispatch narrative, example 2 | dowwie | |
| 2016-06-16 | Quick Tour - explicitly use :language: python directive for proper syntax ↵ | Steve Piercy | |
| highlighting | |||
| 2016-06-16 | Quick Tour - static_assets - closes #2648 | Steve Piercy | |
| - swap contents of jinja2 templates - use __main__ to specify package - carry forward template to json step - use :language: python directive for correct syntax highlighting | |||
