summaryrefslogtreecommitdiff
path: root/django/utils/regex_helper.py
Commit message (Collapse)AuthorAgeFilesLines
* Changed the reverse() call for creating URLs to convert a "." in the reg-expMalcolm Tredinnick2008-09-031-1/+1
| | | | | | | | | pattern to a "." in the final output. This hides what is probably a bug in the pattern (the user almost certainly should have written "\."), but it will avoid a large number of "bug" reports about reverse(). git-svn-id: http://code.djangoproject.com/svn/django/trunk@8929 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed a case of incorrect parsing of quanitifers in reg-exp patterns.Malcolm Tredinnick2008-09-011-0/+1
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@8825 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #8726 -- When doing reverse URL resolving, make sure we're consistentlyMalcolm Tredinnick2008-08-311-15/+15
| | | | | | | dealing with unicode strings throughout by promoting up from UTF-8 as necessary. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8777 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #8725 -- Handle empty URL patterns in reverse().Malcolm Tredinnick2008-08-311-1/+5
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@8763 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* A rewrite of the reverse URL parsing: the reverse() call and the "url" ↵Malcolm Tredinnick2008-08-311-0/+323
| | | | | | | | | | | | | template tag. This is fully backwards compatible, but it fixes a bunch of little bugs. Thanks to SmileyChris and Ilya Semenov for some early patches in this area that were incorporated into this change. Fixed #2977, #4915, #6934, #7206. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8760 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Revert [7849] and [7850]. Brain failure on my part.Malcolm Tredinnick2008-07-061-123/+0
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@7851 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Started to work on the regex reverse-engineering phase.Malcolm Tredinnick2008-07-061-0/+123
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7850 bcc190cf-cafb-0310-a4f2-bffc1f526a37