summaryrefslogtreecommitdiff
path: root/django
AgeCommit message (Collapse)Author
2016-09-06Fixed #24865 -- Added remove_stale_contenttypes management command.Tim Graham
Thanks Simon Charette for the review.
2016-09-06Removed transitive import of types.MethodType from six.Curtis Maloney
2016-09-03Fixed #27171 -- Added unicode_literals and coding preamble to all files in ↵Ivan
startapp template on Python 2.
2016-09-03Fixed #25788 -- Enabled the cached template loader if debug is False.Tim Graham
2016-09-03Replaced smart_* by force_* calls whenever possibleClaude Paroz
The smart_* version should only be used when a lazy string should keep its lazy status.
2016-09-03Fixed #26098 -- Used cdnjs.cloudflare for OpenLayers.js.Daniel Hahler
2016-09-02Fixed #27097 -- Added index type introspection to built-in db backends.Akshesh
2016-09-02Added error messages for GIS DB functions when used with rasters.Daniel Wiesmann
2016-09-02Fixed #25476 -- Allowed PostgreSQL introspection to work regardless of table ↵Marcos Vives Del Sol
owner.
2016-09-02Fixed #27108 -- Displayed collectstatic's delete/overwrite warnings only if ↵François Freitag
some files exist in STATIC_ROOT.
2016-09-02Fixed #11331 -- Stopped closing pylibmc connections after each request.Ed Morley
libmemcached manages its own connections, so isn't affected by refs #5133.
2016-09-01Fixed #27142, #27110 -- Made makemigrations consistency checks respect ↵Tim Graham
database routers. Partially reverted refs #27054 except for one of the tests as this solution supersedes that one. Thanks Shai Berger for the review.
2016-09-01Fixed #5908 -- Added {% resetcycle %} template tag.Sergei Maertens
Thanks to Simon Litchfield for the report, Uninen for the initial patch, akaihola, jamesp, b.schube, and Florian Appoloner for subsequent patches, tests, and documentation.
2016-09-01Clarified URL regex check message with respect to include().Riccardo Magliocchetti
2016-09-01Refs #27039 -- Fixed regression with field defaults in prefixed forms.Alex Hill
2016-08-31Fixed #24112 -- Fixed assertInHTML()'s counting if needle has no root element.Adam Zapletal
2016-08-31Fixed #25181 -- Added localdate() function to get date in a different time zone.Jon Dufresne
Thanks Konrad Świat for the original patch.
2016-08-31Fixed #27152 -- Supported comma delimiter in memcached LOCATION string.Ed Morley
2016-08-31Fixed #27140 -- Prevented template rendering from hiding a property's TypeError.Tim Graham
2016-08-31Fixed #20892 -- Allowed configuring memcached client using OPTIONS.Ed Morley
Previously, the MemcachedCache backend ignored `OPTIONS` and PyLibMCCache used them to set pylibmc behaviors. Both backends now pass `OPTIONS` as keyword arguments to the client constructors.
2016-08-31Fixed #27154 -- Allowed comparing CallableBool with bitwise or.Olexander Yermakov
Thanks Tim for the review.
2016-08-31Fixed #27131 -- Passed proper string type to SMTP connection loginClaude Paroz
Passing an Unicode string on Python 2 was crashing the connection. Thanks slavugan@gmail.com for the report, and Tim Graham for the review.
2016-08-30Fixed #27153 -- Added validation for HttpResponse status.Ryan Allen
2016-08-30Fixed #27081 -- Allowed migrations to serialize methods on pypy.Tim Graham
2016-08-30Fixed #26685 -- Added dwithin lookup support on SpatiaLite.Kevan Swanberg
2016-08-30Fixed #25109 -- Stopped silencing explicitly specified migration modules ↵Simon Charette
import errors. Thanks Tim for the review.
2016-08-30Removed double semicolon in SQL queryClaude Paroz
2016-08-30Refs #27097, #27098 -- Moved PostgreSQL index type introspection to ↵Akshesh
get_constraints().
2016-08-29Clarified topological_sort_as_sets() docstring.Pavel Sutyrin
2016-08-28Fixed #27136 -- Changed auth forms' autofocus attribute to HTML5 boolean syntax.Jon Dufresne
2016-08-26Fixed #27126 -- Made {% regroup %} return a namedtuple to ease unpacking.Baptiste Mispelon
2016-08-26Changed the example in the {% regroup %} docstring.Baptiste Mispelon
2016-08-26Fixed #26942 -- Added support for subtests during parallel testing.Chris Jerdonek
2016-08-25Replaced property() usage with decorator in several places.Berker Peksag
2016-08-25Removed unneeded smart_textClaude Paroz
2016-08-25Fixed #27067 -- Deprecated string_concat() in favor of format_lazy().Mattias Loverot
2016-08-25Fixed #25995 -- Added an encoder option to JSONFieldClaude Paroz
Thanks Berker Peksag and Tim Graham for the reviews.
2016-08-24Fixed #27039 -- Fixed empty data fallback to model field default in model forms.Tim Graham
2016-08-24Fixed #26816 -- Corrected an admin check to require inlines to subclass ↵Berker Peksag
InlineModelAdmin.
2016-08-24Replaced property() usage with decorator in a couple places.Berker Peksag
2016-08-24Removed a blank line per isort.Tim Graham
2016-08-24Fixed #27111 -- Fixed KeyError if USERNAME_FIELD isn't in ↵Berker Peksag
UserCreationForm.fields.
2016-08-24Fixed #26866 -- Added format_lazy functionMattias Loverot
Added format_lazy function to django.utils.text module. Useful when dealing with relative complex lazy string concatenations (e.g. in urls.py when translating urls in regular expressions).
2016-08-24Fixed #27072 -- Fixed AddGeometryColumn error when altering a SpatiaLite table.Tim Graham
2016-08-24Fixed #27100 -- Included already applied migration changes in the ↵Simon Charette
pre-migrate state. Refs #24100. Thanks Tim for the review.
2016-08-24Fixed #27044 -- Included already applied migration changes in the ↵Simon Charette
post-migrate state when the execution plan is empty. Refs #24100. Thanks tkhyn for the report and Tim for the review.
2016-08-23Fixed #27089 -- Added database alias to InconsistentMigrationHistory message.Tim Graham
2016-08-23Fixed #27103 -- Registered vcapi/rcapi GDAL prototypes based on their own ↵Matthew Somerville
drivers.
2016-08-23Fixed #26971 -- Prevented crash with non-UTF-8 incoming PATH_INFOClaude Paroz
Thanks Tim Graham and Loïc Bistuer for the reviews.
2016-08-23Fixed #26998 -- Reverted some admin checks from checking field.many_to_many ↵Collin Anderson
back to isinstance(field, models.ManyToManyField). This partially reverts 983c158da7723eb00a376bd31db76709da4d0260