summaryrefslogtreecommitdiff
path: root/django
AgeCommit message (Collapse)Author
2014-08-15Fixed #23294 -- Add related_name to existing migrations.Collin Anderson
Thanks to Florian Apolloner for the review; refs #23288.
2014-08-15Fixed #18355 -- Added ordering options to list based generic views.Peter Harley
Added MultipleObjectMixin.ordering and get_ordering(). Refs #21450.
2014-08-15Fixed #23287 -- Updated error message for classonlymethod decorator.Tim Graham
2014-08-15Fixed #23269 -- Deprecated django.utils.remove_tags() and removetags filter.Tim Graham
Also the unused, undocumented django.utils.html.strip_entities() function.
2014-08-15Fixed #23162 -- Renamed forms.Field._has_changed() to has_changed().Gabriel Muñumel
2014-08-15Complemented 1.6 release notes for 457c16d0d6Claude Paroz
And accessorily added missing bits fixing #23293. Forward port of 2cbafd814 from stable/1.7.x
2014-08-14Fixed #23288: deconstruct() ignoring related_nameAndrew Godwin
2014-08-14Fixed #20133 -- Added summary to admin deletion confirmation pages.areski
Thanks jonash for the suggestion and initial patch.
2014-08-14Fixed #23291 -- Don't add Unicode varname/value to environment.Ramiro Morales
Windows doesn't like that and it causes 114 failures in the admin_scripts tests with Python 2.x.
2014-08-14Fixed #23260: Added generator support to defaultfilters.unordered_list.Jaap Roes
2014-08-14Fixed #21579 -- Made LocaleMiddleware respect script prefix.Tim Graham
Thanks buettgenbach at datacollect.com for the report and patch.
2014-08-14Fixed #21132 -- Removed the useless app_name argument to AdminSite.Tim Graham
Thanks MarkusH for the report and Florian for review.
2014-08-14Fixed #23265 -- Used system-specific encoding in runserverClaude Paroz
Thanks SpaceFox for the report.
2014-08-14Fixed #22971 -- Properly parsed RFC 2388 encoded headersClaude Paroz
Thanks homm for the report, Cea Stapleton for patch improvements and Ian Cordasco, Christian Schmitt and Tim Graham for the review.
2014-08-13Fixed #18767 -- Fixed admin calendar for other locales than English.Maxime Turcotte
Refactored openCalendar function from DateTimeShortcuts.js. Now, when entered manually in the input field, the date will show up correctly on the calendar for locales that don't use "-" for separator. Thanks charettes for revivew and Alexey Boriskin for some of the patch.
2014-08-13Fixed #22646: Added support for the MySQL ssl-ca option to dbshell.zsoldosp
2014-08-13Removed tabs from an admin CSS file.Trey Hunner
2014-08-13Fixed #20368 -- Made TECHNICAL_500 more robust against bad input.Walter Doekes
This limits large variables and avoids non-utf-8 in the TECHNICAL_500 output.
2014-08-13Fixed flake8 warning.Tim Graham
2014-08-13Simplified admin delete confirmation templates using {% elif %}.areski
Thanks jonash for the initial patch; refs #20133.
2014-08-12Added newlines to the ends of CSS, HTML, and JavaScript files missing them.Trey Hunner
2014-08-12Fixed #23262 -- Made SelectFilter2.js move items on enter Key press.Collin Anderson
2014-08-12Fixed #22985 -- Made call_command accept option name parameterClaude Paroz
Thanks giulettamasina for the report and Tim Graham for the review.
2014-08-12Fixed #23275: Unmanaged models kept by autodetector, ignored by opsAndrew Godwin
2014-08-12Fixed #23276 -- Deprecated passing views as strings to url().Tim Graham
2014-08-12Avoided creation of deferred model from another deferred modelAnssi Kääriäinen
Also never create deferred model when no attrs are deferred.
2014-08-12Fixed #23001 -- Fixed mixing defer and annotationsJosh Smeaton
2014-08-11Fixed #23261 -- Deprecated old style list support for unordered_list filter.Jaap Roes
2014-08-11Fixed #16426 -- deletion of 1000+ objects with relations on SQLiteAnssi Kääriäinen
SQLite doesn't work with more than 1000 parameters in a single query. The deletion code could generate queries that try to get related objects for more than 1000 objects thus breaking the limit. Django now splits the related object fetching into batches with at most 1000 parameters. The tests and patch include some work done by Trac alias NiGhTTraX in ticket #21205.
2014-08-11Fixed #23266 -- Prevented queries caused by type checking lookup valuesAnubhav Joshi
Small modifications done by committer.
2014-08-11Fixed #23259 -- Corrected insertion order of extra() select_paramsRajiv Makhijani
A regression caused queries to produce incorrect results for cases where extra(select) is excluded by values() but included by extra(order_by) The regression was caused by 2f35c6f10fcbae541691207fb0c0560a13b754fc.
2014-08-10Fixed remove_field for spatialite schema changes.Florian Apolloner
2014-08-10Made sqlite's remove_field behave like the base backend.Florian Apolloner
2014-08-09Removed unused migrate optionClaude Paroz
2014-08-09Fixed #23264: Schema backends honour db_constraintAndrew Godwin
2014-08-08Fixed #22336 -- Added path matching for makemessages ignore optionJustin Hamade
This fixes a regression introduced by 9012a9e200.
2014-08-08Fixed a non-deterministic test; refs #23099.Tim Graham
2014-08-08Fixed #23099 -- Removed usage of deprecated initial data in Django's test suite.Tim Graham
Thanks Claude Paroz for assistance with debugging the tests.
2014-08-08Don't treat .pyc/pyo files as migrations. Refs #23237 among others.Andrew Godwin
2014-08-07Fixed #22982 -- Added GenericRelatedObjectManager.__str__. to prevent crash.Jacob Haslehurst
Thanks bendavis78 for the report. Forwardport of 29585e9b6a from stable/1.7.x
2014-08-07Fixed flake8 warning.Tim Graham
2014-08-07Use smart_text rather than naive forcing-to-unicode for state readingAndrew Godwin
2014-08-07Fixed #23226: Model options appearing as bytes type in migrationsAndrew Godwin
2014-08-07Moved index dropping after FK dropping to please MySQL and fix testAndrew Godwin
2014-08-07Fixed #23244: Error altering FK to non-FK in migrationsAndrew Godwin
2014-08-06Fixed #21603 -- Fixed complex RawQuerySets queries on some versions of SQLite.Alex Hill
2014-08-05Removed code that assumed BooleanField could be null.Tim Graham
Such a field will no longer pass model validation.
2014-08-05Stop errors on older Spatialite versions that miss some tablesAndrew Godwin
2014-08-05Fixed #23061: Avoided setting a limit on a query for get with ↵Shai Berger
select_for_update on Oracle Thanks Michael Miller for reporting the issue.
2014-08-04Fixed a typo in comment in django/utils/version.pySitesh Shrivastava