Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/django/core
Commit message (Collapse)AuthorAgeFilesLines
...
* Removed Django 1.7 MIDDLEWARE_CLASSES upgrade check.Tim Graham2015-02-103-37/+0
|
* Sorted imports with isort; refs #23860.Tim Graham2015-02-0649-132/+138
|
* Removed old import aliases.Tim Graham2015-02-061-1/+0
|
* Simplified handling of RegexURLResolver.urlconf_module.Aymeric Augustin2015-02-051-11/+10
| | | | | Also made RegexURLResolver.url_patterns a cached property for consistency and efficiency.
* Fixed #24149 -- Normalized tuple settings to lists.darkryder2015-02-031-1/+1
|
* Fixed #24137 -- Switched to HTTP reason phrases from ↵Jon Dufresne2015-01-281-3/+0
| | | | Python stdlib.
* Refs #16905 -- Replaced call to removed method in runserverR3v1L2015-01-191-1/+1
| | | | Regression introduced in 0f169098efd099fd7ae13bd8e14b798530d74da7
* Removed support for syncing apps without migrations per ↵Tim Graham2015-01-188-277/+7
| | | | | | | deprecation timeline. Kept support for creating models without migrations when running tests (especially for Django's test suite).
* Removed BaseCommand.validate() per deprecation timeline; ↵Tim Graham2015-01-181-10/+0
| | | | refs #16905.
* Removed dumpdata --natural option and serializers ↵Tim Graham2015-01-182-18/+2
| | | | | | use_natural_keys parameter. Per deprecation timeline; refs #13252.
* Removed BaseMemcachedCacheMethods._get_memcache_timeout ↵Tim Graham2015-01-181-8/+1
| | | | | | backwards compatibility shim. Per deprecation timeline; refs #21147.
* Removed the validate management command per deprecation ↵Tim Graham2015-01-181-16/+0
| | | | timeline.
* Removed unused imports from previous commit.Tim Graham2015-01-171-2/+1
|
* Removed BaseCommand.requires_model_validation per ↵Tim Graham2015-01-171-42/+3
| | | | deprecation timeline.
* Removed support for AppCommand.handle_app() per ↵Tim Graham2015-01-171-20/+3
| | | | deprecation timeline.
* Required sqlparse for SQL splitting per deprecation ↵Tim Graham2015-01-171-18/+0
| | | | timeline.
* Removed support for custom SQL per deprecation timeline.Tim Graham2015-01-176-141/+4
|
* Removed support for initial_data fixtures per ↵Tim Graham2015-01-173-35/+2
| | | | deprecation timeline.
* Removed django.core.cache.get_cache() per deprecation ↵Tim Graham2015-01-171-30/+1
| | | | timeline; refs #21012.
* Removed the syncdb command per deprecation timeline.Tim Graham2015-01-172-46/+1
|
* Removed pre_syncdb and post_syncdb signals per ↵Tim Graham2015-01-173-31/+7
| | | | deprecation timeline.
* Removed compatibility with Python 3.2.Tim Graham2015-01-172-8/+1
|
* Removed FastCGI support per deprecation timeline; refs ↵Tim Graham2015-01-174-229/+3
| | | | #20766.
* Removed request.REQUEST per deprecation timeline; refs ↵Tim Graham2015-01-171-11/+0
| | | | #18659.
* Removed unused importClaude Paroz2015-01-141-3/+0
|
* Stripped headers containing underscores to prevent ↵Carl Meyer2015-01-131-0/+8
| | | | | | | | spoofing in WSGI environ. This is a security fix. Disclosure following shortly. Thanks to Jedediah Smith for the report.
* Fixed #17785 -- Preferred column names in get_relations ↵Claude Paroz2015-01-121-3/+3
| | | | | | | introspection Thanks Thomas Güttler for the report and the initial patch, and Tim Graham for the review.
* Fixed #24129 -- Added indicator that migrations are ↵Markus Holtermann2015-01-121-1/+9
| | | | | | rendering the initial state Thanks Tim Graham for the review.
* Fixed #9893 -- Allowed using a field's max_length in the ↵Pavel Shpilev2015-01-121-7/+37
| | | | Storage.
* Fixed #24073 -- Deactivated translations when ↵Claude Paroz2015-01-071-9/+8
| | | | | | leave_locale_alone is False Thanks Tim Graham and Markus Holtermann for the reviews.
* Fixed #12663 -- Formalized the Model._meta API for ↵Daniel Pyrathon2015-01-072-5/+5
| | | | | | | retrieving fields. Thanks to Russell Keith-Magee for mentoring this Google Summer of Code 2014 project and everyone else who helped with the patch!
* Fixed #20003 -- Improved and extended URLValidatorDanilo Bargen2015-01-061-6/+25
| | | | | | | | | | | | | This adds support for authentication data (`user:password`) in URLs, IPv6 addresses, and unicode domains. The test suite has been improved by adding test URLs from http://mathiasbynens.be/demo/url-regex (with a few adjustments, like allowing local and reserved IPs). The previous URL validation regex failed this test suite on 13 occasions, the validator was updated based on https://gist.github.com/dperini/729294.
* Fixed gettext version regexClaude Paroz2015-01-061-1/+1
| | | | | | ...with the theoretical assumption that gettext may once reach a two-digit number. Thanks Walter Doekes for noticing this potential issue.
* Refs #23359 -- Removed double newline from output of ↵Markus Holtermann2015-01-051-2/+3
| | | | | | migrate --list Thanks Berker Peksag for the review.
* Fixed #8280 -- Allowed management command discovery for eggsClaude Paroz2015-01-051-5/+5
| | | | | Thanks jdetaeye for the report, bhuztez and jdetaeye for the initial patches, Tim Graham and Berker Peksag for the reviews.
* Fixed #24072 -- Added FileResponse for streaming binary ↵Collin Anderson2015-01-051-0/+2
| | | | files.
* Fixed #9104 -- Moved FieldDoesNotExist to core.exceptionsDaniel Pyrathon2015-01-021-0/+5
|
* Show migration elapsed time when verbosity>1Claude Paroz2015-01-021-4/+12
| | | | This facilitates performance debugging related to migrations.
* Fixed #24069 -- Made ServerHandler a new style class to ↵Andreas Pelme2015-01-021-1/+2
| | | | fix super() call.
* Fixed #23366 -- Fixed a crash with the migrate --list ↵Tim Graham2014-12-311-1/+1
| | | | command.
* Fixed #24008 -- Fixed ValidationError crash with list of ↵Andrey Maslov2014-12-311-1/+4
| | | | dicts.
* Fixed #23359 -- Added showmigrations command to list ↵Markus Holtermann2014-12-312-43/+133
| | | | | | | migrations and plan. Thanks to Collin Anderson, Tim Graham, Gabe Jackson, and Marc Tamlyn for their input, ideas, and review.
* Fixed breakage by 6fb9dee4 under Python2+Windows.Ramiro Morales2014-12-301-10/+5
| | | | Refs #23271
* Fixed #21255 -- Closed connections after management ↵Claude Paroz2014-12-291-0/+3
| | | | | | | command ran Thanks kabakov.as@gmail.com for the report, and Aymeric Augustin, Simon Charette for the reviews.
* Fixed #23271 -- Don't corrupt PO files on Windows when ↵Ramiro Morales2014-12-291-5/+20
| | | | | | | | | | | | | | updating them. Make sure PO catalog text fetched from gettext programs via standard output isn't corrupted by mismatch between assumed (UTF-8) and real (CP1252) encodings. This can cause mojibake to be written when creating or updating PO files. Also fixes #23311. Thanks to contributor with Trac nick 'danielmenzel' for the report, excellent research and fix.
* Moved context_processors from django.core to ↵Aymeric Augustin2014-12-281-82/+7
| | | | django.template.
* Replaced sqlall in some bash_completion/admin_scripts tests.Tim Graham2014-12-271-2/+2
| | | | | sqlall will be removed in Django 1.9, so now's a good time to remove its usage where it's not important.
* Fixed #24054 -- Enabled sqlsequencereset for apps with ↵Tim Graham2014-12-261-2/+0
| | | | migrations.
* Fixed #23866 -- Harmonized refs to Django documentation ↵Claude Paroz2014-12-253-10/+11
| | | | from code
* Removed shutil.copystat copied from stdlib (added to ↵Tim Graham2014-12-251-13/+2
| | | | support an old Python?).