Andrew Godwin
a8521a2c22
Undocumented SeparateDatabaseAndState so crash is not RB. Refs #22918
2014-09-01 11:48:06 -07:00
Duncan Parkes
be8ccc2648
Fixed #23371 -- Changed en_GB first day of the week to Monday.
2014-09-01 08:39:21 -04:00
Simon Charette
ab9c886459
Fixed #23391 -- Removed an erroneous backtip from the form's documentation.
...
Thanks to Trac alias nessita for the report.
2014-08-31 20:06:38 -04:00
Michael Angeletti
21a9e8adf0
Removed sentence from docs about migrate prompting to add a superuser.
2014-08-31 12:30:50 -04:00
Thomas Chaumeny
032c091659
Fixed #23388 -- Made django.utils.timezone.override usable as a decorator
2014-08-31 09:03:53 +02:00
Alex Gaynor
8b6cb9d0dd
Added a missing word in a skip message
2014-08-30 15:18:58 -07:00
Claude Paroz
5021421799
Fixed #22820 -- Treated int and long types alike in lazy_number
...
Thanks kwist for the report and the initial patch.
2014-08-30 18:51:12 +02:00
Ramiro Morales
3a297d7816
Fixed #23055 -- Made generic admin filter obey ModelAdmin queryset.
...
Thanks to Trac user synasius and to Ola Sitarska for helping in
identifying the issue and helping with the test case.
2014-08-30 10:07:00 -03:00
Aymeric Augustin
df251e033c
Fixed a PEP 8 error.
2014-08-30 13:27:56 +02:00
Bas Peschier
eacf244506
Converted sql_queries into a lazily evaluated list.
...
Fixed #23364 . Thanks Markush2010 for the report.
2014-08-30 13:27:56 +02:00
Akis Kesoglou
6613ea6e3f
Fixed #23370 -- defer() + select_related() crashed with inherited models.
2014-08-30 07:14:44 -04:00
Claude Paroz
66757fee7e
Fixed #23384 -- Allowed overriding part of a dictionary-type setting
...
This change is needed for upcoming changes where settings might be
grouped in a parent dictionary.
Thanks Tim Graham for the review.
2014-08-30 12:37:10 +02:00
Simon Charette
05a8cef428
Corrected a usage example of `related_query_name`.
...
Thanks to Petr Glotov for spotting this.
2014-08-29 23:10:30 -04:00
Tim Graham
135a58f9dc
Fixed a non-deterministic test; refs #23099 .
2014-08-29 20:40:53 -04:00
Simon Charette
4926c0afe3
Documented translation.override as a decorator.
...
refs #23323 .
2014-08-29 19:49:39 -04:00
evildmp
7a8f405bba
Update Daniele Procida's bio
2014-08-29 16:22:55 +01:00
Simon Charette
2c0ec04225
Fixed a typo in the 1.8 release notes.
2014-08-29 10:58:58 -04:00
Joshua "jag" Ginsberg
eb2af16c59
Fixed #21483 -- Added WSGI environ to kwargs sent to request_started signal.
2014-08-29 10:12:03 -04:00
Tim Graham
149605dfb4
Fixed flake8 warning.
2014-08-29 09:42:22 -04:00
Vlastimil Zíma
e622caaa85
Fixed #21201 -- Improved customization of ClearableFileInput.
2014-08-29 09:40:08 -04:00
Tim Graham
045b8d3267
Removed unnecessary release notes for django.utils.translation.override().
...
Undocumented functions don't need to be mentioned.
2014-08-29 09:20:13 -04:00
Tim Graham
cf33777306
Clarified a comment in django.core.files.temp.
2014-08-29 07:27:15 -04:00
Andrew Torpedov
bc06d2c11c
Fixed #23313 -- Corrected repr(RawQuery) with dict parameters.
2014-08-29 07:22:08 -04:00
Claude Paroz
909015a51b
Fixed #22786 -- Documented value_from_datadict caveat
...
Thanks blueyed for the report and Tim Graham for the review.
2014-08-29 10:24:50 +02:00
Simon Charette
e98c5513cb
Fixed an Oracle test failure introduced by 1e404180c1
.
2014-08-28 19:33:36 -04:00
Thomas Chaumeny
efcbf3e095
Fixed #23381 -- Context manager restored state should be determined in __enter__
2014-08-28 19:18:34 -04:00
Aymeric Augustin
569e0a299d
Documented correct kwargs for post_syncdb/migrate.
...
d562527a
rename the db to using in the wrong signal.
Thanks Maik Hoepfel for the report.
2014-08-28 21:30:20 +02:00
Simon Charette
1e404180c1
Fixed #23379 -- Corrected a referencing issue in sql_create.
...
Thanks to Trac alias flakfizer for the report.
2014-08-28 15:17:50 -04:00
Thomas Chaumeny
2db1ed1033
Fixed #23323 -- Made django.utils.translation.override usable as a decorator.
2014-08-28 11:58:21 -04:00
Thomas Chaumeny
191d953c99
Factorize some code using ContextDecorator.
2014-08-28 11:58:16 -04:00
Simon Charette
c9c0be31c5
Fixed #23375 -- Added missing security issues to the archive.
...
Also adjusted the pre-release process to prevent future omissions.
2014-08-28 10:48:39 -04:00
Claude Paroz
3a44e20005
Fixed #23374 -- Renamed StaticLiveServerCase to StaticLiveServerTestCase
...
Refs #20739 . Thanks Raphaël Hertzog for the report and the initial
patch.
2014-08-28 08:44:26 +02:00
Simon Charette
3cbb7590cb
Fixed #23329 -- Allowed inherited and m2m fields to be referenced in the admin.
...
Thanks to Trac alias Markush2010 and ross for the detailed reports.
2014-08-27 21:26:53 -04:00
Simon Charette
19e6397f82
Removed an unused import.
2014-08-27 17:32:01 -04:00
Richard Eames
4dd5c8581d
Fixed #23349 -- Clarified details about RunPython's apps argument.
2014-08-27 17:26:08 -04:00
Jon Dufresne
f0d3dd4f04
Fixed #23357 -- Added small int introspection support to MySQL backend.
...
In the MySQL backend, updated the can_introspect_small_integer feature
flag to True. In data_types_reverse, map FIELD_TYPE.SHORT to a
SmallIntegerField. Added test to verify introspecting SmallIntegerFields
and fixed existing tests influenced by this change.
2014-08-27 10:58:44 -04:00
areski
a81af7f49d
Fixed #13749 -- Added link from admin site to front-end site.
...
Thanks romankrv for the suggestion.
2014-08-27 08:34:53 -04:00
Tim Graham
6aae07fe61
Documented --database option for migrate.
...
Thanks Mike O'Connor for the reporty.
2014-08-27 08:01:30 -04:00
Tim Graham
83762da3fb
Fixed #23354 -- Documented that ModelChoiceField to_field_name should be a unique field.
...
Thanks Keryn Knight for the suggestion.
2014-08-27 07:43:13 -04:00
Erik Romijn
2154004802
Fixed tiny commit style inconsistency in committing code documentation.
2014-08-27 09:18:56 +02:00
Duncan Parkes
905c4fdcc3
Fixed clone URL of Django git repository.
2014-08-26 20:48:12 -04:00
Claude Paroz
00f8b4dfae
Lowered memory consumption in debug ouput test
2014-08-26 22:42:41 +02:00
Tim Graham
5ecead9ab9
Fixed #22620 -- Emphasized role of DATABASE_ROTERS in multi-db docs.
...
Thanks Mike O'Connor for the suggestions.
2014-08-26 15:43:23 -04:00
Tim Graham
7b9537fb27
Fixed #21567 -- Documented how to deploy multiple sites using the sites framework.
2014-08-26 15:22:08 -04:00
Claude Paroz
cfee67ae10
Added exception name in debug error message
...
This can help when some exception has no error message.
2014-08-26 21:10:54 +02:00
Tim Graham
ced3e303ca
Fixed #23250 -- Documented that ModelMultipleChoiceField queryset may be None.
2014-08-26 14:50:17 -04:00
Tim Graham
a2bcec3491
Fixed #17707 , #20734 -- Added examples to URL namespacing docs.
...
Thanks Daniele Procida for review.
2014-08-26 14:31:13 -04:00
Tim Graham
348c89cbfb
Fixed #19312 -- Documented MySQL TIMESTAMP columns cannot be used with USE_TZ=True.
2014-08-26 14:11:35 -04:00
Claude Paroz
60428ed5db
Removed some more hardcoded backends in GIS tests
...
Refs #22632 . Thanks Tim Graham for the review.
2014-08-26 20:08:00 +02:00
Claude Paroz
5675eb371f
Allowed skipIf/UnlessDBFeature to accept several feature strings
2014-08-26 20:03:37 +02:00