Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/django
Commit message (Collapse)AuthorAgeFilesLines
...
* Fixed #25566 -- Added title to admin's closing popup ↵Ville Skyttä2015-10-191-2/+2
| | | | response page
* Fixed #25567 -- Removed obsolete MEDIA_URL fallback in ↵Claude Paroz2015-10-191-5/+1
| | | | Media.absolute_path
* Fixed #25565 -- Removed action="" from admin forms ↵Ville Skyttä2015-10-197-7/+7
| | | | (invalid in HTML5).
* 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 #25517 -- Made Concat function idempotent on SQLite.Josh Smeaton2015-10-171-6/+9
|
* Fixed #25346 -- Allowed collectstatic to delete broken ↵Yusuke Miyazaki2015-10-171-1/+6
| | | | symlinks.
* Fixed #25558 -- Fixed nondeterministic test failure on ↵Brian Gianforcaro2015-10-171-1/+1
| | | | | | | | Windows: test_clearsessions_command. The test session without an expiration date added in refs #22938 wasn't always deleted on Windows because get_expiry_age() returns zero and the file backend didn't consider that an expired session.
* Fixed #25560 -- Made empty string related_name invalid.Simon Charette2015-10-162-2/+2
| | | | | Thanks to Ali Lotfi for the initial report and patch and Tim Graham for the review.
* Fixed #25506 -- Allowed filtering over a RawSQL annotation.Antoine Catton2015-10-141-1/+1
| | | | Co-Authored-By: Gavin Wahl <gwahl@fusionbox.com>
* Refs #25535 -- Minor edits to ForeignObject check changes.Tim Graham2015-10-141-5/+5
|
* Fixed #25535 -- Made ForeignObject checks less strict.Antoine Catton2015-10-131-6/+19
| | | | | Check that the foreign object `from_fields` are a subset of any unique constraints on the foreign model.
* Refs #18012 -- Removed the now unused proxied_children ↵Simon Charette2015-10-122-2/+0
| | | | | | model option. Thanks to Tim for the review.
* Refs #18012 -- Made proxy and concrete model reverse ↵Simon Charette2015-10-122-11/+5
| | | | | | | fields consistent. Prior to this change proxy models reverse fields didn't include the reverse fields pointing to their concrete model.
* Fixed #23076, #25505 -- Fixed deletion of intermediate ↵Simon Charette2015-10-121-1/+1
| | | | | | proxy models. Thanks to James Murty for his work on an alternate patch.
* Refs #18012 -- Removed special casing for proxy models ↵Simon Charette2015-10-121-10/+1
| | | | | | | deletion. This isn't required anymore now that reverse foreign keys from proxy models are propagated to their concrete model.
* Fixed #18012 -- Propagated reverse foreign keys from ↵Simon Charette2015-10-123-5/+12
| | | | | | proxy to concrete models. Thanks to Anssi for the review.
* Fixed #24687 -- Added select_related() validation for ↵Tim Graham2015-10-102-3/+5
| | | | | | | | | | nested non-relational fields. The removed test was added in the original select_related() validation patch (45d4e43d2d25b902e3821b612209afa951a8bcb8), but there doesn't seem to be any reason for it. Thanks Claude Paroz for help and review.
* Pluralized translatable strings in password_validation.pyClaude Paroz2015-10-102-15/+29
| | | | Forward port of 86dc4889f from master.
* Simplified translatable string in admindocs templateClaude Paroz2015-10-102-10/+9
| | | | Forward port of 60471c960 from stable/1.9.x.
* Fixed #22705 -- Fixed QuerySet.bulk_create() on models ↵Tim Graham2015-10-091-0/+3
| | | | | | | | without any fields on Oracle. Fixed on other backends by 134ca4d438bd7cbe8f0f287a00d545f96fa04a01. Thanks Mariusz Felisiak for the solution.
* Refs #25499 -- Fixed expressions in distance lookups on ↵Claude Paroz2015-10-091-1/+1
| | | | Oracle.
* Updated translation catalogsClaude Paroz2015-10-099-462/+547
| | | | Forward port of f717cb2ab4 from stable/1.9.x.
* Fixed #14368 -- Allowed setting a reverse OneToOne ↵Tim Graham2015-10-091-18/+28
| | | | relation to None.
* Fixed #25533 -- Changed datatype mapping for GDALRastersDaniel Wiesmann2015-10-091-2/+2
|
* Fixed #25499 -- Added the ability to pass an expression ↵Claude Paroz2015-10-094-28/+45
| | | | | | in distance lookups Thanks Bibhas Debnath for the report and Tim Graham for the review.
* Fixed #25525 -- Added instructions about importing ↵Baptiste Mispelon2015-10-071-1/+2
| | | | include() in urls.py
* Fixed #25503 -- Fixed system check crash on ForeignKey ↵Mariusz Felisiak2015-10-071-1/+4
| | | | to abstract model.
* Fixed #25508 -- Modified QuerySet.__repr__() to ↵Tim Graham2015-10-061-1/+1
| | | | disambiguate it from a list.
* Refs #12118 -- Allowed "mode=memory" in SQLite test ↵Riccardo Magliocchetti2015-10-061-3/+5
| | | | database names.
* Fixed #25496 -- Made ModelChoiceField respect ↵Tim Graham2015-10-061-1/+3
| | | | prefetch_related().
* Fixed #25423 -- Made error message for unknown template ↵Pindi Albert2015-10-051-2/+7
| | | | tag more helpful.
* 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``.
* Removed SimpleLazyObject workaround for a Python 3 bug.Tim Graham2015-10-051-5/+1
| | | | | The workaround added in fe8484efda257e151d9c1ca5151e546c9262bf0f seems unnecessary as the Python bug is fixed in Python 3.4.
* Fixed #25037 -- Added request.user to the debug view.John Moses2015-10-051-0/+7
|
* Removed obsolete (since Python 2.3) ↵Tim Graham2015-10-052-6/+0
| | | | __safe_for_unpickling__ attribute.
* Fixed #25389 -- Fixed pickling a SimpleLazyObject ↵Ben Kraft2015-10-031-25/+31
| | | | | | | | wrapping a model. Pickling a `SimpleLazyObject` wrapping a model did not work correctly; in particular it did not add the `_django_version` attribute added in 42736ac8. Now it will handle this and other custom `__reduce__` methods correctly.
* Fixed #22938 -- Allowed clearsessions to remove ↵Aleksandra Tarkowska2015-10-031-3/+10
| | | | file-based sessions.
* 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.
* Upgraded OpenLayers version from 2.13 to 2.13.1Claude Paroz2015-10-032-3/+3
| | | | Thanks Daniel Hahler for the initial patch.
* Fixed #25490 -- Made the logout() view send "no-cache" ↵Kaleb Elwert2015-10-021-0/+1
| | | | headers.
* Refs #13637 -- Removed unused code in ↵Tim Graham2015-10-021-7/+1
| | | | | | GenericRelatedObjectManager Appears unused since 585b7acaa359fc1df07269c1a4b4756bdb6703f7.
* Fixed #21042 -- Allowed accessing FileDescriptor on the ↵Tim Graham2015-10-011-3/+1
| | | | | | | model class. This is consistent with ability to reference other descriptors on the model class (5ef0c03ae9aca99289737ba6d88a371ad95cf432).
* Fixed #25466 -- Added backwards compatibility aliases ↵Tim Graham2015-09-304-2/+32
| | | | | | for LoaderOrigin and StringOrigin. Thanks Simon Charette for the DeprecationInstanceCheck class.
* Refs #22384 -- Removed obsolete code for the removal of ↵Tim Graham2015-09-291-57/+19
| | | | reversing by dotted path.
* Refs #16860 -- Fixed password help text when there ↵Antoine Catton2015-09-281-1/+1
| | | | | | aren't any validators. This avoids creating an empty list which is invalid HTML 4.
* Moved and updated Python license.Tim Graham2015-09-282-256/+1
|
* Fixed #25468 -- Made DjangoJSONEncoder lazy string awareClaude Paroz2015-09-271-0/+3
| | | | | Thanks Stavros Korokithakis for the report and Tim Graham for the review.
* Used getattr() to simplify contrib.messages.api.Curtis Maloney2015-09-271-2/+2
|
* Fixed #25421 -- Fixed test --keepdb option on Oracle.Mariusz Felisiak2015-09-271-17/+35
|
* Used ternary operator to simplify contrib.messages.api.GhostThrone2015-09-251-8/+2
|