diff options
| author | Chris McDonough <chrism@plope.com> | 2011-04-21 23:43:07 -0400 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2011-04-21 23:43:07 -0400 |
| commit | 990efe90b5296f4f3d140b5a5fad9cf89834c47b (patch) | |
| tree | 2f12f9cdacf4237b347be53cc93a0544e1ebae4c /CHANGES.txt | |
| parent | f6799bbb6e9aca55f344f5d7f49f8fcb7af13db4 (diff) | |
| parent | ba0a5f88d916d97fe52540a535b8b5520815201a (diff) | |
| download | pyramid-990efe90b5296f4f3d140b5a5fad9cf89834c47b.tar.gz pyramid-990efe90b5296f4f3d140b5a5fad9cf89834c47b.tar.bz2 pyramid-990efe90b5296f4f3d140b5a5fad9cf89834c47b.zip | |
Merge branch 'scriptname_fixes'
Diffstat (limited to 'CHANGES.txt')
| -rw-r--r-- | CHANGES.txt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index c3bdd54ef..c0108ff3a 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -140,6 +140,13 @@ Bug Fixes - Redirects issued by a static view did not take into account any existing ``SCRIPT_NAME`` (such as one set by a url mapping composite). Now they do. +- The ``pyramid.wsgi.wsgiapp2`` decorator did not take into account the + ``SCRIPT_NAME`` in the origin request. + +- The ``pyramid.wsgi.wsgiapp2`` decorator effectively only worked when it + decorated a view found via traversal; it ignored the ``PATH_INFO`` that was + part of a url-dispatch-matched view. + Deprecations ------------ @@ -173,6 +180,12 @@ Behavior Changes renderer changes the content type (to ``application/json`` or ``text/plain`` for JSON and string renderers respectively). +- The ``pyramid.wsgi.wsgiapp2`` now uses a slightly different method of + figuring out how to "fix" ``SCRIPT_NAME`` and ``PATH_INFO`` for the + downstream application. As a result, those values may differ slightly from + the perspective of the downstream application (for example, ``SCRIPT_NAME`` + will now never possess a trailing slash). + Dependencies ------------ |
