summaryrefslogtreecommitdiff
path: root/django
Commit message (Expand)AuthorAgeFilesLines
* Added return value to Signal.disconnect().Andriy Sokolovskiy2015-01-021-0/+3
* Fixed #9104 -- Moved FieldDoesNotExist to core.exceptionsDaniel Pyrathon2015-01-0219-56/+57
* Fixed #23745 -- Reused states as much as possible in migrationsClaude Paroz2015-01-025-31/+105
* Passed around the state between migrationsClaude Paroz2015-01-021-9/+16
* Show migration elapsed time when verbosity>1Claude Paroz2015-01-021-4/+12
* Added ignore_swappable to StateAppsMarkus Holtermann2015-01-022-2/+7
* Replaced migration state render() by apps cached propertyClaude Paroz2015-01-026-106/+99
* Fixed #24069 -- Made ServerHandler a new style class to fix super() call.Andreas Pelme2015-01-021-1/+2
* Fixed #23891 -- Moved deprecation of IPAddressField to system check framework.Tim Graham2015-01-012-3/+15
* Fixed #23366 -- Fixed a crash with the migrate --list command.Tim Graham2014-12-311-1/+1
* Fixed #22295 -- Replaced permission check for displaying admin user-toolsThomas Tanner2014-12-317-21/+28
* Fixed #24008 -- Fixed ValidationError crash with list of dicts.Andrey Maslov2014-12-311-1/+4
* Fixed #23359 -- Added showmigrations command to list migrations and plan.Markus Holtermann2014-12-312-43/+133
* Fixed #23758 -- Allowed more than 5 levels of subqueriesPiotr Pawlaczek2014-12-311-4/+30
* Copied BaseDatabaseCreation._digest() to SchemaEditor to remove dependency.Tim Graham2014-12-311-2/+12
* Moved DatabaseCreation.data_types properties to DatabaseWrapper.Tim Graham2014-12-3111-158/+158
* Ignored warnings correctly in test_get_formsets_with_inlines_returns_tuples().Berker Peksag2014-12-311-1/+1
* Renamed variables to avoid name collision with import of django.db.models.Russell Keith-Magee2014-12-311-4/+4
* Applied ignore_warnings to Django testsClaude Paroz2014-12-306-85/+72
* Added ignore_warnings decoratorClaude Paroz2014-12-302-25/+39
* Removed db.backends methods which only call super().Tim Graham2014-12-303-8/+0
* Fixed #12118 -- Added shared cache support to SQLite in-memory testing.Andriy Sokolovskiy2014-12-303-10/+31
* Fixed #23581 -- Prevented extraneous DROP DEFAULT statements.Tim Graham2014-12-301-23/+20
* Fixed breakage by 6fb9dee4 under Python2+Windows.Ramiro Morales2014-12-291-10/+5
* Fixed #23938 -- Added migration support for m2m to concrete fields and vice v...Markus Holtermann2014-12-291-77/+80
* Fixed #22279 -- Prevented dummy backend going through DatabaseErrorWrapperClaude Paroz2014-12-291-0/+1
* Fixed #21255 -- Closed connections after management command ranClaude Paroz2014-12-292-0/+11
* Fixed #23271 -- Don't corrupt PO files on Windows when updating them.Ramiro Morales2014-12-291-5/+20
* Fixed #23753 -- Oracle failure with CoalesceJosh Smeaton2014-12-291-0/+12
* Explained the structure of django.template.Aymeric Augustin2014-12-281-0/+41
* Raised a warning when using the legacy TEMPLATE_* settings.Aymeric Augustin2014-12-281-8/+6
* Deprecated TEMPLATE_CONTEXT_PROCESSORS.Aymeric Augustin2014-12-283-5/+6
* Deprecated TEMPLATE_DIRS.Aymeric Augustin2014-12-287-34/+60
* Deprecated TEMPLATE_LOADERS.Aymeric Augustin2014-12-285-75/+74
* 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-289-38/+127
* Preserved context class in inclusion_tag.Aymeric Augustin2014-12-281-8/+2
* Deprecated some arguments of django.shortcuts.render(_to_response).Aymeric Augustin2014-12-284-49/+53
* 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-285-94/+104
* Added a comment about the last use of Engine.get_default().Aymeric Augustin2014-12-281-0/+4
* Supported multiple template engines in render_to_string.Aymeric Augustin2014-12-283-16/+99
* Removed extraneous arguments in Engine.from_string.Aymeric Augustin2014-12-283-7/+7
* Removed private API get_template_from_string.Aymeric Augustin2014-12-281-4/+0
* Removed private API find_template.Aymeric Augustin2014-12-281-4/+0
* Supported multiple template engines in get_template and select_template.Aymeric Augustin2014-12-283-13/+79
* Looked up the default template engine in the list of all engines.Aymeric Augustin2014-12-282-19/+40
* 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 Django template backend.Aymeric Augustin2014-12-285-0/+53