| Age | Commit message (Collapse) | Author |
|
This behavior has been fixed in 65e03a424e. refs #10284.
|
|
Backport of 744aac6dac from master
|
|
Backport of 626bdf648 from master.
|
|
abb04f1f3f from master.
|
|
Thanks Preston Holmes for the draft text.
Backport of df6760f12c from master
|
|
Backport of 033b26173b from master
|
|
Backport of c456ea4ec8 from master
|
|
Thanks filipp for the report.
|
|
Backport of ebfa508fa32b27de6f3e2ca04c81b46408b0506e from master.
|
|
Backport of 9348fc5628 from master
|
|
Sphinx generates left single quotes for apostrophes after
code markup, when right single quotes are required. The
easiest way to fix this is just by inserting the unicode
character for a right single quote.
Instances of the problem were found by looking for
">‘" in the generated HTML.
Backport of c33d1ca1d98003de29cdecb6080b52c5c52139bd from master.
|
|
Thanks alasdair.
Backport of d011714002 from master
|
|
Thanks olof.bjarnason at gmail.com for the report.
Backport of 6e9e6ca071 from master
|
|
Corrected LANGUAGES documentation on how to translate language
names. Now using django.utils.translation.ugettext_lazy instead
of a dummy gettext() function.
Thanks to Salvatore for the report.
Backport of 8bc350b38516d8c3a14aed113dd3402b9375b75c from master.
|
|
Backport of a8e84521c4 from master
|
|
The EmailMessage documentation describes the initialization parameters
and states they 'can be set at any time prior to calling the send()
method.'. However, the 'headers' parameter's corresponding attribute is
called 'extra_headers'.
Backport of cab72a439b from master
|
|
Refs #14461. Thanks Ramiro Morales for pointing this.
Backport of b780d03d62 from master.
|
|
Backport of 3935b0f263 from master
|
|
Thanks rpq at winscores.com for the report.
Backport of 88b9d4ff3a from master.
|
|
Dependent means reliant on.
A dependant is a person like a child or spouse.
Thanks Andrew Wilcox for the report.
Backport of 090315f5df from master
|
|
Backport of c7dabe49dd from master
|
|
Thanks wim at go2people.nl for the report.
Backport of 51e6575472 from master
|
|
Co-Authored-By: Gavin Wahl <gwahl@fusionbox.com>
Backport of e9a356a695 from master
|
|
Backport of cc2049cdd7 from master
|
|
Thanks joao at silvaneves.org for the report.
Backport of 9704c49d59 from master
|
|
Backport of 28b70425afb2fb8bcbec09d249e37fa786f8a155 from master.
|
|
Backport of a3372f67cb from master
|
|
Backport of 944a2bb7c1 from master
|
|
InlineFormSet.
Thanks treysta at gmail.com for the suggestion.
Backport of 9bfe66164e from master
|
|
Thanks ebertti at yahoo.com.br for the suggestion.
Backport of 018e2c055a from master
|
|
fields.
The ModelForm docs suggested that fields defined declaratively override
default fields generated from the form Meta.
This is conceptually wrong, especially with inheritance in mind. Meta is
usually defined on the topmost ModelForm subclass, while fields can come
from anywhere in the MRO, especially base classes; therefore we suggested
that something defined in a base class override something from a subclass.
This patch rephrases the docs around the idea that Meta is used to generate
*missing* fields.
Refs #8620, #19617.
Thanks @mjtamlyn and @timgraham for the review.
Backport of 54cd930baf from master
|
|
Backport of 8fc63087f6 from master
|
|
Thanks gcc for the report and vajrasky for the patch.
Backport of 570d9c2678d6cc564f9c70138554af8f7ce9ec49 from master.
|
|
fixtures.
Thanks slinkp for the suggestion.
Backport of dd839a2dfd from master
|
|
Backport of 8bfc7cc64c from master
|
|
Backport of 695bc0d191 from master
|
|
Backport of 1b9c72fc4f from master.
|
|
Backport of 43f213e475 from master
|
|
The package renaming restores the older package names (which were also the
documented package names). This doesn't affect test discovery because the
module in question doesn't contain any tests.
Thanks to Carl for the design discussion.
Backport of ddb5385 from master.
|
|
67f5dffbec from master.
|
|
Thanks neithere for the suggestion.
Backport of 75bb6ba966 from master
|
|
Backport of 00a0d3de02 from master
|
|
Backport of 728548e4 from master.
Squashed commit of the following:
commit 63ddb271a44df389b2c302e421fc17b7f0529755
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Sun Sep 29 22:51:00 2013 +0200
Clarified interactions between atomic and exceptions.
commit 2899ec299228217c876ba3aa4024e523a41c8504
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Sun Sep 22 22:45:32 2013 +0200
Fixed TransactionManagementError in tests.
Previous commit introduced an additional check to prevent running
queries in transactions that will be rolled back, which triggered a few
failures in the tests. In practice using transaction.atomic instead of
the low-level savepoint APIs was enough to fix the problems.
commit 4a639b059ea80aeb78f7f160a7d4b9f609b9c238
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Tue Sep 24 22:24:17 2013 +0200
Allowed nesting constraint_checks_disabled inside atomic.
Since MySQL handles transactions loosely, this isn't a problem.
commit 2a4ab1cb6e83391ff7e25d08479e230ca564bfef
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Sat Sep 21 18:43:12 2013 +0200
Prevented running queries in transactions that will be rolled back.
This avoids a counter-intuitive behavior in an edge case on databases
with non-atomic transaction semantics.
It prevents using savepoint_rollback() inside an atomic block without
calling set_rollback(False) first, which is backwards-incompatible in
tests.
Refs #21134.
commit 8e3db393853c7ac64a445b66e57f3620a3fde7b0
Author: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Sun Sep 22 22:14:17 2013 +0200
Replaced manual savepoints by atomic blocks.
This ensures the rollback flag is handled consistently in internal APIs.
|
|
Thanks daniel.quattro at gmail.com for the report.
d1c9802811 from master.
|
|
Thanks marfire for the report.
Backport of 77f6b468e5 from master
|
|
Backport of 45969bdeb5 from master
|
|
Thanks glarrain for the suggestion.
Backport of a53caf28bf from master
|
|
ce0c5c38ea from master.
|
|
9dc45efeba from master.
|
|
pattern prefixes.
Backport of 222460a994 from master
|