summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-03-21Fixed #27915 -- Allowed Meta.indexes to be defined in abstract models.Tim Graham
Thanks Markus Holtermann for review.
2017-03-21Fixed #27949 -- Doc'd how OpenLayers 3 widgets work.Tim Graham
2017-03-21Refs #27919 -- Changed contrib widget's get_context() attrs kwarg to an arg.Tim Graham
Follow up to 075e93c16a82ba7869a0b2d572e99fdbd0724042.
2017-03-21Fixed #27963 -- Removed unneeded docstring example in contributing docs.Mikkel Munch Mortensen
2017-03-21Refs #27919 -- Changed Widget.get_context() attrs kwarg to an arg.Tim Graham
2017-03-21Refs #27919 -- Passed ChoiceWidget.create_option() kwargs as expected.Tim Graham
2017-03-21Removed more GeoQuerySet leftovers.Sergey Fedoseev
Follow up to a0d166306fbdc41f49e6fadf4ec84b17eb147daa.
2017-03-21Fixed #27965 -- Fixed precision comparison in a geoforms test (refs #27939).Sergey Fedoseev
2017-03-21Removed an obsolete temporal reference in docs/faq/general.txt.Garry Polley
2017-03-20Removed extra characters in docs header underlines.Mariusz Felisiak
2017-03-20Fixed #27957 -- Removed technical terms from ↵Jon Dufresne
InlineForeignKeyField/ModelMultipleChoiceField error messages.
2017-03-20Fixed #27890 -- Fixed FileNotFoundError cleanup exception in runtests.py on ↵Tim Graham
Python 3.6+.
2017-03-20Refs #27935 -- Fixed BrinIndex.max_name_length if a project's default ↵Mariusz Felisiak
database isn't PostgreSQL. Thanks Florian Apolloner for the report.
2017-03-20Removed BaseSpatialOperations.truncate_params.Sergey Fedoseev
Unused since 32969c3931dea8488ee4ad2849eab43e31e5542e.
2017-03-18Fixed #27724 -- Fixed SelectDateWidget redisplay if a year isn't chosen.Adonys Alea Boffill
2017-03-18Added tests for SelectDateWidget.format_value().Adonys Alea Boffill
2017-03-18Removed unused connector parameter of Query.build_filter().Mads Jensen
Unused since 6fe2b001dba45134d7c10729c57959995e241a88.
2017-03-18Removed unused rest_of_lookups parameter of Query.try_transform().Mads Jensen
Unused since 534aaf56f4a8e261e111426b2a709e2f8816192f.
2017-03-18Fixed #27935 -- Fixed crash with BrinIndex name > 30 characters.Mads Jensen
2017-03-17Fixed #27939 -- Updated OpenLayersWidget.map_srid for OpenLayers 3.Tim Graham
Regression in 2ebfda38e65177dfc7d6e90457ffa4a0fa2796f0 (refs #25004).
2017-03-17Clarified return value of NumGeometries GIS function.Sergey Fedoseev
2017-03-17Fixed #27948 -- Removed incorrect unquote() in static serving views.Tim Graham
2017-03-17Replaced type-specific assertions with assertEqual().Tim Graham
Python docs say, "it's usually not necessary to invoke these methods directly."
2017-03-17Removed MySQL (unsupported) from Perimeter docs.Sergey Fedoseev
2017-03-16Removed self from method signatures in docs.Alasdair Nicol
2017-03-16Added SpatiaLite NumPoints support for non-LINESTRING geometries.Sergey Fedoseev
2017-03-16Linked GIS functions docs to corresponding PostGIS docs.Sergey Fedoseev
2017-03-16Removed unused words from docs/spelling_wordlist.Mariusz Felisiak
2017-03-16Updated postgis.net and gaia-gis.it links to https.Tim Graham
2017-03-16Updated Django checkout URL to use https.Adi Mukherjee
It's slightly more compatible than the git protocol.
2017-03-16Fixed nondeterministic ordering test failure in model_forms.Mariusz Felisiak
2017-03-16Removed GeoQuerySet leftovers.Sergey Fedoseev
Follow up to a0d166306fbdc41f49e6fadf4ec84b17eb147daa.
2017-03-15Fixed #27897 -- Fixed crash with 'pk' in ModelAdmin.search_filters.Josh Schneier
2017-03-15Fixed #27882 -- Allowed {% cache %} to cache indefinitely.Bo Marchman
2017-03-15Refs #27563 -- Fixed ModelChoiceField.__deepcopy__() so forms don't share a ↵Tim Graham
queryset cache. Thanks Luke Benstead for the report Simon Charettes for the fix.
2017-03-15Fixed #27918 -- Documented ChoiceWidget.option_template_namePavel Kulikov
2017-03-15Fixed incorrect import in docs/ref/models/expressions.txt.lb1c
2017-03-14Fixed #27834 -- Added StrIndex database function.Brad Melin
2017-03-14Replaced docs/internals/team.txt with DSF teams page.Tobias McNulty
2017-03-14Fixed #27920 -- Restored empty RadioSelect choice producing value=""Claude Paroz
Regression in b52c73008a9d67e9ddbb841872dc15cdd3d6ee01. Thanks Tim Graham for the review.
2017-03-14Fixed typo in docs/topics/db/aggregation.txt header.Mads Jensen
2017-03-14Used constant instead of hard-coded value for max index name lengthMads Jensen
Refs #26709
2017-03-13Refs #27788 -- Removed Oracle 11 workarounds in GIS tests.Sergey Fedoseev
2017-03-13Typo fix.Florian Apolloner
2017-03-11Fixed #27904 -- Added a system check that Field.validators are callable.Adam Chainz
2017-03-10Fixed #27924 -- Added support for cx_Oracle 5.3.Mariusz Felisiak
- Fixed Oracle backend due to cx_Oracle 5.3 change in the Cursor.description behavior i.e. "Use None instead of 0 for items in the Cursor.description attribute that do not have any validity.". - Used cx_Oracle.Object.size() instead of len(). Thanks Tim Graham for the review.
2017-03-09Decoupled test client encoding tests from JSON handlingClaude Paroz
Using JSON as non-UTF-8 content is controversial, and the RFC 7159 discourages it. Thanks Tim Graham for the review.
2017-03-09Described DEBUG_PROPAGATE_EXCEPTIONS behavior in more detail.Tim Graham
2017-03-09Reverted "Refs #16682 -- Tested transaction.atomic() with KeyboardInterrupt."Tim Graham
This reverts commit d895fc9ac01db3d3420aa7c943949fe17b3ce028 since the test is problematic as described in the ticket.
2017-03-08Fixed #27911 -- Doc'd how to register custom User with admin.David D Lowe