summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-04-18 00:52:27 -0400
committerChris McDonough <chrism@plope.com>2011-04-18 00:52:27 -0400
commit29a850643aea9452c4f09906505812cb03d7ef5c (patch)
tree74699691b2c21c6e19b58bd0cf4280dc37079596 /CHANGES.txt
parent015296cc9c764f63c7b41427ec2538b5e0f861e0 (diff)
downloadpyramid-29a850643aea9452c4f09906505812cb03d7ef5c.tar.gz
pyramid-29a850643aea9452c4f09906505812cb03d7ef5c.tar.bz2
pyramid-29a850643aea9452c4f09906505812cb03d7ef5c.zip
- When visiting a URL that represented a static view which resolved to a
subdirectory, the ``index.html`` of that subdirectory would not be served properly. Instead, a redirect to ``/subdir`` would be issued. This has been fixed, and now visiting a subdirectory that contains an ``index.html`` within a static view returns the index.html properly. See also https://github.com/Pylons/pyramid/issues/67. - 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. Closes #67.
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 0bd19572a..3ae834d93 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -104,6 +104,16 @@ Bug Fixes
DummyRequest instead of eagerly assigning an attribute.
See also https://github.com/Pylons/pyramid/issues/165
+- When visiting a URL that represented a static view which resolved to a
+ subdirectory, the ``index.html`` of that subdirectory would not be served
+ properly. Instead, a redirect to ``/subdir`` would be issued. This has
+ been fixed, and now visiting a subdirectory that contains an ``index.html``
+ within a static view returns the index.html properly. See also
+ https://github.com/Pylons/pyramid/issues/67.
+
+- 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.
+
1.0 (2011-01-30)
================