summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-12-05Fixed unrendered rows in GIS DB functions table in docs.Sergey Fedoseev
Cells in the first column must contain some text. http://docutils.sourceforge.net/docs/dev/rst/problems.html#tables
2016-12-05Removed test workarounds for PROJ.4 < 4.7.0.Sergey Fedoseev
PROJ.4 4.7.0 was released on 25 Sep 2009 and is available in Ubuntu 12.04.
2016-12-05Removed deprecated html_translator_class sphinx config option.Tim Graham
2016-12-02Fixed #27561 -- Added Oracle support for binary "or" operator.Mariusz Felisiak
Removed DatabaseFeatures.supports_bitwise_or feature (unused, always True).
2016-12-02Updated LimitChoicesToTests to use setUpTestData and cosmetic edits.Tim Graham
2016-12-02Fixed #27563 -- Moved "apply limit_choices_to" code from BaseModelForm to ↵Jon Dufresne
fields_for_model().
2016-12-02Added stub release notes for 1.10.5.Tim Graham
2016-12-01Added release dates for 1.10.4, 1.9.12, 1.8.17.Tim Graham
2016-12-01Fixed #27119 -- Cached BaseFormSet.management_form propertyClaude Paroz
Thanks Tim Graham for the review.
2016-12-01Refs #27558 -- Added test for no index on InnoDB ForeignKey.Ed Morley
The refactor in 3f76d1402dac9c2993d588f996dc1c331edbc9a7 fixed the creation of redundant indexes. Forwardport of 82ce55dbbe2d96e8b5d1fcb4a1d52b73e08e7929 from stable/1.10.x
2016-12-01Fixed #27542 -- Made Client.force_login() skip auth backends without get_user().Anton Samarchyan
2016-12-01Refs #27505 -- Made Paginator's exception messsages translatable.Anton Bazhanov
2016-12-01Fixed #27546 -- Removed hardcoded class names in __repr__() methods.Keda87
2016-12-01Refs #27546 -- Tested some __repr__() methods.Keda87
2016-11-30Moved csrf_tests views to a spearate file.Tim Graham
2016-11-30Refs #27358 -- Removed invalid/unneeded FileField.upload_to in tests/docs.Tim Graham
2016-11-30Replaced RawSQL with Cast in Coalesce doc example.Simon Charette
2016-11-30Fixed #27557 -- Casted GEOSGeometry only when necessaryClaude Paroz
Thanks Pete Flugstad for the report, and Tim Graham for the review.
2016-11-30Fixed #27556 -- Added Oracle support for IsValid function and isvalid lookup.Sergey Fedoseev
2016-11-30Refs #24245 -- Added introspection for database defaults on Oracle.Mariusz Felisiak
2016-11-30Removed unneeded GeoAggregate.convert_value() & ↵Sergey Fedoseev
DatabaseOperations.convert_geom().
2016-11-30Added my bio.patjouk
2016-11-30Refs #27358 -- Fixed system check crash with an empty FileField.upload_to.Lex Berezhny
2016-11-30Refs #16859 -- Allowed storing CSRF tokens in sessions.Raphael Michel
Major thanks to Shai for helping to refactor the tests, and to Shai, Tim, Florian, and others for extensive and helpful review.
2016-11-30Simplified union GIS tests with equals() rather than equals_exact().Sergey Fedoseev
2016-11-30Fixed #27552 -- Added docs/test for GEOSGeometry.normalize().Sergey Fedoseev
2016-11-29Fixed #27507 -- Used SchemaEditor.execute() to run deferred_sql in migrate's ↵Lex Berezhny
sync_apps().
2016-11-29Fixed #27555 -- Removed django.utils.functional.lazy_property.Adam Chainz
2016-11-29Fixed #27181 -- Allowed contrib.sites to match domains with trailing ".".Anton Samarchyan
2016-11-29Added my bioAdam Chainz
2016-11-29Fixed #27358 -- Added a system check to prevent FileField's upload_to from ↵Henry Dang
starting with a slash. Thanks Frank Bijlsma for the initial patch.
2016-11-29Fixed #27402 -- Fixed incorrect LocaleMiddleware redirects with ↵Krzysztof Urbaniak
prefix_default_language=False.
2016-11-29Fixed #27544 -- Fixed QuerySet.update(dt=F('dt') + timedelta) crash on SQLite.Andrew Nester
2016-11-29Enabled GeoQuerySetTest.test_unionagg on Oracle; refs #23504.Sergey Fedoseev
It's not clear when it started to work.
2016-11-28Quoted group name in django/contrib/auth/models.py docstring.Nik Nyby
2016-11-28Fixed typo in docs/topics/auth/customizing.txt.Tim Graham
2016-11-28Fixed #27321 -- Added detection for table case name sensitivity on MySQL.Adam Chainz
2016-11-28Refs #26327 -- Renamed JsonAgg to JSONBAgg.Mads Jensen
Thanks to Christian von Roques for the report.
2016-11-25Fixed #27532 -- Deprecated Model._meta.has_auto_fieldAdam Chainz
2016-11-25Fixed #25966 -- Made get_user_model() work at import time.Aymeric Augustin
This makes it equivalent to: `from django.contrib.auth.models import User`. Thanks Aymeric Augustin for the initial patch and Tim Graham for the review.
2016-11-25Fixed grammar in sqlite's DatabaseOperations.bulk_batch_size()'s docstring.Daniel Hahler
2016-11-25Fixed #27509 -- Removed redundant gdal-bin dependency listing.Luke Murphy
2016-11-25Refs #16682 -- Replaced signal number with equivalent signal.SIGINT.Mariusz Felisiak
2016-11-24Fixed #27531 -- Added block.super to admin's delete confirmation extrahead ↵elky
blocks.
2016-11-24Improved the way Model.save() skips the auto_field.Adam Chainz
Identity comparison is quicker than isinstance(), and it avoids coupling between Model and AutoField.
2016-11-24Fixed #27517 -- Fixed charset param in SimpleTemplateResponse.__init__().Kosei Kitahara
2016-11-24Rephrased an ambiguous sentence in docs/topics/signals.txt.Daniel Musketa
2016-11-24Fixed typo in docs/topics/auth/customizing.txt.Alex Scott
2016-11-23Normalized casing of "custom user model".Tim Graham
2016-11-23Fixed #24370 -- Recommended starting with a custom user model.Krzysztof Gogolewski