diff options
| author | Chris McDonough <chrism@plope.com> | 2011-04-19 15:03:39 -0400 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2011-04-19 15:03:39 -0400 |
| commit | bea9f5b1b99fc27ee2a79512d098d688aea9d113 (patch) | |
| tree | 989d8d0aab37d6ee104cbd6baa99bbf363550115 /CHANGES.txt | |
| parent | db51c08cda155ae5d9921c62700ab813f58f5d72 (diff) | |
| parent | f85522aaf475aa6d550ab34f0fe5ab9b018b37fe (diff) | |
| download | pyramid-bea9f5b1b99fc27ee2a79512d098d688aea9d113.tar.gz pyramid-bea9f5b1b99fc27ee2a79512d098d688aea9d113.tar.bz2 pyramid-bea9f5b1b99fc27ee2a79512d098d688aea9d113.zip | |
Merge branch 'jgonera-master'
Diffstat (limited to 'CHANGES.txt')
| -rw-r--r-- | CHANGES.txt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 092423bc1..5f08606be 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -76,6 +76,16 @@ Features Bug Fixes --------- +- URL pattern markers used in URL dispatch are permitted to specify a custom + regex. For example, the pattern ``/{foo:\d+}`` means to match ``/12345`` + (foo==12345 in the match dictionary) but not ``/abc``. However, custom + regexes in a pattern marker which used squiggly brackets did not work. For + example, ``/{foo:\d{4}}`` would fail to match ``/1234`` and + ``/{foo:\d{1,2}}`` would fail to match ``/1`` or ``/11``. One level of + inner squiggly brackets is now recognized so that the prior two patterns + given as examples now work. See also + https://github.com/Pylons/pyramid/issues/#issue/123. + - Don't send port numbers along with domain information in cookies set by AuthTktCookieHelper (see https://github.com/Pylons/pyramid/issues/131). |
