summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-10-02Merge pull request #2783 from goodwillcoding/pcreate_specify_project_nameBert JW Regeer
Add --package-name option to pcreate.
2016-10-02update pcreate --package-name help with better verbiage whichgoodwillcoding
more explicitly states that package name is assumed to be safe
2016-10-02Add --package-name option to pcreate. This solves the problemgoodwillcoding
of scaffold creating an existing directory where the package created should not be named after the base folder. For example if I am in I run pcreate in ~/code/trypyramid.com and would like to create package called tpc this is currently impossible. This solves the issues by allowing me to specify the package name on the command line
2016-09-29Merge pull request #2776 from stevepiercy/masterSteve Piercy
Clean up docstrings/narr docs from PR #2660
2016-09-29two spaces should be oneSteve Piercy
2016-09-29Clean up docstrings/narr docs from PR #2660Steve Piercy
- Closes #2768
2016-09-28Merge pull request #2775 from mmerickel/pcreate-interactive-defaultMichael Merickel
make --interactive the default for pcreate
2016-09-28add changelog for #2775Michael Merickel
2016-09-28make --interactive the default for pcreateMichael Merickel
2016-09-28add changelog for #2660Michael Merickel
2016-09-28Merge branch 'exception_only'Michael Merickel
2016-09-28Merge branch 'master' into exception_onlyMichael Merickel
2016-09-28derive exception views separately from normal viewsMichael 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-26Merge pull request #2773 from stevepiercy/masterSteve Piercy
Revise Why use venv/bin/pip instead of source bin/activate then pip?
2016-09-26Revise Why use venv/bin/pip instead of source bin/activate then pip?Steve Piercy
- Closes #2610
2016-09-25clarify what changed in 1.6 with ``config.add_notfound_view``Michael Merickel
2016-09-25Merge pull request #2772 from stevepiercy/masterSteve Piercy
Why use venv/bin/pip instead of source bin/activate then pip?
2016-09-24Why use venv/bin/pip instead of source bin/activate then pip?Steve Piercy
- Closes #2610
2016-09-19changelog for #2750Michael Merickel
2016-09-19Merge branch 'pr/2750'Michael Merickel
2016-09-19clarify #2750 a bit furtherMichael Merickel
2016-09-12changelog for #2764Michael Merickel
2016-09-12Merge branch 'fix/1549'Michael Merickel
2016-09-12document more clearly the ``__call__`` method on route and view predicatesMichael Merickel
fixes #1549
2016-09-12Merge pull request #2759 from mmerickel/drop-py33Michael Merickel
drop support for python 3.3 and error on 2.6
2016-09-05Merge pull request #2761 from mmerickel/feature/default-tweensMichael Merickel
refactor tween initialization to occur at config-time
2016-09-04refactor tween initialization to occur at config-timeMichael Merickel
previously the EXCVIEW tween was only created in the router OR when another tween is added. Now the EXCVIEW tween is just added at startup similar to how view derivers and many other things operate.
2016-09-03update docs to support the bootstrap context manager from #2760Michael Merickel
2016-09-03changelog for #2760Michael Merickel
2016-09-03Merge branch 'feature/with-bootstrap'Michael Merickel
2016-09-03changelog for #2757Michael Merickel
2016-09-03Merge branch 'fix/reentrant-deferred-discriminators'Michael Merickel
2016-09-03allow prepare/bootstrap to be used as a context managerMichael Merickel
closes #1822
2016-09-01Merge pull request #3 from stevepiercy/mmerickel-drop-py33Michael Merickel
clean up HACKING and RELEASING for 1.8
2016-09-01One more for 2.6Steve Piercy
2016-09-01clean up HACKING and RELEASING for 1.8Steve Piercy
2016-09-01drop support for python 3.3 and error on 2.6Michael Merickel
closes #2476
2016-08-31reference pull request for #2662Michael Merickel
2016-08-31Merge branch 'canni-extract_http_basic'Michael Merickel
2016-08-31rename the credentials classMichael Merickel
2016-08-31Merge branch 'extract_http_basic' of canni/pyramid into canni-extract_http_basicMichael Merickel
2016-08-31ref the pull request for #2615 in the changelogMichael Merickel
2016-08-31silence the warning generated by #2715 in the test suiteMichael Merickel
2016-08-31add changelog for #2715Michael Merickel
2016-08-31Merge pull request #2715 from Pylons/bugfix/authtkt_bad_cookieMichael Merickel
Fix AuthTktCookieHelper so that it doesn't create bad cookies
2016-08-31add changelog for #2714Michael Merickel
2016-08-31Merge pull request #2714 from Pylons/bugfix/proutes_re_splitMichael Merickel
re.split() requires non-empty match
2016-08-31re-enable support for resolving conflicts across ordersMichael Merickel
This feature was silently dropped in Pyramid 1.4 when deferred discriminators were added. It is re-introduced such that it's possible to override an action in order X by defining an action in order Y where Y <= X with a non-conflicting includepath. This also takes special care to avoid undeferring the discriminator for an action until the execution engine is ready to start executing actions of the same order. This gives time for required actions to execute prior, allowing the discriminator to depend on earlier actions. fixes #2697
2016-08-31add extra tests for testing action discriminators across ordersMichael Merickel
2016-08-31add test cases to reproduce #2697Michael Merickel