summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Added ignore_warnings decoratorClaude Paroz2014-12-303-38/+55
* Removed db.backends methods which only call super().Tim Graham2014-12-303-8/+0
* Revert "Updated some docs for the delayed deprecation of legacy table creatio...Tim Graham2014-12-302-7/+6
* Fixed #23450 -- Fixed transient failure of requests...test_far_expiration.Tim Graham2014-12-301-1/+5
* Removed unused import.Tim Graham2014-12-301-1/+0
* Fixed #12118 -- Added shared cache support to SQLite in-memory testing.Andriy Sokolovskiy2014-12-306-10/+62
* Added test for an intermediate swappable model change in migration state.Markus Holtermann2014-12-301-0/+19
* Fixed #23581 -- Prevented extraneous DROP DEFAULT statements.Tim Graham2014-12-303-23/+26
* Fixed breakage by 6fb9dee4 under Python2+Windows.Ramiro Morales2014-12-291-10/+5
* Removed release note for refs #23938 as it couldn't be backported to 1.7.Tim Graham2014-12-291-3/+0
* Fixed #23938 -- Added migration support for m2m to concrete fields and vice v...Markus Holtermann2014-12-293-80/+123
* Fixed #22279 -- Prevented dummy backend going through DatabaseErrorWrapperClaude Paroz2014-12-292-0/+3
* Fixed #21255 -- Closed connections after management command ranClaude Paroz2014-12-294-1/+27
* Converted middleware tests to use RequestFactory.Berker Peksag2014-12-291-54/+33
* Fixed #23271 -- Don't corrupt PO files on Windows when updating them.Ramiro Morales2014-12-294-10/+62
* Fixed a vesionadded directive.Florian Apolloner2014-12-291-1/+1
* Fixed #23753 -- Oracle failure with CoalesceJosh Smeaton2014-12-292-0/+24
* Explained the structure of django.template.Aymeric Augustin2014-12-281-0/+41
* Raised a warning when using the legacy TEMPLATE_* settings.Aymeric Augustin2014-12-282-11/+28
* Deprecated TEMPLATE_CONTEXT_PROCESSORS.Aymeric Augustin2014-12-2819-90/+144
* Deprecated TEMPLATE_DIRS.Aymeric Augustin2014-12-2822-95/+183
* Deprecated TEMPLATE_LOADERS.Aymeric Augustin2014-12-2821-229/+318
* Deprecated TEMPLATE_STRING_IF_INVALID.Aymeric Augustin2014-12-289-33/+44
* Deprecated ALLOWED_INCLUDE_ROOTS.Aymeric Augustin2014-12-286-18/+26
* Raised an error when allowed_include_roots is a string.Aymeric Augustin2014-12-281-1/+5
* Deprecated current_app in TemplateResponse and render(_to_response).Aymeric Augustin2014-12-2818-56/+197
* Preserved context class in inclusion_tag.Aymeric Augustin2014-12-281-8/+2
* Deprecated some arguments of django.shortcuts.render(_to_response).Aymeric Augustin2014-12-2812-91/+136
* Simplified implementation of django.shortcuts.render(_to_response).Aymeric Augustin2014-12-282-21/+24
* Moved context_processors from django.core to django.template.Aymeric Augustin2014-12-2820-134/+152
* Added a comment about the last use of Engine.get_default().Aymeric Augustin2014-12-281-0/+4
* Added tests for django.template.loader.Aymeric Augustin2014-12-285-0/+107
* Supported multiple template engines in render_to_string.Aymeric Augustin2014-12-287-27/+146
* Removed extraneous arguments in Engine.from_string.Aymeric Augustin2014-12-283-7/+7
* Removed private API get_template_from_string.Aymeric Augustin2014-12-282-6/+3
* Removed private API find_template.Aymeric Augustin2014-12-283-9/+8
* Supported multiple template engines in get_template and select_template.Aymeric Augustin2014-12-284-16/+82
* Looked up the default template engine in the list of all engines.Aymeric Augustin2014-12-282-19/+40
* Isolated template tests from Django settings.Aymeric Augustin2014-12-2885-1080/+1069
* Passed a reference to the current engine when instantiating Template.Aymeric Augustin2014-12-282-2/+2
* Removed some uses of global APIs from django.template.loader.Aymeric Augustin2014-12-284-10/+6
* Added basic tests for template backends.Aymeric Augustin2014-12-2812-0/+113
* Added Django template backend.Aymeric Augustin2014-12-285-0/+53
* Added jinja2 template backend.Aymeric Augustin2014-12-281-0/+58
* Added dummy template backend.Aymeric Augustin2014-12-282-0/+66
* Added initial support for loading template engines.Aymeric Augustin2014-12-286-2/+230
* Imported BaseEngine from the DEP.Aymeric Augustin2014-12-282-0/+80
* Cleaned up the django.template namespace.Aymeric Augustin2014-12-2811-100/+99
* Renamed get_template_from_string to from_string.Aymeric Augustin2014-12-282-9/+9
* Simplified handling of a default value.Aymeric Augustin2014-12-281-3/+1