summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-12-15Fixed #25938 -- Factored out CPointerBase base class for GEOSBase/GDALBase.Sergey Fedoseev
2016-12-15Fixed #27576 -- Made get_srid_info() fallback to GDAL if SpatialRefSys is ↵Sergey Fedoseev
unavailable.
2016-12-15Doc'd how ModelAdmin.list_display uses short_description.Javier Rojas
2016-12-15Fixed #27497 -- Improved support of geodetic coordinates on SpatiaLite.Sergey Fedoseev
Area function, Distance function, and distance lookups now work with geodetic coordinates on SpatiaLite.
2016-12-15Fixed #27602 -- Added Oracle support for BoundingCircle GIS function.Sergey Fedoseev
2016-12-15Fixed #27607 -- Added Oracle support for AsGML GIS function.Sergey Fedoseev
2016-12-15Optimized Model instantiation a bit.Adam Chainz
* Avoid some unnecessary attribute lookups, e.g. access signals directly rather than from module * Alias some repeat accesses inside the method to use the slightly faster local lookups * Use tuple to iterate remaining kwargs as it's faster to construct * Cache Field.get_default() to avoid running through all the logic on every call * Use a cached list of the properties on the model class to avoid repeat isinstance() calls
2016-12-15Refs #27558 -- Isolated indexes test on MySQL.Tim Graham
MySQL schema changes must be done in TransactionTestCase.
2016-12-15Corrected docs claiming AsGML is supported on Oracle.Tim Graham
2016-12-15Improved testing of num_seg kwarg of BoundingCircle GIS function.Sergey Fedoseev
2016-12-15Fixed #27582 -- Allowed HStoreField to store null values.David Hoffman
2016-12-15Fixed #25751 -- Doc'd how to use JavaScriptCatalog with i18n_patterns().Ben Wilkins
2016-12-15Used assertRaisesMessage() in template_backends tests.Tim Graham
2016-12-15Simplified a GIS test by using an SRID available on all backends.Sergey Fedoseev
2016-12-14Fixed #27418 -- Fixed occasional missing plural forms in JavaScriptCatalog.Waldemar Kornewald
2016-12-14Fixed #27313 -- Allowed overriding admin popup response template.Michael Scott
2016-12-14Used ternary if/else in utils.lorem_ipsum.words().Michael Lelyakin
2016-12-14Fixed missing versionadded/changed annotations on docs.djangoproject.com.Tim Graham
Fixed a regression in bacdfbf3d1eb23ff8e8110681728a5b467443446.
2016-12-14Fixed #27599 -- Fixed Field.__str__() crash for fields not attached to models.Morgan Aubert
2016-12-14Added Prefetch import to first use in QuerySet docs.Perry Roper
2016-12-14Moved test_field_ordering to the model_fields package.Morgan Aubert
2016-12-14Fixed #27598 -- Allowed specifying directories for a filesystem template loader.Tim Graham
Thanks Carl Meyer for review.
2016-12-14Fixed #27594 -- Fixed select_related() with reverse self-referential ↵Daniel Hillier
OneToOneField. Fixed definition of `klass_info['from_parent']` so that two models aren't considered from a parent class if the model classes are the same.
2016-12-14Fixed #27592 -- Doc'd that QueryDict iter methods are Python 2 only.Tim Graham
2016-12-13Removed an unnecessary, discouraging sentence on the "It worked!" page.Merrin Macleod
2016-12-12Refs #27184 -- Fixed unclosed file ResourceWarning in test_client test.Jon Dufresne
2016-12-12Fixed #27588 -- Removed unneeded colon in makemigrations output.Tim Graham
2016-12-10Fixed #27310 -- Stopped rendering apps in RenameModel.state_forwards.Simon Charette
Thanks Tim for the review.
2016-12-09Fixed #27583 -- Fixed MultiValueDict.getlist() crash when values for key is ↵Mariusz Felisiak
None. Restored the behavior before 727d7ce6cba21363470aaefb2dc5353017531be3.
2016-12-08Fixed #27355 -- Added “Creating extension using migrations” docs.ntuckovic
2016-12-08Imported specific models in a few tests that didn't.Tim Graham
2016-12-08Fixed #27472 -- Fixed GEOSGeometry('POINT EMPTY').transform crash.Sergey Fedoseev
2016-12-08Refs #27472 -- Fixed OGRGeometry('POINT EMPTY').geos crash.Sergey Fedoseev
2016-12-08Refs #27472 -- Fixed GEOSGeometry('POINT EMPTY').ogr crash.Sergey Fedoseev
2016-12-08Fixed #13312 -- Allowed specifying the order of null fields in queries.Yohann Gabory
Thanks Mariusz Felisiak for finishing the patch.
2016-12-08Simplified Transform GIS function by setting output_field.Sergey Fedoseev
2016-12-08Fixed #27566 -- Clarified overriding ModelAdmin.save_model()/delete_model() ↵Doug Harris
docs.
2016-12-08Added period in BaseFormView docstring.Collederas
2016-12-07Fixed #17002 -- Allowed using a ManyToManyField through model that inherits ↵InvalidInterrupt
another.
2016-12-07Fixed #27579 -- Added aliases for Python 3's assertion names in SimpleTestCase.Tim Graham
2016-12-07Fixed #25708 -- Fixed annotations with geometry values.Sergey Fedoseev
2016-12-07Refs #17235 -- Made MultiPartParser leave request.POST immutable.Vinay Karanam
2016-12-06Fixed #26789 -- Fixed handling of empty geometries in ↵Sergey Fedoseev
BaseSpatialField.get_db_prep_save().
2016-12-06Refs #26789 -- Fixed output of WKBWriter for empty points and polygons.Sergey Fedoseev
2016-12-06Fixed #27416 -- Prevented ModelFormSet from creating objects for invalid PKs ↵Hiroki Kiyohara
in data.
2016-12-06Fixed #27567 -- Fixed crash in the debug view when request.user errors.Andreas Pelme
2016-12-06Fixed #18729 -- Made admin changelist not use distinct() if a list_filter ↵nmhung89
doesn't require it.
2016-12-06Fixed #26494 -- Made Archive.extract() preserve file permissions.Anton Samarchyan
2016-12-05Refs #27025 -- Fixed Python 3.6 deprecation warning for empty model super() ↵Tim Graham
calls. https://bugs.python.org/issue23722 Thanks Nick Coghlan for advice and review.
2016-12-05Refs #27324 -- Optimized DatabaseIntrospection.get_constraints() for foreign ↵Mariusz Felisiak
keys on Oracle.