- 25 Mar, 2013 3 kayıt (commit)
-
-
Andrew Jesaitis yazdı
The cancelEventPropagation function is a general utility function that can be reused by other widgets. Refs #4120.
-
Andrew Jesaitis yazdı
The function quickElement in calendar.js is a duplicate of the quickElement function in core.js. Refs #4120.
-
Simon Charette yazdı
Fixed #20117 -- Added missing translation override to fix flatpages test.
-
- 24 Mar, 2013 16 kayıt (commit)
-
-
Anssi Kääriäinen yazdı
Refs #19385
-
Jannis Leidel yazdı
Fixed #19541 -- Fixed BaseHandler to enable reversing URLs in response middlewares...
-
Loic Bistuer yazdı
and streamed responses with respect to per-request urlconf.
-
Anssi Kääriäinen yazdı
This is a regression fix to multicolumn joins. Refs #19385.
-
Tim Graham yazdı
Fixed signature of HttpResponse.set_signed_cookie in docs.
-
Tim Graham yazdı
-
Aymeric Augustin yazdı
-
Anssi Kääriäinen yazdı
-
Anssi Kääriäinen yazdı
The commit of 266de5f9 included only tests, this time also code changes included...
-
Yohan Boniface yazdı
-
Anssi Kääriäinen yazdı
This patch iproved two major parts in Django. First, the fields.related was refactored. The main addition there was ForeignObject. Second, the ORM now handles multicolumn joins in most cases, though there are still cases that do not work correcly (split_exclude() for example). In addition there were extesive changes to how GenericRelation works. Before it was a fake m2m field, now it is a pure virtual fields and is based on ForeignObject. There is still much room for improvement. The related fields code is still somewhat confusing, and how fields are represented in model._meta should also be revisited. This patch was written mostly by Jeremy Tillman with some final polish by the committer.
-
Aymeric Augustin yazdı
-
Aymeric Augustin yazdı
Sorry.
-
Aymeric Augustin yazdı
Thanks to the many contributors who updated and improved the patch over the life of this ticket.
-
Aymeric Augustin yazdı
Thanks Florian for reporting this omission.
-
Aymeric Augustin yazdı
This reverts commit 948a833e. flup appears to be dead, and this fix breaks legitimate uses of Django. Refs #8490.
-
- 23 Mar, 2013 11 kayıt (commit)
-
-
Tim Graham yazdı
Small typo error in tutorial
-
Claude Paroz yazdı
Thanks vinyll for the report.
-
Claude Paroz yazdı
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.
-
matiasb yazdı
-
Jannis Leidel yazdı
Fixed #18000 -- Moved the code to handle goto requests to an extra WizardView method.
-
Stephan Jaekel yazdı
-
Jannis Leidel yazdı
Fixed #19433 -- Added some class attributes to pass initial form lists to the WizardView.
-
Stephan Jaekel yazdı
Added some class attributes to pass initial form lists to the WizardView without the need to add them in the as_view call.
-
Stephan Jaekel yazdı
-
Christos Kontas yazdı
-
Russell Keith-Magee yazdı
Thanks to matiasb for the report of #20060 and the draft patch for #20048.
-
- 22 Mar, 2013 6 kayıt (commit)
-
-
Aymeric Augustin yazdı
This improves rendering in some foreign languages.
-
Tim Graham yazdı
-
Tim Graham yazdı
Docs template name typo
-
Claude Paroz yazdı
This was a regression due to unicode_literals usage. Thanks Ivan Virabyan for the report and the initial patch.
-
Marc Tamlyn yazdı
Python 2.6 has some different behaviour when checking isinstance(foo, collections.Iterator).
-
Tim Graham yazdı
Thanks guettli for the suggestion.
-
- 21 Mar, 2013 2 kayıt (commit)
-
-
Tom V yazdı
change_list_request.html doesn't exist, it's named change_list_results.html
-
Andrew Gorcester yazdı
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.
-
- 20 Mar, 2013 2 kayıt (commit)
-
-
Carny Cheng yazdı
-
Anssi Kääriäinen yazdı
-