Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/django/core
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #25668 -- Misc spelling errorsVille Skyttä2015-11-031-1/+1
|
* Fixed #25635 -- Made URLValidator allow '+' in scheme.Dheerendra Rathor2015-10-311-1/+1
|
* Fixed #16734 -- Set script prefix even outside of requestsClaude Paroz2015-10-291-1/+1
| | | | Thanks Tim Graham for the review.
* Fixed #25620 -- Made URLValidator prohibit URLs with ↵Dheerendra Rathor2015-10-291-1/+1
| | | | consecutive dots in the domain section.
* Refs #17133 -- Optimized script_url handling in ↵Claude Paroz2015-10-271-3/+4
| | | | | | | | get_script_name 10ace52a added some regex processing for each request with SCRIPT_URL set. In a speed critical section, conditionally apply of the regex will save some resources.
* Fixed #25550 -- Deprecated direct assignment to the ↵Tim Graham2015-10-271-1/+1
| | | | reverse side of a related set.
* Removed hardcoded utf-8 BOM, used value from codecs instead.Jon Dufresne2015-10-251-2/+1
|
* Fixed #25604 -- Added makemigrations --check option.Jon Dufresne2015-10-241-6/+17
| | | | Command exits with non-zero status if changes without migrations exist.
* Cached model field_names in Python Deserializer.Andrey Kuzmin2015-10-231-1/+5
|
* Fixed #17133 -- Properly handled successive slashes in ↵Claude Paroz2015-10-231-0/+6
| | | | | | incoming requests Thanks gjanee@ucop.edu for the report and Tim Graham for the review.
* Fixed "URLconf" spelling in code comments.Tim Graham2015-10-222-4/+4
|
* Fixed #25589 -- Allowed startapp/project to create apps ↵Yoong Kang Lim2015-10-221-8/+15
| | | | with Unicode characters in the name.
* Fixed #25501 -- Made the file-based cache backend use ↵Andrew Artajos2015-10-201-2/+2
| | | | the highest pickling protocol.
* Fixed #25510 -- Allowed runserver to start with ↵Aymeric Augustin2015-10-181-4/+7
| | | | | | | | incorrect INSTALLED_APPS. In that case, the content of INSTALLED_APPS will be ignored until it's fixed and the autoreloader kicks in. I confirmed this behavior manually. As explained on the ticket it's hard to write a test for this case
* Fixed #25500 -- Added --fail-level option to check command.Jon Dufresne2015-10-053-4/+15
| | | | | This option specifies the level that check command exits with a non-zero status. Default is ``ERROR``.
* Fixed #25483 -- Allowed passing non-string arguments to ↵Claude Paroz2015-10-031-1/+2
| | | | | | call_command Thanks KS Chan for the report and Tim Graham for the review.
* Fixed #25468 -- Made DjangoJSONEncoder lazy string awareClaude Paroz2015-09-271-0/+3
| | | | | Thanks Stavros Korokithakis for the report and Tim Graham for the review.
* Refs #22804 -- Made an unsafe value of 'sep' in Signer ↵Tim Graham2015-09-241-4/+4
| | | | | | an exception. Per deprecation timeline.
* Removed deprecated TEMPLATE_* settings per deprecation ↵Tim Graham2015-09-241-7/+4
| | | | timeline.
* Removed django.core.context_processors per deprecation ↵Tim Graham2015-09-241-9/+0
| | | | timeline.
* Refs #22835 -- Removed NoArgsCommand per deprecation ↵Tim Graham2015-09-241-34/+0
| | | | timeline.
* Refs #23359 -- Removed the migrate --list option per ↵Tim Graham2015-09-241-23/+0
| | | | deprecation timeline.
* Refs #9893 -- Removed shims for lack of max_length ↵Tim Graham2015-09-241-14/+1
| | | | support in file storage per deprecation timeline.
* Refs #19973 -- Removed optparse support in management ↵Tim Graham2015-09-243-106/+38
| | | | commands per deprecation timeline.
* Refs #22384 -- Removed the ability to reverse URLs by ↵Tim Graham2015-09-241-86/+40
| | | | dotted path per deprecation timeline.
* Refs #22218 -- Removed conf.urls.patterns() per ↵Tim Graham2015-09-241-8/+0
| | | | deprecation timeline.
* Refs #24022 -- Removed the ssi tag per deprecation timeline.Tim Graham2015-09-241-1/+0
|
* Refs #23813 -- Moved URLconfs into module and tidied ↵Alasdair Nicol2015-09-221-5/+5
| | | | docstrings.
* Corrected docstring in core.urlresolvers module.Matt Deacalion Stevens2015-09-211-3/+2
| | | | | The RegexURLResolver.resolve() method no longer returns a tuple. It has returned a ResolverMatch object since commit e0fb90b2.
* Fixed #23813 -- Added checks for common URL pattern errorsAlasdair Nicol2015-09-214-1/+91
| | | | | Thanks jwa and lamby for the suggestions, and timgraham and jarshwah for their reviews.
* Fixed #25390 -- Allowed specifying a start migration in ↵Markus Holtermann2015-09-191-15/+44
| | | | | | squashmigrations Thanks Tim Graham for the review.
* Fixed #24636 -- Added model field validation for decimal ↵Iulia Chiriac2015-09-181-0/+69
| | | | places and max digits.
* Fixed #25034 -- Converted caches ImproperlyConfigured ↵Tom Christie2015-09-184-4/+20
| | | | error to a system check.
* Fixed typo in django/core/cache/backends/base.py docstring.Matthew Crowson2015-09-161-1/+1
|
* Added upgrade tip in BaseCommand.option_list deprecation ↵Daniel Hahler2015-09-151-0/+1
| | | | comment.
* Fixed #23395 -- Limited line lengths to 119 characters.Dražen Odobašić2015-09-123-18/+28
|
* Allowed a port range for the liveserver by default.Aymeric Augustin2015-09-091-1/+1
| | | | This is required for running tests in parallel.
* Fixed #25372 -- Fixed autocompletion for options of ↵Daniel Hahler2015-09-091-1/+1
| | | | non-argparse commands.
* Fixed #25350 -- Added alias --no-input for --noinput to ↵Raphael Michel2015-09-086-6/+11
| | | | management commands.
* Fixed #25144 -- Allowed migrate to create tables for ↵Tim Graham2015-09-041-0/+2
| | | | apps without migrations.
* Fixed #25331 -- Removed trailing blank lines in docstrings.Maxime Lorant2015-08-317-18/+2
|
* Fixed #24704 -- Made the autoreloader survive SyntaxErrors.Aymeric Augustin2015-08-292-2/+19
| | | | | | | | | | | | | | | | | With this change, it's expected to survive anything except errors that make it impossible to import the settings. It's too complex to fallback to a sensible behavior with a broken settings module. Harcoding things about runserver in ManagementUtility.execute is atrocious but it's the only way out of the chicken'n'egg problem: the current implementation of the autoreloader primarily watches imported Python modules -- and then a few other things that were bolted on top of this design -- but we want it to kick in even if the project contains import-time errors and django.setup() fails. At some point we should throw away this code and replace it by an off-the-shelf autoreloader that watches the working directory and re-runs `django-admin runserver` whenever something changes.
* Fixed #17375 -- Changed makemessages to use xgettext ↵Sergey Kolosov2015-08-281-104/+197
| | | | | | | | | with --files-from Changed the way makemessages invokes xgettext from one call per translatable file to one call per locale directory (using --files-from). This allows to avoid https://savannah.gnu.org/bugs/index.php?35027 and, as a positive side effect, speeds up localization build.
* Fixed #25318 -- Made SILENCED_SYSTEM_CHECKS suppress all ↵Tim Graham2015-08-281-2/+2
| | | | | | | messages. Previously, messages of ERROR level or higher were printed to the console.
* Fixed #25322 -- Lazily compiled core.validators regular ↵Jonas Haag2015-08-281-12/+23
| | | | | | | | expressions. This speeds up import of 'django.core.validators' which can save a few hundred milliseconds when importing the module for the first time. It can be a significant speedup to the django-admin command.
* Fixed #25047 -- Improved "Conflicting migrations" error ↵Tim Graham2015-08-242-2/+4
| | | | message.
* Fixed #25285 -- Provided unknown command message with ↵Claude Paroz2015-08-191-2/+8
| | | | | | | plain django-admin.py Thanks Maxime Lorant for the report and Tim Graham for suggesting the improved comment.
* Fixed #24755 -- Hid operations from dependency apps when ↵Markus Holtermann2015-08-181-1/+5
| | | | | | merging migrations Thanks Carl Meyer for the report and Tim Graham for the review.
* Fixed #25231 -- Added recording of squashed migrations ↵mlavin2015-08-071-0/+1
| | | | | | | | in the migrate command. Ensured squashed migrations are recorded as applied when the migrate command is run and all of the original migrations have been previously applied.
* Fixed #25204 -- Added missing space in runserver logging.Tim Graham2015-08-011-1/+1
|