summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-10-14Fixed #27349 -- Doc'd the CSRF_FAILURE_VIEW setting in view topic guide.David D Lowe
2016-10-14Fixed #27345 -- Stopped setting the Date header in ConditionalGetMiddleware.Tim Graham
2016-10-14Tested QuerySet compatibility check.Tim Graham
cdfdcf4b70bebfc68871df885387790c6afbc23c missed this test.
2016-10-14Refs #19705 -- Changed gzip modification times to 0.Kevin Christopher Henry
This makes gzip output deterministic, which allows ConditionalGetMiddleware to reliably compare ETags on gzipped content (views using the gzip_page() decorator in particular).
2016-10-14Refs #19705 -- Documented decorator ordering with @condition().Kevin Christopher Henry
2016-10-13Tested invalid QuerySet.order_by() arguments.Tim Graham
2016-10-13Removed unused InsertQuery.clone().Tim Graham
Unknown if it was ever needed.
2016-10-13Removed unneeded try/except in Query.names_to_path().Tim Graham
2016-10-13Removed unused branch in SQLUpdateCompiler.as_sql().Tim Graham
Unknown if it was ever needed.
2016-10-13Removed unused branch in Query.change_aliases().Tim Graham
Unused since 0c7633178fa9410f102e4708cef979b873bccb76.
2016-10-13Refs #19705 -- Made GZipMiddleware make ETags weak.Kevin Christopher Henry
Django's conditional request processing can now produce 304 Not Modified responses for content that is subject to compression.
2016-10-13Removed unused EmptyResultSets in SQLCompilers.Tim Graham
Unused since ed1bcf05158acf4bf4e0189d477b6c762bd0133e.
2016-10-13Fixed #27200 -- Provided makemigration's allow_migrate() with model_name.Tim Graham
2016-10-13Fixed #27342 -- Corrected QuerySet.update_or_create() example.Tim Graham
2016-10-13Fixed #26954 -- Prevented ModelAdmin.has_module_permission()=False from ↵Halil Kaya
blocking access to the app index page.
2016-10-12Fixed #24607 -- Serialized natural keys in multi-table inheritance models.João Sampaio
2016-10-12Fixed #27323 -- Optimized Oracle introspection by using USER_SEQUENCES ↵Mariusz Felisiak
instead of USER_CATALOG.
2016-10-12Fixed #27333 -- Prevented BASE64 encoding in message.as_string() on Python 3Claude Paroz
Thanks Tim Graham for the review.
2016-10-12Fixed #19705 -- Set proper headers on conditional Not Modified responses.Kevin Christopher Henry
2016-10-12Removed redundant usage of assertNotIn() in a mail test.Tim Graham
The Content-Transfer-Encoding header won't be repeated, so checking the header is sufficient.
2016-10-12Removed unused SubqueryConstraint.relabel_aliases() and clone() methods.Tim Graham
Unused since b68212f539f206679580afbfd008e7d329c9cd31.
2016-10-11Fixed nonexistent tmc.edu domain in GeoIP test.Tim Graham
The test was silently skipped.
2016-10-11Tested Model.get_next/prev_by_FIELD() on unsaved models.Tim Graham
2016-10-11Replaced '__' with LOOKUP_SEP constant.Nick Pope
2016-10-11Added missing roles/options to parse_color_setting()'s docstring.Nick Pope
2016-10-11Fixed typo in docs/ref/checks.txt.Nick Pope
2016-10-10Removed unused contrib.admin.utils.remove_trailing_data_field().Tim Graham
Unused since 8f30556329b64005d63b66859a74752a0b261315.
2016-10-10Doc'd the need to provide initial for formset submissions.Tim Graham
2016-10-10Fixed #26447 -- Deprecated settings.USE_ETAGS in favor of ↵Denis Cornehl
ConditionalGetMiddleware.
2016-10-10Fixed gis_tests.geoapp when run in isolation.Tim Graham
"from django.db.models import *" in contrib/gis/db/models/__init__.py could obscure gis's functions.py resulting in exceptions like: "module 'django.db.models.functions' has no attribute 'Union'".
2016-10-08Added template syntax highlighting in docs/topics/i18n/timezones.txt.Tim Graham
2016-10-07Fixed #24941 -- Added ModelAdmin.get_exclude().Zach Borboa
Thanks Ola Sitarska for the initial patch.
2016-10-07Fixed #25475 -- Doc'd how to use a literal % in Func.template.Tim Graham
2016-10-07Updated security team roster.Markus Holtermann
2016-10-07Doc'd that model instances with pk=None don't compare equal.Adam Chainz
2016-10-07Fixed #26327 -- Added JsonAgg to contrib.postgres.Mads Jensen
Thanks Tim Graham for review.
2016-10-06Fixed #27301 -- Prevented exceptions that fail unpickling from crashing the ↵Adam Wróbel
parallel test runner.
2016-10-06Fixed #27244 -- Changed Greek's thousand separator from space to dot.kappataumu
2016-10-06Fixed docs typos in lines ending with a dash.Tim Graham
2016-10-06Documented AppRegistryNotReady.Aymeric Augustin
2016-10-06Fixed #27300 -- Made makemigrations --dry-run output a string (no bytes)Claude Paroz
Thanks Markus Holtermann for the report and the review.
2016-10-05Fixed #27262 -- Moved URL checks to resolver and pattern classes.Lucas Lois
Thanks Sjoerd Job Postmus for the report and review.
2016-10-05Removed unused variable in django/core/mail/backends/smtp.py.Tim Graham
2016-10-05Refs #27218 -- Fixed LogEntry tests on MySQL 5.5.Tim Graham
2016-10-05Fixed #27273 -- Added a construct_change_message() admin utility function.Tim Graham
2016-10-04Refs #11078 -- Doc'd Meta inheritance in proxy models.Jonatas CD
2016-10-04Documented render_to_string()'s `using` parameter.Corey Farwell
2016-10-04Refs #18974 -- Deprecated @models.permalink() decorator.Tim Graham
2016-10-04Fixed #27218 -- Returned LogEntry instances from ModelAdmin.log_*() methods.François Freitag
2016-10-04Fixed #27292 -- Removed unnecessary password assignment in auth backend example.Tim Graham