Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/django/conf/urls
Commit message (Collapse)AuthorAgeFilesLines
* Refs #22384 -- Removed the ability to reverse URLs by ↵Tim Graham2015-09-241-1/+3
| | | | dotted path per deprecation timeline.
* Refs #23276 -- Removed passing views as strings to url() ↵Tim Graham2015-09-241-15/+2
| | | | per deprecation timeline.
* Refs #22218 -- Removed conf.urls.patterns() per ↵Tim Graham2015-09-242-37/+5
| | | | deprecation timeline.
* Fixed #25331 -- Removed trailing blank lines in docstrings.Maxime Lorant2015-08-311-1/+0
|
* Sorted imports in __init__.py files.Tim Graham2015-06-271-3/+4
|
* Renamed RemovedInDjangoXYWarnings for new roadmap.Tim Graham2015-06-242-12/+13
| | | | | Forwardport of ae1d663b7913f6da233c55409c4973248372d302 from stable/1.8.x plus more.
* Fixed #21927 -- Made application and instance namespaces ↵Marten Kenbeek2015-06-081-4/+32
| | | | | | | | more distinct. Made URL application namespaces be set in the included URLconf and instance namespaces in the call to include(). Deprecated other ways to set application and instance namespaces.
* Fixed #17716 -- Prevented include('...', app_name='...') ↵Tim Graham2015-02-121-0/+3
| | | | without a namespace.
* Fixed #23276 -- Deprecated passing views as strings to ↵Tim Graham2014-08-123-2/+10
| | | | url().
* Cleaned up string detection for a deprecation warning by ↵Tim Graham2014-04-031-1/+1
| | | | using six.string_types.
* Fixed #22218 -- Deprecated django.conf.urls.patterns.Tim Graham2014-04-033-9/+30
| | | | Thanks Carl Meyer for the suggestion and Alex Gaynor and Carl for reviews.
* Removed django.views.defaults.shortcut and ↵Tim Graham2014-03-211-11/+0
| | | | django.conf.urls.shortcut per deprecation timeline.
* Fixed #21188 -- Introduced subclasses for ↵Claude Paroz2014-03-081-1/+2
| | | | | | | to-be-removed-in-django-XX warnings Thanks Anssi Kääriäinen for the idea and Simon Charette for the review.
* Started attackign the next flake8 violationAlex Gaynor2013-10-313-0/+6
|
* Start attacking E231 violationsAlex Gaynor2013-10-241-1/+1
|
* Whitespace cleanup.Tim Graham2013-10-101-1/+0
| | | | | | | * Removed trailing whitespace. * Added newline to EOF if missing. * Removed blank lines at EOF. * Removed some stray tabs.
* Deprecated django.utils.importlibClaude Paroz2013-07-291-1/+2
| | | | This was a shim for pre-Python 2.7 support.
* Advanced deprecation warnings for Django 1.7.Aymeric Augustin2013-06-291-1/+1
|
* Fixed #19866 -- Added security logger and return 400 for ↵Preston Holmes2013-05-261-1/+2
| | | | | | | | | | | | SuspiciousOperation. SuspiciousOperations have been differentiated into subclasses, and are now logged to a 'django.security.*' logger. SuspiciousOperations that reach django.core.handlers.base.BaseHandler will now return a 400 instead of a 500. Thanks to tiwoc for the report, and Carl Meyer and Donald Stufft for review.
* Deprecated django.views.defaults.shortcut.Aymeric Augustin2013-03-141-0/+5
|
* Removed django.conf.urls.defaults.Aymeric Augustin2012-12-291-6/+0
|
* Fixed #18700 -- Added URL reversal for i18n set_language ↵Simon Meers2012-08-041-2/+2
| | | | view.
* [py3] Replaced basestring by six.string_types.Aymeric Augustin2012-07-221-2/+3
|
* Fixed #18042 -- Advanced deprecation warnings.Aymeric Augustin2012-05-031-1/+1
| | | | Thanks Ramiro for the patch.
* Fixed #14675 -- Completed removal of `from ↵Ramiro Morales2011-09-125-63/+69
| | | | | | | | | | | | | | django.conf.urls.default import *` usage. This applies to both our own [test] code and documentation examples. Also: * Moved the functions and handlers from `django.conf.urls.defaults` up to `django.conf.urls` deprecating the former module. * Added documentation for `handler403`. * Tweaked the URLs topic document a bit. Thanks to pupeno and cdestigter for their great work contributing patches. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16818 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #9847 -- Added 403 response handler. Many thanks ↵Jannis Leidel2011-08-121-0/+1
| | | | | | to kgrandis, adamnelson, vkryachko, fvox13 and Chris Beaven. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16606 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #11585 -- Added ability to translate and prefix ↵Jannis Leidel2011-06-152-2/+35
| | | | | | URL patterns with a language code as an alternative method for language discovery. Many thanks to Orne Brocaar for his initial work and Carl Meyer for feedback. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16405 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #15598 -- Updated static URL helper to be no-op on ↵Jannis Leidel2011-03-151-3/+2
| | | | | | non-local prefixes. Thanks, traff. git-svn-id: http://code.djangoproject.com/svn/django/trunk@15839 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #15314 -- Added tests for the static URL pattern ↵Jannis Leidel2011-02-161-1/+1
| | | | | | function added in r15530 and made sure the **kwargs are passed to the view correctly. Thanks for the report and initial patch, Bruno Renié. git-svn-id: http://code.djangoproject.com/svn/django/trunk@15552 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixes #15270 -- Moved back the serve view to ↵Jannis Leidel2011-02-141-0/+26
| | | | | | django.views.static due to dependency conflicts with the contrib app staticfiles (reverts parts of r14293). Added a helper function that generates URL patterns for serving static and media files during development. Thanks to Carl for reviewing the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@15530 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #10061 -- Added namespacing for named URLs - most ↵Russell Keith-Magee2009-07-161-3/+13
| | | | | | | | | | | | importantly, for the admin site, where the absence of this facility was causing problems. Thanks to the many people who contributed to and helped review this patch. This change is backwards incompatible for anyone that is using the named URLs introduced in [9739]. Any usage of the old admin_XXX names need to be modified to use the new namespaced format; in many cases this will be as simple as a search & replace for "admin_" -> "admin:". See the docs for more details on the new URL names, and the namespace resolution strategy. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11250 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #6354 -- Fixed url in ↵Gary Wilson Jr2008-01-281-1/+1
| | | | | | `django/conf/urls/shortcut.py` to work with non-integer primary keys (refs #2033) and made use of the URL file in the admin urls. git-svn-id: http://code.djangoproject.com/svn/django/trunk@7040 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Report an error if urlpatterns contain a string view ↵Malcolm Tredinnick2007-05-271-2/+6
| | | | | | | | | name and it is empty. Refs #4319. git-svn-id: http://code.djangoproject.com/svn/django/trunk@5360 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #4044 -- Allowed callable views specifier to mix ↵Malcolm Tredinnick2007-04-291-1/+3
| | | | | | | | | (i.e. not crash) with prefix strings in URLConfs. Thanks, Vinay Sajip. git-svn-id: http://code.djangoproject.com/svn/django/trunk@5127 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #4129 -- Pass any prefix setting into url(...) ↵Malcolm Tredinnick2007-04-261-3/+4
| | | | | | | | | constructions so that prefixes work with the new syntax and strings for function names. git-svn-id: http://code.djangoproject.com/svn/django/trunk@5086 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Added the ability to name URL patterns. Helps with ↵Malcolm Tredinnick2007-04-011-8/+14
| | | | | | disambiguity reverse matches. git-svn-id: http://code.djangoproject.com/svn/django/trunk@4901 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Removed two vestigal URLconfs that refer to Ellington or ↵Jacob Kaplan-Moss2007-02-272-25/+0
| | | | | | to non-existant views. git-svn-id: http://code.djangoproject.com/svn/django/trunk@4632 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #2370 -- It's now possible to pass default URLconf ↵Adrian Holovaty2006-08-011-3/+5
| | | | | | arguments to include(). Added docs, as well. Thanks for the patch, martin.glueck@gmail.com git-svn-id: http://code.djangoproject.com/svn/django/trunk@3506 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #2081 -- Fixed typo in ↵Adrian Holovaty2006-06-041-1/+1
| | | | | | django.conf.urls.registration. Thanks, erikankrom git-svn-id: http://code.djangoproject.com/svn/django/trunk@3078 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* MERGED MAGIC-REMOVAL BRANCH TO TRUNK. This change is ↵Adrian Holovaty2006-05-021-7/+7
| | | | | | highly backwards-incompatible. Please read http://code.djangoproject.com/wiki/RemovingTheMagic for upgrade instructions. git-svn-id: http://code.djangoproject.com/svn/django/trunk@2809 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Completely refactored legacy RSS framework to the new ↵Adrian Holovaty2005-11-121-6/+0
| | | | | | django.contrib.syndication package. Also added Atom support, changed the way feeds are registered and added documentation for the whole lot. This is backwards-incompatible, but the RSS framework had not yet been documented, so this should only affect tinkerers and WorldOnline. Fixes #329, #498, #502 and #554. Thanks for various patches/ideas to alastair, ismael, hugo, eric moritz and garthk git-svn-id: http://code.djangoproject.com/svn/django/trunk@1194 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* BACKWARDS-INCOMPATIBLE CHANGE -- Moved flatpages and ↵Adrian Holovaty2005-11-111-5/+0
| | | | | | redirects to standalone apps in django.contrib that are NOT installed by default. See http://code.djangoproject.com/wiki/BackwardsIncompatibleChanges for full migration information. git-svn-id: http://code.djangoproject.com/svn/django/trunk@1166 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Changed RSS urlconf to accept any character for param -- ↵Adrian Holovaty2005-11-091-2/+2
| | | | | | not just slashes and alphanumerics git-svn-id: http://code.djangoproject.com/svn/django/trunk@1130 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Merged i18n branch into the trunk! Fixes #65, and ↵Jacob Kaplan-Moss2005-11-041-0/+5
| | | | | | perhaps some others. NB: this means that the i18n branch is now obsolete and will be made read-only. git-svn-id: http://code.djangoproject.com/svn/django/trunk@1068 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #627 -- BACKWARDS-INCOMPATIBLE CHANGE. Admin is ↵Adrian Holovaty2005-10-191-57/+0
| | | | | | now an app, not a middleware. See BackwardsIncompatibleChanges for a full list of changes and information on how to update your code. git-svn-id: http://code.djangoproject.com/svn/django/trunk@948 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Moved views.admin.main to contrib.admin.views.main. Refs ↵Adrian Holovaty2005-10-181-6/+6
| | | | | | #627. Note that this is still backwards-compatible, assuming people are using django.conf.urls.admin as their admin URLconf git-svn-id: http://code.djangoproject.com/svn/django/trunk@927 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Removed jsvalidation line in django.conf.urls.admin -- ↵Adrian Holovaty2005-10-181-1/+0
| | | | | | that doesn't exist git-svn-id: http://code.djangoproject.com/svn/django/trunk@924 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Moved django.views.admin.template and ↵Adrian Holovaty2005-10-181-11/+11
| | | | | | django.views.admin.doc to django.contrib.admin.views. Refs #627 git-svn-id: http://code.djangoproject.com/svn/django/trunk@923 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #81 -- Admin now supports primary_key=True for ↵Adrian Holovaty2005-08-101-3/+3
| | | | | | non-integer fields. Note that you'll have to make a change to your database if you're using a previous Django installation and want to use non-integer primary key fields. See the BackwardsIncompatibleChanges wiki page for info. git-svn-id: http://code.djangoproject.com/svn/django/trunk@469 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Made small cleanups to two default urlconfs, to be clearer.Adrian Holovaty2005-08-062-2/+2
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@413 bcc190cf-cafb-0310-a4f2-bffc1f526a37