summaryrefslogtreecommitdiff
path: root/tests/urlpatterns_reverse
Commit message (Expand)AuthorAgeFilesLines
* Sorted imports with isort; refs #23860.Tim Graham2015-02-0617-34/+23
* Fixed #24149 -- Normalized tuple settings to lists.darkryder2015-02-031-12/+12
* Fixed #24252 -- Forced lazy __str__ to utf-8 on Python 2Claude Paroz2015-02-031-0/+11
* Changed RedirectView.permanent to False per deprecation timeline; refs #21587.Tim Graham2015-01-182-3/+2
* Removed the validate management command per deprecation timeline.Tim Graham2015-01-171-1/+1
* Applied ignore_warnings to Django testsClaude Paroz2014-12-301-14/+11
* Fixed #23923 -- Promoted Django's deprecation warnings to errors in runtests.pyTim Graham2014-11-293-7/+10
* Corrected deprecation warnings for RedirectView; refs #21587.Berker Peksag2014-11-282-6/+5
* Fixed #21587 -- Added a warning for changing default of RedirectView.permanent.Berker Peksag2014-11-251-3/+5
* Fixed #23620 -- Used more specific assertions in the Django test suite.Berker Peksag2014-11-031-2/+2
* Fixed #23522 -- Changed reverse() to return a Unicode string; not bytesJon Dufresne2014-10-071-0/+7
* Prevented reverse() from generating URLs pointing to other hosts.Florian Apolloner2014-08-202-0/+6
* Fixed #23276 -- Deprecated passing views as strings to url().Tim Graham2014-08-123-29/+33
* Fixed #22223 -- Prevented over-escaping URLs in reverse()Claude Paroz2014-07-091-1/+1
* Refactored common code in handlers/base.py and urlresolvers.pyAnubhav Joshi2014-06-231-6/+6
* Added database migration for contrib.auth.Tim Graham2014-06-161-1/+1
* Fixed #22384 -- Deprecated reversing URLs by dotted path.Tim Graham2014-06-032-11/+25
* Fixed a typo that Tim Graham noticedAlex Gaynor2014-05-281-1/+1
* Fixed several typos in DjangoAlex Gaynor2014-05-281-2/+2
* Fixed #21157 -- Fixed problems with ResolverMatchKevin Christopher Henry2014-04-234-37/+40
* Fixed #22486 -- Restored the ability to reverse views created using functools...Preston Timmons2014-04-232-1/+15
* Fixed a remote code execution vulnerabilty in URL reversing.Tim Graham2014-04-214-0/+29
* Fixed #22378 -- Updated \d to [0-9]+ in urlpatterns of docs and tests.chriscauley2014-04-169-35/+35
* Fixed #21977 -- Deprecated SimpleTestCase.urlsAnubhav Joshi2014-04-061-10/+11
* Fixed #22218 -- Deprecated django.conf.urls.patterns.Tim Graham2014-04-0317-134/+142
* Fixed #7571 -- Fixed parameter matching in include()'d urlpatternAthena2014-03-053-0/+10
* Fixed #21435 -- Improved error message when urlconf is empty.Baptiste Mispelon2014-02-221-2/+4
* Replaced 'test' by 'sqlall' management command in reverse_lazy testClaude Paroz2014-02-181-2/+2
* Fixed #22057 -- Ensured reverse_lazy can be used in settingsClaude Paroz2014-02-181-0/+20
* Improved fix for #18373 -- backward compatibilityGrzegorz Nosek2014-02-151-4/+4
* Fixed #18373 - improved handling of Resolver404s from viewsGrzegorz Nosek2014-02-151-4/+4
* Imported override_settings from its new location.Aymeric Augustin2013-12-231-2/+1
* Removed superfluous models.py files.Aymeric Augustin2013-12-171-0/+0
* Fixed E127 pep8 warnings.Loic Bistuer2013-12-141-8/+4
* Flake8 fixes -- including not runnign flake8 over a backported fileAlex Gaynor2013-11-111-2/+0
* Fixed #21351 -- Replaced memoize with Python's lru_cache.Bouke Haarsma2013-11-111-4/+13
* Fixing E302 ErrorsJason Myers2013-11-025-1/+28
* Fixed flake8 E241Boryslav Larin2013-11-021-2/+2
* Fixed #21302 -- Fixed unused imports and import *.Tim Graham2013-11-023-3/+2
* Fix all violators of E231Alex Gaynor2013-10-261-38/+38
* Removed some direct settings manipulations in tests; refs #21230.Bouke Haarsma2013-10-211-29/+35
* Removed unused local variables in tests.Tim Graham2013-10-191-2/+2
* Whitespace cleanup.Tim Graham2013-10-105-5/+0
* Removed a few trailing backslashes.Aymeric Augustin2013-09-221-1/+1
* Fixed #21043 -- Made resolve() handle reverse_lazy objects.Dan Johnson2013-09-061-1/+14
* Removed most of absolute_import importsClaude Paroz2013-07-2915-30/+2
* Stopped using django.utils.unittest in the test suite.Aymeric Augustin2013-07-011-1/+3
* Fixed #17076 -- When reversing a URL fails, inform the user which patterns we...Wilfred Hughes2013-06-141-0/+14
* Fixed #19866 -- Added security logger and return 400 for SuspiciousOperation.Preston Holmes2013-05-253-1/+5
* Use assertIsInstance in tests.Marc Tamlyn2013-05-211-3/+3