summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-03-09add options support to view deriversMichael Merickel
exposed a new IViewDeriver api with an optional ``options`` list to expose support for new kwargs that may be passed to config.add_view
2016-03-09expect deriversMichael Merickel
it was a bug to try ``[].sorted()`` if no derivers, so just expect some for now as the fallback was unused
2016-03-09pass the predicate options to the deriversMichael Merickel
2016-03-09rename view derivations to view deriversMichael Merickel
2016-03-08rename info.orig_view to info.original_viewMichael Merickel
2016-03-08add new deriver option ``context``Michael Merickel
2016-03-08remove order and phash from deriver optionsMichael Merickel
the order and phash are not technically options and are only passed to make the predicated deriver work which is only a deriver as an implementation detail
2016-03-08rename wrapper_viewname and viewname to wrapper and name in deriver optionsMichael Merickel
2016-03-04Merge pull request #2397 from mmerickel/feature/configurable-view-deriver-tweaksBert JW Regeer
configurable view deriver tweaks
2016-03-04define deriver api as (view, info) using IViewDeriverInfoMichael Merickel
- drop the concept of default values from view derivers (we'll later bring this back with add_view_option(name, default=..) - define a new IViewDeriverInfo (mirroring IRendererInfo) which has attributes on it like the predicate list, registry and dictionary of options - define new deriver api as (view, info)
2016-02-21Merge branch 'master' into feature/configurable-view-deriverBert JW Regeer
2016-02-21Merge pull request #2358 from stevepiercy/masterSteve Piercy
fix links for babel and chameleon
2016-02-20fix links for babel and chameleonSteve Piercy
2016-02-16Merge pull request #2353 from stevepiercy/masterSteve Piercy
minor grammar and punctuation through "wrapping up"
2016-02-16minor grammar and punctuation through "wrapping up"Steve Piercy
2016-02-14Revert "Use lexer name compatible w/ Pygments 1.5."Tres Seaver
This reverts commit eee002a2b0b010834a2ebede550329dbea3b3732.
2016-02-14Use lexer name compatible w/ Pygments 1.5.Tres Seaver
Attempt to fix Jenkins build failures such as: http://jenkins.pylonsproject.org/job/pyramid/1992/console.
2016-02-14Merge pull request #2350 from stevepiercy/masterSteve Piercy
minor grammar and punctuation through "Explicitly WSGI"
2016-02-14minor grammar and punctuation through "Explicitly WSGI"Steve Piercy
2016-02-12Merge pull request #2347 from stevepiercy/masterSteve Piercy
minor grammar and punctuation through "thread locals are a nuisance"
2016-02-12minor grammar and punctuation through "thread locals are a nuisance"Steve Piercy
2016-02-11Merge pull request #2344 from stevepiercy/masterSteve Piercy
minor grammar and punctuation through "routes need relative ordering"
2016-02-10minor grammar and punctuation through "routes need relative ordering"Steve Piercy
2016-02-07fix pyramid_tm urlMichael Merickel
2016-02-07Merge pull request #2339 from stevepiercy/masterSteve Piercy
minor grammar and punctuation through "import-time side-effects are e…
2016-02-07minor grammar and punctuation through "import-time side-effects are evil"Steve Piercy
2016-02-06Merge pull request #2336 from stevepiercy/masterSteve Piercy
minor grammar and punctuation
2016-02-06minor grammar and punctuationSteve Piercy
2016-02-03Merge pull request #2331 from stevepiercy/masterSteve Piercy
each step is for every release, unless explicitly stated as "major re…
2016-02-03each step is for every release, unless explicitly stated as "major release only"Steve Piercy
2016-02-02Merge pull request #2329 from Pylons/deprecate/pservelogfileMichael Merickel
Deprecate --log-file from pserve
2016-02-02Deprecate --log-fileBert JW Regeer
As we remove the daemonisation code, we want to also deprecate features that only make sense when you are running as a deamon. Logging to a file currently does not allow log rotation for example, and really logging should be done external to pserve
2016-02-01Merge pull request #2324 from stevepiercy/masterSteve Piercy
minor grammar, "simpler traversal machinery"
2016-02-01minor grammar, "simpler traversal machinery"Steve Piercy
2016-01-30Merge pull request #2321 from stevepiercy/masterSteve Piercy
add instructions for enabling pylons_sphinx_latesturl on previously r…
2016-01-30add instructions for enabling pylons_sphinx_latesturl on previously released ↵Steve Piercy
branch when making a new major release
2016-01-30Merge pull request #2314 from stevepiercy/masterSteve Piercy
clean up principal and userid glossary entries for grammar, rst syntax
2016-01-30clean up principal and userid glossary entries for grammar, rst syntaxSteve Piercy
2016-01-30Merge pull request #2313 from stevepiercy/masterSteve Piercy
fix heading under/overlines for rst syntax
2016-01-30fix heading under/overlines for rst syntaxSteve Piercy
(cherry picked from commit 60b74ee)
2016-01-29Merge pull request #2307 from stevepiercy/masterSteve Piercy
add update docs/conf.py for RELEASING.txt
2016-01-29update instructions for major release in conf.py html_theme_optionsSteve Piercy
2016-01-29add update docs/conf.py for RELEASING.txtSteve Piercy
2016-01-29Merge pull request #2302 from stevepiercy/masterSteve Piercy
minor grammar fixes, rewrap to 79 columns, in section "Pyramid uses i…
2016-01-29minor grammar fixes, rewrap to 79 columns, in section "Pyramid uses its own ↵Steve Piercy
HTTP exception class hierarchy"
2016-01-27Merge pull request #2293 from hyperknot/patch-1Steve Piercy
check_csrf vs. csrf_token in view_config docs
2016-01-27Merge pull request #2298 from mmerickel/fix/2294Bert JW Regeer
ensure csrf tokens are compared as bytes
2016-01-27convert csrf tokens to bytes prior to string compareMichael Merickel
2016-01-27set DummySession to use unicode csrf token by default like ↵Michael Merickel
SignedCookieSessionFactory
2016-01-27add test to reproduce #2294Michael Merickel