Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Removed duplicated entry from AUTHORS.Sergey Fedoseev2015-10-211-1/+0
|
* Fixed #25576 -- Added IOBase methods required by ↵Jon Dufresne2015-10-214-0/+34
| | | | TextIOWrapper to HttpResponse.
* Fixed #25586 -- Fixed possible table cell misalignment ↵Daniel Hahler2015-10-211-1/+2
| | | | | | | in admin's tabular inlines. The table body (tbody) was shifted by one column to the left if the first inline form field is hidden.
* Fixed #25578 -- Corrected the casing of "GitHub".Yusuke Miyazaki2015-10-217-10/+11
|
* Fixed #25580 -- Allowed `None` to be set as SRID value.Sergey Fedoseev2015-10-212-1/+5
|
* Fixed #25501 -- Made the file-based cache backend use ↵Andrew Artajos2015-10-203-3/+12
| | | | the highest pickling protocol.
* Fixed quad quoted ("""") docstring starts.John Vandenberg2015-10-202-2/+2
|
* Removed "how to release Django" steps for 1.4 (no longer ↵Tim Graham2015-10-201-7/+1
| | | | supported).
* Fixed #25562 -- Skipped a time dependent admin_filters ↵Tim Graham2015-10-201-0/+7
| | | | test on Windows.
* Moved an inner function in db.migrations.state to avoid ↵Simon Charette2015-10-201-20/+24
| | | | redefinition.
* Refs #18012 -- Accounted for reverse proxy relations in ↵Simon Charette2015-10-202-4/+22
| | | | | | migrations. Thanks to Markus for the suggestion and Tim for the review.
* Fixed #25563 -- Cached deferred models in their proxied ↵Simon Charette2015-10-203-4/+30
| | | | | | model's _meta.apps. Thanks to Andriy Sokolovskiy for the report and Tim Graham for the review.
* 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-192-531/+7
| | | | 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-182-4/+11
| | | | | | | | 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-173-7/+26
|
* Fixed #25346 -- Allowed collectstatic to delete broken ↵Yusuke Miyazaki2015-10-172-3/+18
| | | | 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-163-2/+3
| | | | | Thanks to Ali Lotfi for the initial report and patch and Tim Graham for the review.
* Used SchemaEditor.delete_model() for teardown in schema ↵Tim Graham2015-10-161-33/+27
| | | | | | | | | tests. Some third-party database backends (MSSQL) have custom delete_model() requirements that must be executed. Thanks Michael Manfre for the initial patch and review.
* Forwardported 1.8.6 release note.Tim Graham2015-10-141-0/+4
|
* Fixed #25506 -- Allowed filtering over a RawSQL annotation.Antoine Catton2015-10-143-1/+15
| | | | Co-Authored-By: Gavin Wahl <gwahl@fusionbox.com>
* Refs #25535 -- Minor edits to ForeignObject check changes.Tim Graham2015-10-144-41/+33
|
* Fixed quotes in GeoQuerySet aggregates examples.Sergey Fedoseev2015-10-141-3/+3
|
* Fixed typo in docs/ref/models/relations.txt.Tim Graham2015-10-131-1/+1
|
* Fixed #25535 -- Made ForeignObject checks less strict.Antoine Catton2015-10-133-9/+159
| | | | | Check that the foreign object `from_fields` are a subset of any unique constraints on the foreign model.
* Added precision about GeoJSON field outputsClaude Paroz2015-10-122-2/+6
|
* 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-126-14/+113
| | | | | | | 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-123-2/+15
| | | | | | 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-128-14/+36
| | | | | | proxy to concrete models. Thanks to Anssi for the review.
* Updated stale links.Idan Gazit2015-10-121-6/+2
|
* Fixed #25498 -- Documented ↵Claude Paroz2015-10-111-17/+18
| | | | | | ST_Distance/ST_Distance_Sphere difference Thanks Bibhas Debnath for the report and Tim Graham for the review.
* Fixed #24687 -- Added select_related() validation for ↵Tim Graham2015-10-107-13/+31
| | | | | | | | | | 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 typo in docs/releases/1.10.txt.Tim Graham2015-10-101-1/+1
|
* Fixed #22705 -- Fixed QuerySet.bulk_create() on models ↵Tim Graham2015-10-093-2/+13
| | | | | | | | 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.
* Updated manage_translations scriptClaude Paroz2015-10-091-5/+2
|
* Fixed #14368 -- Allowed setting a reverse OneToOne ↵Tim Graham2015-10-092-18/+44
| | | | relation to None.
* Fixed #25533 -- Changed datatype mapping for GDALRastersDaniel Wiesmann2015-10-092-2/+23
|
* Fixed #25499 -- Added the ability to pass an expression ↵Claude Paroz2015-10-098-33/+84
| | | | | | in distance lookups Thanks Bibhas Debnath for the report and Tim Graham for the review.
* Refs #19722 -- Added a test for querying generic ↵Tim Graham2015-10-082-2/+15
| | | | | | relations of a parent class. Fixed in c9a96075fa02b6d52bec748ffdfb413688a15774.
* Refs #25527 -- Removed redundant doc heading link that ↵Tim Graham2015-10-081-2/+2
| | | | leads to a warning when generating PDF.
* Fixed #25525 -- Added instructions about importing ↵Baptiste Mispelon2015-10-071-1/+2
| | | | include() in urls.py
* Refs #17917 -- Added a test for pickling annotations on ↵Tim Graham2015-10-071-0/+6
| | | | | | fields with callable defaults. Fixed in f403653cf146384946e5c879ad2a351768ebc226.