summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-09-02Fixed #28367 -- Doc'd how to override management commands.jkrzy
2017-09-02Fixed #28306 -- Completed test coverage for django.utils.lorem_ipsum.LBerrocal
Thanks Idan Melamed for the original patch.
2017-09-02Fixed #28332 -- Fixed diamond inheritence example in docs.Jeremy Satterfield
2017-09-02Fixed #17985 -- Documented ModelAdmin.lookup_allowed().Simon Meers
2017-09-02Fixed #28525 -- Documented GDAL and GeoIP exceptions.Nick Pope
2017-09-02Fixed typos in docs/releases/1.10.txt.Berker Peksag
2017-09-02Simplified index bounds checking in GDAL objects.Nick Pope
2017-09-02Fixed #28559 -- Removed contrib.gis.gdal.OGRException backwards ↵Nick Pope
compatibility alias.
2017-09-01Fixed test in auth_tests modifying data from setUpTestData().François Freitag
2017-09-01Fixed #28557 -- Fixed ForeignKey/OneToOneField/ManyToManyField argument name ↵Tim Graham
in docs.
2017-09-01Refs #26522 -- Forwardported 1.11.5 release note.Tim Graham
2017-09-01Reordered GeoIP docs be consistent with GDAL/GEOS ordering.Nick Pope
2017-09-01Made GeoIP docs headers consistent with other GIS docs.Nick Pope
2017-08-31Refs #23276 -- Fixed explanation of how calling views works.Tim Graham
"Importing the view" is no longer applicable after a9fd740d22bc4fed5fdb280c036618000ee13df1.
2017-08-31Fixed #28549 -- Fixed QuerySet.defer() with super and subclass fields.Jeremy Kerr
Previously, deferring fields in different classes didn't omit the superclass' deferred field. Thanks Simon Charette for the suggested fix.
2017-08-31Fixed #28543 -- Prevented ManyToManyField.value_from_object() from being lazy.Tim Graham
Previously, it was a QuerySet which could reevaluate to a new value if the model's data changes. This is inconsistent with other Field.value_from_object() methods. This allows reverting the fix in the admin for refs #27998.
2017-08-31Fixed #28524 -- Fixed program name in management commands when using 'python ↵Nick Pope
-m django'.
2017-08-31Removed useless itertools.chain() call in ChoiceWidget.optgroups().Sergey Fedoseev
2017-08-31Refs #28487 -- Forwardported 1.11.5 release note.Tim Graham
2017-08-31Simplified model's Options._get_fields() a bit.Sergey Fedoseev
2017-08-30Fixed #27701 -- Doc'd staticfiles runserver bypasses middleware when serving ↵jkrzy
static files.
2017-08-30Fixed #28548 -- Replaced 'middlewares' with 'middleware' in docs.Jkrzy
2017-08-29Fixed #28530 -- Prevented SelectDateWidget from localizing years in output.caleb logan
2017-08-29Simplified contrib.gis.geos.prototypes by replacing c_char with c_byte.Sergey Fedoseev
2017-08-28Fixed #28536 -- Removed old JS cross-browser utilitiesClaude Paroz
2017-08-26Added Media.__repr__().Collin Anderson
It makes it easier to debug MediaOrderConflictWarnings (refs #28377).
2017-08-26Removed lone usage of jQuery in admin's calendar.jsClaude Paroz
2017-08-26Complemented datetime picker selenium testClaude Paroz
This includes test coverage for the calendarMonth JS function in calendar.js
2017-08-26Refs #27869 -- Omitted field kwargs from GinIndex.deconstruct() if they're None.Mads Jensen
2017-08-26Refs #25809 -- Omitted pages_per_range from BrinIndex.deconstruct() if it's ↵Mads Jensen
None.
2017-08-26Fixed #28532 -- Fixed typo in PostgreSQL field docsClaude Paroz
Thanks Andreas Poisel for the report.
2017-08-25Simplified migrations.state.ProjectState.__eq__().Sergey Fedoseev
2017-08-24Fixed #28518 -- Improved performance of loading geometries from DB.Sergey Fedoseev
2017-08-24Used sets for CheckRegistry.registered_checks and deployment_checks.Sergey Fedoseev
2017-08-24Fixed #28513 -- Added POST request support to LogoutView.hui shang
2017-08-24Fixed #28380 -- Excluded null geometries in SpatiaLite geometry lookups.Fabian Schindler
2017-08-23Simplified migrations.graph.Node.iterative_dfs(), ancestors(), and ↵Sergey Fedoseev
descendants().
2017-08-23Fixed #27796 -- Prevented middleware being loaded twice with runserverClaude Paroz
Thanks Tim Graham for the review.
2017-08-23Removed unneeded iter() calls.Sergey Fedoseev
A few of these were unnecessarily added in 2b281cc35ed9d997614ca3c416928d7fabfef1ad.
2017-08-23Refs #28459 -- Improved performance of SQLCompiler.apply_converters().Sergey Fedoseev
2017-08-23Used frozenset instead of dict for GeoIP2.cache_options for simplicity.Sergey Fedoseev
2017-08-23Used OrderedDict.fromkeys() to initialize OrderedDict with None values.Sergey Fedoseev
2017-08-23Refs #28498 -- Forwardported 1.11.5 release note.Mariusz Felisiak
2017-08-23Fixed typo in docs/releases/1.11.5.txt.Mariusz Felisiak
2017-08-22Fixed #27931 -- Clarified the meaning of "django catch-all logger."Kim DoHyeon
2017-08-22Simplified usage of sets in MigrationAutodetector.Sergey Fedoseev
2017-08-22Fixed #28451 -- Restored pre-Django 1.11 Oracle sequence/trigger naming.Kevin Grinberg
Regression in 69b7d4b116e3b70b250c77829e11038d5d55c2a8.
2017-08-22Refs #28459 -- Improved performance of FlatValuesListIterable.Sergey Fedoseev
2017-08-22Added "test --keepdb" to testing speedup docs.Harry Moreno
2017-08-22Fixed incorrect indentation in remove_stale_contenttypes.Nick Pope
It's unnecessary for content_type_display to be constructed from ct_info in every loop iteration.