summaryrefslogtreecommitdiff
path: root/django/contrib
AgeCommit message (Collapse)Author
2017-04-01Fixed #25605 -- Made GIS DB functions accept geometric expressions, not only ↵Sergey Fedoseev
values, in all positions.
2017-03-30Fixed #27942 -- Prevented admin from adding "add" buttons to all tables in ↵Adonys Alea Boffill
inlines.
2017-03-30Updated minified admin JavaScript for the latest closure compiler.Tim Graham
2017-03-30Fixed #25873 -- Made GEOSGeometry handle the srid parameter more predictably.Sergey Fedoseev
2017-03-29Refs #25759 -- Fixed some GIS Funcs if different database backends are used.Sergey Fedoseev
2017-03-29Fixed #27973 -- Fixed GeoJSON representation of LinearRing and custom ↵Sergey Fedoseev
GEOSGeometry subclasses.
2017-03-29Made isvalid lookup use IsValid function to decrease code redundancy.Sergey Fedoseev
2017-03-27Refs #27736 -- Used decorators for GIS lookup registration.Sergey Fedoseev
2017-03-27Refs #23919 -- Removed some Python 2 compatibility code and comments.Mads Jensen
2017-03-25Removed unused GISLookup._check_geo_field().Sergey Fedoseev
Unused since a0d166306fbdc41f49e6fadf4ec84b17eb147daa.
2017-03-23Fixed #27962 -- Allowed lookups on Area annotations.Sergey Fedoseev
2017-03-23Fixed #27603 -- Fixed AsKML when queryset is evaluated more than once.Sergey Fedoseev
2017-03-23Simplified handling of expressions in StatAggregate.Sergey Fedoseev
2017-03-21Fixed #27960 -- Set errcheck=False for GDALAllRegister to prevent crash.Sergey Fedoseev
GDALAllRegister returns void so errcheck is not needed.
2017-03-21Refs #27919 -- Changed contrib widget's get_context() attrs kwarg to an arg.Tim Graham
Follow up to 075e93c16a82ba7869a0b2d572e99fdbd0724042.
2017-03-21Removed more GeoQuerySet leftovers.Sergey Fedoseev
Follow up to a0d166306fbdc41f49e6fadf4ec84b17eb147daa.
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 #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-17Fixed #27948 -- Removed incorrect unquote() in static serving views.Tim Graham
2017-03-16Added SpatiaLite NumPoints support for non-LINESTRING geometries.Sergey Fedoseev
2017-03-16Updated postgis.net and gaia-gis.it links to https.Tim Graham
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-14Fixed #27920 -- Restored empty RadioSelect choice producing value=""Claude Paroz
Regression in b52c73008a9d67e9ddbb841872dc15cdd3d6ee01. Thanks Tim Graham for the review.
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-07Fixed #27891 -- Added PasswordResetConfirmView.post_reset_login_backend.Camilo Nova
2017-03-07Fixed #27905 -- Added RelatedFieldWidgetWrapper.value_omitted_from_data().Raphael Merx
2017-03-07Reverted "Fixed #27878, refs #23919 -- Used python3 shebangs."Tim Graham
This reverts commit 4cffa9a1ffb37d4de7e99a851a9ed87b3c02d229.
2017-03-06Fixed #27475 -- Fixed NonExistentTimeError crash in ModelAdmin.date_hierarchy.Anton Samarchyan
2017-03-04Refs #27795 -- Removed unneeded force_text callsClaude Paroz
Thanks Tim Graham for the review.
2017-03-04Refs #27656 -- Updated remaining docstring verbs according to PEP 257.Anton Samarchyan
2017-03-02Fixed #27889 -- Fixed incorrect check error if ModelAdmin.ordering refers to ↵David Szotten
'pk'.
2017-02-28Fixed #27842 -- Added protocol kwarg to GenericSitemap.__init__().Alexey Opalev
2017-02-27Imported django.http classes instead of django.http.Asif Saifuddin Auvi
2017-02-24Refs #25187 -- Fixed AuthBackend.authenticate() compatibility for signatures ↵Tim Graham
that accept a request kwarg.
2017-02-23Refs #23919 -- Used yield from.Vytis Banaitis
2017-02-23Fixed #27878, refs #23919 -- Used python3 shebangs.Chris Lamb
2017-02-22Fixed typos in code comments.Anton Samarchyan
2017-02-20Fixed #27850 -- Made RelatedFieldWidgetWrapper call render() of the wrapped ↵Collin Anderson
widget.
2017-02-15Fixed #27840 -- Fixed KeyError in PasswordResetConfirmView.form_valid().Markus Holtermann
When a user is already logged in when submitting the password and password confirmation to reset a password, a KeyError occurred while removing the reset session token from the session. Refs #17209 Thanks Quentin Marlats for the report and Florian Apolloner and Tim Graham for the review.
2017-02-11Refs #26610 -- Added CIText mixin and CIChar/Email/TextField.Mads Jensen
2017-02-11Fixed #25524 -- Removed GISOperations.get_distance()'s handle_spheroid param.Tim Graham
2017-02-09Refs #23919 -- Removed default 'utf-8' argument for str.encode()/decode().Tim Graham
2017-02-07Fixed #27356 -- Fixed ModelAdmin.lookup_allowed() for some nested relations.Anton Samarchyan
2017-02-07Fixed #26903 -- Fixed __contains lookup for Date/DateTimeRangeField.Mariusz Felisiak
Thanks Mariusz Felisiak and Tim Graham for polishing the patch.
2017-02-07Refs #27795 -- Removed force_text from the template layerClaude Paroz
Thanks Tim Graham for the review.
2017-02-07Refs #27815 -- Reordered LoginView.get_form_kwargs().Tim Graham
2017-02-07Fixed #27815 -- Made LoginView pass the request kwarg to AuthenticationForm.Zoltan Gyarmati