summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-11-14Annotate skipped flake8 rules.Tres Seaver
2016-11-14Silence pip spew.Tres Seaver
2016-11-14Fix spelling of 'skip_missing_interpreters' option.Tres Seaver
See: http://tox.readthedocs.io/en/latest/config.html#confval-skip_missing_interpreters=BOOL
2016-11-14Merge pull request #2815 from stevepiercy/masterSteve Piercy
should be loaded from the virtualenv
2016-11-14should be loaded from the virtualenvOladipo Odumosu
(cherry picked from commit 2552d88)
2016-11-01switch to 3.6-dev for py36 and update nightly to py37 on travisMichael Merickel
2016-11-01Merge pull request #2802 from mmerickel/py27-appveyorMichael Merickel
enable py27 on appveyor ci
2016-11-01enable py27 on appveyor ciMichael Merickel
2016-10-22Merge pull request #2799 from stevepiercy/masterSteve Piercy
remove trailing comma on tox command
2016-10-22remove trailing comma on tox commandSteve Piercy
2016-10-22remove trailing comma on tox commandSteve Piercy
2016-10-17Merge pull request #2778 from mmerickel/per-request-csrfMichael Merickel
add a callback hook to set_default_csrf_options for disabling checks …
2016-10-17changelog for #2797Michael Merickel
2016-10-17Merge pull request #2797 from mmerickel/threadlocal-importsMichael Merickel
fix pserve to work with gevent workers
2016-10-14fix pserve to work with gevent workersMichael Merickel
- refactored code to remove ``pyramid.threadlocal`` from pserve's import tree. It was coming from the ``pyramid.paster`` module which imports ``pyramid.scripting`` which imports ``pyramid.threadlocal``. - dropped ``pyramid.scripts.common.logging_file_config`` as it appears to be unused and almost identical to ``setup_logging`` except without ``global_conf`` support.
2016-10-10Merge pull request #2793 from multani/masterSteve Piercy
doc: fix typo
2016-10-10doc: fix typoJonathan Ballet
2016-10-06Merge pull request #2792 from stevepiercy/masterSteve Piercy
Add pyramid_nacl_session to session factories
2016-10-06Update changes with pyramid_nacl_sessionSteve Piercy
2016-10-06Add pyramid_nacl_session to session factoriesSteve Piercy
- closes #2791
2016-10-04Merge pull request #2790 from stevepiercy/masterSteve Piercy
Minor grammar fixes to pcreate --package-name help
2016-10-04Merge remote-tracking branch 'upstream/master'Steve Piercy
2016-10-03Merge pull request #2784 from bertjwregeer/bugfix/dont_assume_charsetMichael Merickel
All of the tests for prequest assume that there is a Content-Type set
2016-10-03Minor grammar fixes to pcreate --package-name helpSteve Piercy
2016-10-03Merge pull request #2787 from stevepiercy/masterSteve Piercy
Update changes for #2782
2016-10-03Update changes for #2782Steve Piercy
2016-10-03Merge pull request #2782 from stevepiercy/masterSteve Piercy
update HACKING.txt
2016-10-03Update HACKING.txt for running individual testsSteve Piercy
- nose-selecttests is optional, not pre-installed - Closes #2781
2016-10-03per @mmerickel comment ↵Steve Piercy
https://github.com/Pylons/pyramid/pull/2782#pullrequestreview-2456763
2016-10-02All of the tests assume that there is a Content-Type setBert JW Regeer
But the application in this case doesn't actually send a Content-Type, and thus there is no charset, and thus the tests should be assuming the output is binary not text. Add a Content-Type to be sent back from the app. This is required to pass all tests on WebOb >1.7 where Request.get_response(app) will no longer add the default_content_type if a headerlist is passed in to Response.__init__, this allows the Response to match what was provided by the app.
2016-10-02Add CHANGES.txt for #2783Bert JW Regeer
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-10-02update HACKING.txtSteve Piercy
(somehow this got overlooked back on Apr 14, 2016)
2016-09-30add a callback hook to set_default_csrf_options for disabling checks per-requestMichael Merickel
fixes #2596
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?