Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/django/contrib
Commit message (Collapse)AuthorAgeFilesLines
* Fix issue with addButton variable scopeArthur de Jong2015-11-212-55/+55
| | | | | | | | | This moves the delete-link handling after adding the add link and moves the scope of the addButton upwards to ensure that it is available in the delete link handler. This fixes the "addButton was used before it was defined" error from npm test.
* Fix issue with row variable scopeArthur de Jong2015-11-212-16/+15
| | | | | | This uses $(this) in the outer scope and saves the row variable for use in the click handler. This fixes the "row is already declared in the upper scope" error from npm test.
* Fixed #15910 -- Show delete links for all admin inline ↵Arthur de Jong2015-11-072-47/+56
| | | | | | | | | formset rows Move the addition of delete links to the initialisation code instead of to the add event handler to ensure that all rows that should have a delete link end up with one (not just the rows that are dynamically added).
* Fixed GIS test failures when GDAL is not installedHEADmasterClaude Paroz2015-11-071-3/+3
| | | | Thanks Iacopo Spalletti for the report and testing.
* Fixed #25673 -- Made `GeometryField.from_db_value` set SRIDSergey Fedoseev2015-11-061-2/+6
|
* Fixed #25629 -- Added checks of the number of arguments ↵Sergey Fedoseev2015-11-031-9/+15
| | | | for GeoDjango DB functions.
* Fixed #25661 -- Fixed checking number of points during ↵Sergey Fedoseev2015-11-021-1/+1
| | | | list assignment for `LinearRing`.
* Fixed #25664 -- Fixed `dims` for `Point`Sergey Fedoseev2015-11-021-1/+1
|
* Fixed #25659 -- Added missing support for MySQL 5.6.1 ↵Sergey Fedoseev2015-11-021-3/+6
| | | | | | GIS functions Added support for ST_Difference/ST_Intersection/ST_SymDifference.
* Fixed #25655 -- Dropped support for GEOS < 3.3Sergey Fedoseev2015-11-015-39/+5
|
* Fixed #25636 -- Dropped support for SpatiaLite < 3.0Sergey Fedoseev2015-10-312-35/+6
|
* Fixed #25622 -- Accounted for generic relations in the ↵Simon Charette2015-10-291-1/+3
| | | | | | admin to field validation Thanks to Jonathan Liuti for the report and Tim Graham for the review.
* Fixed #20846 -- Increased User.username max_length to ↵Tim Graham2015-10-292-2/+34
| | | | | | 254 characters. Thanks Collin Anderson and Nick Sandford for work on the patch.
* Fixed #25630 -- Replaced `AsGeoHash` with `GeoHash` in ↵Sergey Fedoseev2015-10-292-5/+5
| | | | unsupported GIS functions
* Refs #25588 -- Added the srid property to GDALRasterDaniel Wiesmann2015-10-281-0/+14
| | | | | Geometry objects have an srid property, so this addition makes the raster api more similar to the geometries api.
* Moved around imports in PostGIS operationsClaude Paroz2015-10-271-5/+2
| | | | Thanks Daniel Wiesmann for inspiration.
* Fixed #25596 -- Fixed regression in password change view ↵Tim Graham2015-10-271-2/+3
| | | | | | | with custom user model. The reverse() added in 50aa1a790ca66c2a93e0a52e00c53375b269ff49 crashed on a custom user model.
* Fixed #25597 -- Fixed crash with SplitArrayField and ↵Tim Graham2015-10-271-1/+1
| | | | IntegerField on invalid value.
* Fixed #25611 -- Standardized descriptor signatures.Tim Graham2015-10-262-8/+8
|
* Fixed #25583 -- Allowed calling `transform` with ↵Sergey Fedoseev2015-10-241-2/+6
| | | | `CoordTransform` even if SRID is invalid.
* Fixed #25592 -- Fixed misnamed strictly_above PostGIS lookupClaude Paroz2015-10-221-1/+1
| | | | | Fixes a regression from 2bd1bbc42. Thanks Daniel Wiesmann for the report and Tim Graham for the review.
* Fixed #25519 -- Made the admin "View site" link point to ↵Dheerendra Rathor2015-10-221-1/+6
| | | | | | | sites running on a subpath. Used request.META['SCRIPT_NAME'] as the site_url if it hasn't been customized from the default value of '/'.
* Fixed #25585 -- Allowed setting OGRGeometry srid/srs ↵Sergey Fedoseev2015-10-221-1/+3
| | | | attributes to `None`.
* Fixed #24976 -- Fixed missing form label in tabular inline.matiasb2015-10-211-1/+10
| | | | | If the model form had a form field specified, the label rendered as "None".
* 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 #25580 -- Allowed `None` to be set as SRID value.Sergey Fedoseev2015-10-211-1/+1
|
* Fixed #25566 -- Added title to admin's closing popup ↵Ville Skyttä2015-10-191-2/+2
| | | | response page
* Fixed #25565 -- Removed action="" from admin forms ↵Ville Skyttä2015-10-197-7/+7
| | | | (invalid in HTML5).
* 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 #24687 -- Added select_related() validation for ↵Tim Graham2015-10-101-2/+4
| | | | | | | | | | 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.
* Refs #25499 -- Fixed expressions in distance lookups on ↵Claude Paroz2015-10-091-1/+1
| | | | Oracle.
* Updated translation catalogsClaude Paroz2015-10-098-280/+359
| | | | Forward port of f717cb2ab4 from stable/1.9.x.
* 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 #22938 -- Allowed clearsessions to remove ↵Aleksandra Tarkowska2015-10-031-3/+10
| | | | file-based sessions.
* 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.
* 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.
* Used getattr() to simplify contrib.messages.api.Curtis Maloney2015-09-271-2/+2
|
* Used ternary operator to simplify contrib.messages.api.GhostThrone2015-09-251-8/+2
|
* Fixed #25457 -- Improved formatting of password ↵Tzu-ping Chung2015-09-252-2/+2
| | | | validation errors in management command output.
* Increased the default PBKDF2 iterations for the 1.10 ↵Tim Graham2015-09-241-1/+1
| | | | release cycle.
* Refs #24099 -- Removed compatibility shim for ↵Tim Graham2015-09-241-11/+0
| | | | ContentType.name field.
* Refs #23957 -- Required session verification per ↵Tim Graham2015-09-243-9/+5
| | | | deprecation timeline.
* Refs #24152 -- Removed deprecated GeoQuerySet aggregate ↵Tim Graham2015-09-241-97/+1
| | | | | | methods. Per deprecation timeline.
* Refs #21648 -- Removed is_admin_site option from ↵Tim Graham2015-09-241-12/+2
| | | | | | password_reset() view. Per deprecation timeline.