Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/django/core
Commit message (Collapse)AuthorAgeFilesLines
...
* Extended variable name in handlers/base.pyClaude Paroz2015-05-051-5/+5
| | | | Refs #24733.
* Fixed #24693 -- Added label and label_lower property to ↵Luis Del Giudice2015-05-022-5/+3
| | | | Model._meta
* Fixed #23271 -- Fixed makemessages crash/test failure ↵daphshez2015-05-012-10/+13
| | | | for some locales.
* Fixed #24707 -- Improved error reporting for explicitly ↵Harry2015-04-261-0/+5
| | | | imported uncallable views
* Fixed #24703 -- Changed squashmigrations to use a ↵Marten Kenbeek2015-04-251-7/+6
| | | | | | | MigrationLoader Changed squashmigrations to not instantiate a MigrationExecutor, but to directly use a MigrationLoader instance instead.
* Fixed #24664 -- Removed misleading arg name from ↵David Danier2015-04-201-2/+2
| | | | TemporaryFileUploadHandler.new_file
* Fixed #23879 -- Allowed model migration skip based on ↵Claude Paroz2015-04-181-1/+1
| | | | | | | feature/vendor Thanks Carl Meyer for the report and review, and Tim Graham for the review.
* Fixed #24349 -- Limited domain name labels to 63 ↵Anoop Thomas Mathew2015-04-181-3/+2
| | | | characters in EmailValidator
* Fixed #21652 -- Added notification when processing ↵Yitzhak Clark2015-04-161-1/+8
| | | | | | | objects in loaddata Added a running count of the objects processed by loaddata when verbosity >= 3.
* Added missing periods in migrate help messages.Joe Borg2015-04-141-2/+2
|
* Fixed #24560 -- Added a --dry-run mode to the ↵Adam Chainz2015-04-091-4/+16
| | | | createcachetable command.
* Fixed #19820 -- Added more helpful error messages to ↵Richard Eames2015-04-092-16/+38
| | | | Python deserializer.
* Removed unused exception "as" variable.Tim Graham2015-04-081-1/+1
|
* Fixed #24544 -- Fixed get_image_dimensions() on image ↵steve2015-04-081-0/+6
| | | | | | buffers that Pillow fails to parse. Thanks Steve Kossouho for the report and original patch.
* Fixed #24571 -- Restored testserver positional arguments ↵Claude Paroz2015-04-041-1/+0
| | | | | | | parsing Thanks Domas Lapinskas for the report and Tim Graham for the review.
* Fixed typo in django.core.files.File docstring.Matt Hooks2015-04-031-1/+1
|
* Fixed #24558 -- Made dumpdata mapping ordering ↵Simon Charette2015-04-023-16/+21
| | | | | | deterministic. Thanks to gfairchild for the report and Claude for the review.
* Removed unused import in makemessagesClaude Paroz2015-04-011-1/+0
|
* Refs #24500 -- Avoided locale.getpreferredencoding in ↵Claude Paroz2015-04-011-5/+4
| | | | | | makemessages Fixes a regression introduced in 53c2cf1e.
* Fixed #24531 -- Improved CommaSeparatedIntegerField ↵Bertrand Bordage2015-03-251-5/+8
| | | | | | | validation. `','`, `'1,,1'`, `',1'` etc. are no longer considered as valid comma-separated integer lists.
* Fixed #24441 -- Changed get_image_dimensions() return ↵Raúl Cumplido2015-03-251-1/+1
| | | | value for broken images
* Renamed Field.rel attribute to remote_fieldAnssi Kääriäinen2015-03-254-37/+37
| | | | | | | | Field.rel is now deprecated. Rel objects have now also remote_field attribute. This means that self == self.remote_field.remote_field. In addition, made the Rel objects a bit more like Field objects. Still, marked ManyToManyFields as null=True.
* Fixed #24500 -- Fixed makemessages encoding problems ↵Pakal2015-03-211-10/+24
| | | | retrieving gettext version.
* Removed unused imports.Tim Graham2015-03-201-1/+1
|
* Adapted sendtestemail to be more argparse-ishClaude Paroz2015-03-201-4/+5
|
* Fixed #24419 -- Added sendtestemail management commandLoek van Gent2015-03-201-0/+20
|
* Fixed #23960 -- Removed http.fix_location_headerClaude Paroz2015-03-181-1/+0
| | | | Thanks Carl Meyer for the report and Tim Graham for the review.
* Fixed #24476 -- Added context manager/decorator for ↵Bas Peschier2015-03-181-3/+2
| | | | | | | | overriding script prefix. Tests were using an undocumented keyword argument for easily overriding script prefix while reversing. This is now changed into a test utility which can be used as decorator or context manager.
* Fixed #24427 -- Stopped writing migration files in dry ↵John Giannelos2015-03-161-4/+15
| | | | | | run mode when merging. Also added display of migration to stdout when verbosity=3.
* Fixed #12982 -- Added a get_or_set() method to the ↵Berker Peksag2015-03-141-0/+21
| | | | BaseCache backend.
* Fed tuples to startswith when appropriateClaude Paroz2015-03-131-3/+2
|
* Fixed #24416 -- Added support for lazy email addresses.medmunds2015-03-131-4/+4
|
* Fixed #24122 -- Redirected to translated url after ↵Claude Paroz2015-03-131-1/+25
| | | | | | setting language Thanks gbdlin for the initial patch and Tim Graham for the review.
* Fixed #24013 -- Fixed escaping of reverse() prefix.Bas Peschier2015-03-131-9/+6
| | | | | | Prefix was treated as a part of the url pattern, which it is not. Improved tests to conform with RFC 3986 which allows certain characters in path segments without being escaped.
* Fixed #12943 -- Allowed unnamed arguments to be ↵Bas Peschier2015-03-121-1/+9
| | | | | | | | propagated in includes Propagated unnamed arguments as positional arguments into included URLconfs if no named arguments are defined. Positional and keyword arguments are never combined.
* Made runserver use leave_locale_aloneClaude Paroz2015-03-091-10/+4
|
* Fixed #23407 -- Extended coverage of makemigrations ↵Marten Kenbeek2015-03-081-1/+6
| | | | | | | --noinput option. Changed --noinput option in makemigrations to suppress all user prompts, not just when combined with --merge.
* Fixed #23173 -- Fixed incorrect stripping of SCRIPT_URLBas Peschier2015-03-081-1/+1
|
* Fixed #24369 -- Prevented crash when flushing before db ↵Claude Paroz2015-03-051-1/+2
| | | | | | migration Thanks Thomas Tanner for the report and Tim Graham for the review.
* Simplified emit_post_migrate from flush commandClaude Paroz2015-02-281-11/+4
| | | | Follow-up of f4f24d30e0.
* Revert "Fixed #24369 -- Prevented crash when `flush`ing ↵Claude Paroz2015-02-281-4/+0
| | | | | | | before db migration" This reverts commit 9f1dbe29c0dbae57ff7950f3f64a0d083177cca8. The proposed solution does not pass the test suite.
* Fixed #24369 -- Prevented crash when `flush`ing before ↵Claude Paroz2015-02-281-0/+4
| | | | | | db migration Thanks Thomas Tanner for the report.
* Fixed a few uses of Template that relied on a default ↵Aymeric Augustin2015-02-221-2/+2
| | | | | | engine. Refs #24389.
* Removed rmtree_errorhandler.Aymeric Augustin2015-02-221-3/+1
| | | | | | | | | | The stated reason for its introduction in d18d37ce no longer applies since Django's code repository was switched from Subversion to git. Furthermore it never had any effect because shutil.rmtree ignores its onerror argument when ignore_errors is True. The reason for its use in template management commands is unclear.
* Fixed #24351, #24346 -- Changed the signature of ↵Loic Bistuer2015-02-204-3/+4
| | | | | | | | | | | | | | | | allow_migrate(). The new signature enables better support for routing RunPython and RunSQL operations, especially w.r.t. reusable and third-party apps. This commit also takes advantage of the deprecation cycle for the old signature to remove the backward incompatibility introduced in #22583; RunPython and RunSQL won't call allow_migrate() when when the router has the old signature. Thanks Aymeric Augustin and Tim Graham for helping shape up the patch. Refs 22583.
* Fixed typo in django.core.servers.basehttp message.Alex Vidal2015-02-201-1/+1
|
* Refs #24324 -- Fixed makemessages crash when Django is ↵Tim Graham2015-02-171-1/+2
| | | | installed in a non-ASCII path.
* Refs #24324 -- Fixed management command discovery on ↵Tim Graham2015-02-171-4/+4
| | | | non-ASCII paths.
* Fixed #24320 - Used field.value_to_string() in ↵Andriy Sokolovskiy2015-02-131-0/+2
| | | | | | | serialization of foreign key. This fixes serialization of a ForeignKey to a UUIDField as the test indicates.
* Fixed #24184 -- Prevented automatic soft-apply of migrationsMarkus Holtermann2015-02-131-1/+7
| | | | | | | | | | | | Previously Django only checked for the table name in CreateModel operations in initial migrations and faked the migration automatically. This led to various errors and unexpected behavior. The newly introduced --fake-initial flag to the migrate command must be passed to get the same behavior again. With this change Django will bail out in with a "duplicate relation / table" error instead. Thanks Carl Meyer and Tim Graham for the documentation update, report and review.