Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* Fixed GIS test failures when GDAL is not installedHEADmasterClaude Paroz2015-11-071-0/+1
| | | | Thanks Iacopo Spalletti for the report and testing.
* Fixed #25673 -- Made `GeometryField.from_db_value` set SRIDSergey Fedoseev2015-11-061-0/+4
|
* Fixed #25668 -- Misc spelling errorsVille Skyttä2015-11-038-13/+13
|
* Fixed #25629 -- Added checks of the number of arguments ↵Sergey Fedoseev2015-11-031-0/+3
| | | | for GeoDjango DB functions.
* Fixed #25661 -- Fixed checking number of points during ↵Sergey Fedoseev2015-11-021-0/+32
| | | | list assignment for `LinearRing`.
* Refs #25629 -- Added `arity` class attribute to `Func` ↵Sergey Fedoseev2015-11-021-0/+3
| | | | expressions
* Fixed #25664 -- Fixed `dims` for `Point`Sergey Fedoseev2015-11-021-0/+20
|
* Fixed #25659 -- Added missing support for MySQL 5.6.1 ↵Sergey Fedoseev2015-11-021-15/+10
| | | | | | GIS functions Added support for ST_Difference/ST_Intersection/ST_SymDifference.
* Fixed #25655 -- Dropped support for GEOS < 3.3Sergey Fedoseev2015-11-012-16/+11
|
* Fixed #25635 -- Made URLValidator allow '+' in scheme.Dheerendra Rathor2015-10-311-1/+2
|
* Fixed #25636 -- Dropped support for SpatiaLite < 3.0Sergey Fedoseev2015-10-313-26/+9
|
* Refs #25550 -- Removed reverse related set assignment in ↵Tim Graham2015-10-311-6/+4
| | | | selenium tests.
* Refs #24499 -- Removed an obsolete test check for ↵Tim Graham2015-10-301-4/+3
| | | | PostGIS 1.5.
* Fixed #16734 -- Set script prefix even outside of requestsClaude Paroz2015-10-293-0/+34
| | | | Thanks Tim Graham for the review.
* Fixed #25622 -- Accounted for generic relations in the ↵Simon Charette2015-10-293-12/+34
| | | | | | 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-0/+1
| | | | consecutive dots in the domain section.
* Ignored docutils deprecation warnings in runtests.py.Tim Graham2015-10-281-0/+3
|
* Refs #25588 -- Added the srid property to GDALRasterDaniel Wiesmann2015-10-281-0/+10
| | | | | Geometry objects have an srid property, so this addition makes the raster api more similar to the geometries api.
* Fixed #25609 -- Fixed regression in related field nested ↵Ian Foote2015-10-271-0/+6
| | | | lookup error.
* Revert "Fixed #25417 -- Added a field check for invalid ↵Simon Charette2015-10-271-68/+0
| | | | | | default values." This reverts commit 71ebcb85b931f43865df5b322b2cf06d3da23f69.
* Fixed #25441 -- Added support for negative filesize to ↵Sambhav Satija2015-10-271-0/+4
| | | | | | filesizeformat template filter. Thanks Andrey Yakovlev for the initial patch.
* Removed unnecessary app_label='auth' on auth_tests models.Tim Graham2015-10-277-30/+9
| | | | This is a relic of when the tests were stored in contrib.auth.tests.
* Fixed #25596 -- Fixed regression in password change view ↵Tim Graham2015-10-273-7/+4
| | | | | | | 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-0/+5
| | | | IntegerField on invalid value.
* Fixed #25550 -- Deprecated direct assignment to the ↵Tim Graham2015-10-2724-86/+137
| | | | reverse side of a related set.
* Fixed #25611 -- Standardized descriptor signatures.Tim Graham2015-10-261-3/+3
|
* Fixed #25610 -- Reverted removal of request.current_app ↵Marten Kenbeek2015-10-261-0/+20
| | | | | | | in {% url %} tag. The deprecation removal in 5e450c52aafb62b9d83c8ac08892e0b92cbec4aa removed too much.
* Fixed #25604 -- Added makemigrations --check option.Jon Dufresne2015-10-241-1/+15
| | | | Command exits with non-zero status if changes without migrations exist.
* Fixed #25583 -- Allowed calling `transform` with ↵Sergey Fedoseev2015-10-241-17/+18
| | | | `CoordTransform` even if SRID is invalid.
* Fixed #17133 -- Properly handled successive slashes in ↵Claude Paroz2015-10-232-0/+27
| | | | | | incoming requests Thanks gjanee@ucop.edu for the report and Tim Graham for the review.
* Refs #25589 -- Fixed admin_scripts test failure on Windows.Tim Graham2015-10-231-1/+1
| | | | | | | | | Traceback (most recent call last): File "tests\admin_scripts\tests.py", line 646, in test_startapp_unicode_name content = f.read() File "lib\encodings\cp1252.py", line 23, in decode return codecs.charmap_decode(input,self.errors,decoding_table)[0] UnicodeDecodeError: 'charmap' codec can't decode byte 0x81 in position 46: character maps to <undefined>
* Fixed "URLconf" spelling in code comments.Tim Graham2015-10-225-8/+8
|
* Fixed #25592 -- Fixed misnamed strictly_above PostGIS lookupClaude Paroz2015-10-222-4/+35
| | | | | 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-0/+5
| | | | | | | 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-3/+27
| | | | with Unicode characters in the name.
* Fixed #25571 -- Fixed boolean evaluation of ungettext_lazyClaude Paroz2015-10-221-0/+4
|
* Fixed #25470 -- Avoided unnecessary, expensive DATETIME ↵Mariusz Felisiak2015-10-222-2/+34
| | | | typecast on MySQL.
* Fixed #25585 -- Allowed setting OGRGeometry srid/srs ↵Sergey Fedoseev2015-10-221-0/+5
| | | | attributes to `None`.
* Fixed #24976 -- Fixed missing form label in tabular inline.matiasb2015-10-212-0/+9
| | | | | If the model form had a form field specified, the label rendered as "None".
* Fixed spelling of "unpicklable" in cache tests.Tim Graham2015-10-211-8/+7
|
* Fixed #25576 -- Added IOBase methods required by ↵Jon Dufresne2015-10-211-0/+9
| | | | TextIOWrapper to HttpResponse.
* Fixed #25580 -- Allowed `None` to be set as SRID value.Sergey Fedoseev2015-10-211-0/+4
|
* Fixed #25501 -- Made the file-based cache backend use ↵Andrew Artajos2015-10-201-0/+9
| | | | the highest pickling protocol.
* Fixed quad quoted ("""") docstring starts.John Vandenberg2015-10-202-2/+2
|
* Fixed #25562 -- Skipped a time dependent admin_filters ↵Tim Graham2015-10-201-0/+7
| | | | test on Windows.
* Refs #18012 -- Accounted for reverse proxy relations in ↵Simon Charette2015-10-201-0/+10
| | | | | | migrations. Thanks to Markus for the suggestion and Tim for the review.
* Fixed #25563 -- Cached deferred models in their proxied ↵Simon Charette2015-10-201-0/+20
| | | | | | model's _meta.apps. Thanks to Andriy Sokolovskiy for the report and Tim Graham for the review.
* Fixed #25567 -- Removed obsolete MEDIA_URL fallback in ↵Claude Paroz2015-10-191-526/+6
| | | | Media.absolute_path
* Fixed #25517 -- Made Concat function idempotent on SQLite.Josh Smeaton2015-10-171-1/+15
|
* Fixed #25346 -- Allowed collectstatic to delete broken ↵Yusuke Miyazaki2015-10-171-2/+12
| | | | symlinks.