| Age | Commit message (Collapse) | Author |
|
|
|
Polish, Telugu, Georgian, Azerbaijani, Norwegian Bokmål, Basque,
Dutch, Thai, Spanish (Argentina), Afrikaans.
|
|
|
|
|
|
|
|
BCryptSHA256PasswordHasher pre-hashes the users password using
SHA256 to prevent the 72 byte truncation inherient in the BCrypt
algorithm.
|
|
|
|
Updated LogEntry.get_admin_url to use 'reverse' instead
of a hard-coded path.
|
|
In any case, setting those variables to non-ascii utf-8 bytestrings
is now considered a programming error.
|
|
The function removeChildren is a general utility that other functions
might want to use.
Fixes #4120. Thanks arvin for the initial patch.
|
|
The cancelEventPropagation function is a general utility function that
can be reused by other widgets. Refs #4120.
|
|
The function quickElement in calendar.js is a duplicate of the
quickElement function in core.js. Refs #4120.
|
|
Also don't compete with -W CLI option.
Thanks to Aymeric Augustin for the catch, and Claude Paroz for the patch.
|
|
Fixed #20117 -- Added missing translation override to fix flatpages test.
|
|
Refs #19385
|
|
Fixed #19541 -- Fixed BaseHandler to enable reversing URLs in response middlewares...
|
|
middlewares
and streamed responses with respect to per-request urlconf.
|
|
This is a regression fix to multicolumn joins. Refs #19385.
|
|
|
|
The commit of 266de5f9ae9e9f2fbfaec3b7e4b5fb9941967801 included only
tests, this time also code changes included...
|
|
Thanks to the many contributors who updated and improved the patch over
the life of this ticket.
|
|
This reverts commit 948a833eb7fd9be0bc2d585c92a407f036ef42b2.
flup appears to be dead, and this fix breaks legitimate uses of Django.
Refs #8490.
|
|
Previously, depending on the database backend or the cursor type,
you'd need to double the percent signs in the query before passing
it to cursor.execute. Now cursor.execute consistently need percent
doubling whenever params argument is not None (placeholder substitution
will happen).
Thanks Thomas Güttler for the report and Walter Doekes for his work
on the patch.
|
|
|
|
Fixed #18000 -- Moved the code to handle goto requests to an extra WizardView method.
|
|
without the need to add them in the as_view call.
|
|
|
|
User models.
Thanks to matiasb for the report of #20060 and the draft patch for #20048.
|
|
This improves rendering in some foreign languages.
|
|
This was a regression due to unicode_literals usage. Thanks Ivan
Virabyan for the report and the initial patch.
|
|
Python 2.6 has some different behaviour when checking
isinstance(foo, collections.Iterator).
|
|
This is provided as a new "validate_max" formset_factory option defaulting to
False, since the non-validating behavior of max_num is longstanding, and there
is certainly code relying on it. (In fact, even the Django admin relies on it
for the case where there are more existing inlines than the given max_num). It
may be that at some point we want to deprecate validate_max=False and
eventually remove the option, but this commit takes no steps in that direction.
This also fixes the DoS-prevention absolute_max enforcement so that it causes a
form validation error rather than an IndexError, and ensures that absolute_max
is always 1000 more than max_num, to prevent surprising changes in behavior
with max_num close to absolute_max.
Lastly, this commit fixes the previous inconsistency between a regular formset
and a model formset in the precedence of max_num and initial data. Previously
in a regular formset, if the provided initial data was longer than max_num, it
was truncated; in a model formset, all initial forms would be displayed
regardless of max_num. Now regular formsets are the same as model formsets; all
initial forms are displayed, even if more than max_num. (But if validate_max is
True, submitting these forms will result in a "too many forms" validation
error!) This combination of behaviors was chosen to keep the max_num validation
simple and consistent, and avoid silent data loss due to truncation of initial
data.
Thanks to Preston for discussion of the design choices.
|
|
|
|
|
|
Thanks to amosonn at yahoo.com for the report, @doda for the initial patch and
@datagrok for the revamped logic and test case.
|
|
Thanks to loic84 for the report and patch.
|
|
exception too"
This reverts commit 2cd0edaa477b327024e4007c8eaf46646dcd0f21.
This commit was the cause of a memory leak. See ticket for more details.
Thanks Anssi Kääriäinen for identifying the source of the bug.
|
|
Thanks martinogden for the initial patch and d1ffuz0r for tests.
|
|
catalanojuan/fix-admin-log-dependency-on-user-id-field-20088
Fixed #20088 -- Changed get_admin_log not to depend on User id field
|
|
Thanks jrothenbuhler for draft patch, Konark Modi for updates.
|
|
Before this change, the get_admin_log method would expect User model's
FK to be named `id`. When changing that FK name, admin/index.html
rendering would fail.
This includes:
* Changed the use of id for the use of pk property.
* Added a regression test that fails without the patch.
This commit refs #20088.
|
|
Thanks to Krzysztof Jurewicz for initial patch and
adupin for tests.
|
|
|
|
|
|
Thanks blaze33 for the patch.
|
|
Thanks Roman Gladkov and Zbigniew Siciarz.
|
|
|
|
|
|
Thanks Kronuz and regebro.
|
|
Thanks Claude and Julien for the review.
|