Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/django
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 #25668 -- Misc spelling errorsVille Skyttä2015-11-034-5/+5
|
* 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`.
* Refs #25629 -- Added `arity` class attribute to `Func` ↵Sergey Fedoseev2015-11-023-10/+11
| | | | expressions
* 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 #25635 -- Made URLValidator allow '+' in scheme.Dheerendra Rathor2015-10-311-1/+1
|
* Fixed #25636 -- Dropped support for SpatiaLite < 3.0Sergey Fedoseev2015-10-312-35/+6
|
* Fixed #16734 -- Set script prefix even outside of requestsClaude Paroz2015-10-292-2/+11
| | | | Thanks Tim Graham for the review.
* 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 #25620 -- Made URLValidator prohibit URLs with ↵Dheerendra Rathor2015-10-291-1/+1
| | | | consecutive dots in the domain section.
* 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.
* Refs #25618 -- Removed detection of south migrations in ↵Tim Graham2015-10-281-15/+1
| | | | | | | loader. It doesn't seem relevant for anyone upgrading to Django 1.10 and beyond.
* Moved around imports in PostGIS operationsClaude Paroz2015-10-271-5/+2
| | | | Thanks Daniel Wiesmann for inspiration.
* Fixed #25609 -- Fixed regression in related field nested ↵Ian Foote2015-10-271-1/+4
| | | | lookup error.
* Revert "Fixed #25417 -- Added a field check for invalid ↵Simon Charette2015-10-271-17/+0
| | | | | | default values." This reverts commit 71ebcb85b931f43865df5b322b2cf06d3da23f69.
* Renamed filesizeformat tag's bytes variable to avoid ↵Sambhav Satija2015-10-271-16/+16
| | | | clash with builtin.
* Fixed #25441 -- Added support for negative filesize to ↵Sambhav Satija2015-10-271-0/+6
| | | | | | filesizeformat template filter. Thanks Andrey Yakovlev for the initial patch.
* 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 #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 #25550 -- Deprecated direct assignment to the ↵Tim Graham2015-10-273-2/+9
| | | | reverse side of a related set.
* Fixed #25611 -- Standardized descriptor signatures.Tim Graham2015-10-2610-25/+25
|
* Fixed #25610 -- Reverted removal of request.current_app ↵Marten Kenbeek2015-10-261-2/+5
| | | | | | | in {% url %} tag. The deprecation removal in 5e450c52aafb62b9d83c8ac08892e0b92cbec4aa removed too much.
* 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.
* Fixed #25583 -- Allowed calling `transform` with ↵Sergey Fedoseev2015-10-241-2/+6
| | | | `CoordTransform` even if SRID is invalid.
* Renamed deprecated logger.warn to warningClaude Paroz2015-10-241-1/+1
|
* 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-223-5/+5
|
* 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 #25589 -- Allowed startapp/project to create apps ↵Yoong Kang Lim2015-10-221-8/+15
| | | | with Unicode characters in the name.
* Fixed #25571 -- Fixed boolean evaluation of ungettext_lazyClaude Paroz2015-10-221-0/+6
|
* Fixed #25470 -- Avoided unnecessary, expensive DATETIME ↵Mariusz Felisiak2015-10-221-10/+8
| | | | typecast on MySQL.
* 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 #25576 -- Added IOBase methods required by ↵Jon Dufresne2015-10-211-0/+6
| | | | 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 #25580 -- Allowed `None` to be set as SRID value.Sergey Fedoseev2015-10-211-1/+1
|
* Fixed #25501 -- Made the file-based cache backend use ↵Andrew Artajos2015-10-201-2/+2
| | | | the highest pickling protocol.