summaryrefslogtreecommitdiff
path: root/django/core/urlresolvers.py
AgeCommit message (Expand)Author
2008-09-30Fixed another case of reverse URL resolving that wasn't working.Malcolm Tredinnick
2008-09-27Fixed #9038 -- Correctly handle URL patterns with the same name (or view name),Malcolm Tredinnick
2008-08-31Fixed #8726 -- When doing reverse URL resolving, make sure we're consistentlyMalcolm Tredinnick
2008-08-31A rewrite of the reverse URL parsing: the reverse() call and the "url" templa...Malcolm Tredinnick
2008-08-28Fixed #8221: added some better `NoReverseMatch` error strings. Thanks, mrts.Jacob Kaplan-Moss
2008-08-28Fixed #7524: allow errors raised during import of a urlconf to bubble up.Jacob Kaplan-Moss
2008-08-09Made NoReverseMatch exceptions more helpful. Thanks, mrtsLuke Plant
2008-07-21Changed/fixed the way Django handles SCRIPT_NAME and PATH_INFO (orMalcolm Tredinnick
2008-07-19Revert [7991] - [7993]. I was committing from the wrong branch. Sorry 'boutMalcolm Tredinnick
2008-07-19First part of setting request.path correctly.Malcolm Tredinnick
2008-06-30Fixed #7521 -- Added the ability to customize ROOT_URLCONF for the duration o...Russell Keith-Magee
2008-06-16Fixed #6831 -- Reverse URL resolver now replaces backslashes correctly. Thank...Adrian Holovaty
2007-10-21Fixed #5732 -- Catch all possible errors when importing a URLConf file. ThisMalcolm Tredinnick
2007-07-13Fixed #4839 -- Added __repr__ methods to URL classes that show the pattern theyMalcolm Tredinnick
2007-07-10Fixed #4823 -- Fixed a Python 2.3 incompatibility from [5636] (it was evenMalcolm Tredinnick
2007-07-08Fixed #4798-- Made sure that function keyword arguments are strings (for theMalcolm Tredinnick
2007-07-08Fixed reverse URL lookup using functions when the original URL pattern was aMalcolm Tredinnick
2007-07-07Fixed #4772 -- Fixed reverse URL creation to work with non-ASCII arguments.Malcolm Tredinnick
2007-07-04Merged Unicode branch into trunk (r4952:5608). This should be fullyMalcolm Tredinnick
2007-06-25Changed reverse URL resolving to handle the case where an included file doesMalcolm Tredinnick
2007-06-25Fixed #4453 -- Allow dots in URL pattern names (although the string in that c...Malcolm Tredinnick
2007-06-24Fixed #4673 -- Fixed error reporting bug from [5516]. Also changed the timingMalcolm Tredinnick
2007-06-23Fixed a Python 2.3 incompatibility I overlooked in [5516].Malcolm Tredinnick
2007-06-23Fixed #4566 -- Added caching speed-ups to reverse URL matching. Based on aMalcolm Tredinnick
2007-04-26Fixed #4129 -- Pass any prefix setting into url(...) constructions so thatMalcolm Tredinnick
2007-04-01Added the ability to name URL patterns. Helps with disambiguity reverse matches.Malcolm Tredinnick
2007-02-25Teeny weeny optimization to RegexURLPattern.resolve()Adrian Holovaty
2006-11-07Fixed #2875: made urlresolvers.get_mod_func() deal with non-qualified callbac...Jacob Kaplan-Moss
2006-10-30Fixed #2968 -- Changed arguments to __import__ to use empty dictionary instea...Adrian Holovaty
2006-10-09Made the !NoReverseMatch exception fail silently within templates (so that mo...Jacob Kaplan-Moss
2006-08-11Improved urlresolvers so that URLconfs can be passed objects instead of stringsAdrian Holovaty
2006-08-01Fixed #2370 -- It's now possible to pass default URLconf arguments to include...Adrian Holovaty
2006-07-28Added leading slash to output of core.urlresolvers.reverse(), and made 'urlco...Adrian Holovaty
2006-07-25Added resolve() and reverse() helper functions to django.core.urlresolversAdrian Holovaty
2006-06-08Fixed #2109 -- Convert old-style classes to new-style classes throughout Djan...Adrian Holovaty
2006-06-02Fixed #2025 -- Fixed some issues with URL reversal, which still isn't ready f...Adrian Holovaty
2006-05-16Added first stab at reverse matching to urlresolvers.pyAdrian Holovaty
2006-05-02MERGED MAGIC-REMOVAL BRANCH TO TRUNK. This change is highly backwards-incompa...Adrian Holovaty
2005-11-27Fixed #878 -- URLconf regex captures no longer have to be named groups. Old U...Adrian Holovaty
2005-11-23Added better error handling for trailing periods in URLconf include()sAdrian Holovaty
2005-09-29Fixed #537 -- Fixed typo in [718]. Thanks, EsajAdrian Holovaty
2005-09-29Fixed #537; thanks, fonsoJacob Kaplan-Moss
2005-09-27Fixed #131 -- URLconfs that are 'included' now receive captured parameters fr...Adrian Holovaty
2005-08-10Refactored django.core.urlresolvers a tiny bitAdrian Holovaty
2005-08-05Greatly improved the 404 error message when DEBUG=True. If none of the urlpat...Adrian Holovaty
2005-08-05Refactored the internals of URL parsing to use less codeAdrian Holovaty
2005-08-01Improved error message in urlresolvers (fixes #240)Jacob Kaplan-Moss
2005-07-19Improved error message in urlresolvers.RegexURLResolver.resolve to use repr i...Adrian Holovaty
2005-07-19Added a more helpful error message to django.core.urlresolvers.RegexURLResolv...Adrian Holovaty
2005-07-19Improved ViewDoesNotExist error messages in django.core.urlresolversAdrian Holovaty