- 15 Şub, 2014 15 kayıt (commit)
-
-
Grzegorz Nosek yazdı
When django.core.urlresolvers.resolve was called from a view, failed and the exception was propagated and rendered by technical_404_response, the URL mentioned on the page was the current URL instead of the URL passed to resolve(). Fixed by using the path attribute from the Resolver404 exception instead of request.path_info. Also cleaned up the exceptions to use standard named parameters instead of stuffing a dict in args[0]
-
Albert Wang yazdı
Thanks tunixman for the report and Baptiste Mispelon and Shai Berger for reviews.
-
Rodolfo Carvalho yazdı
-
Rodolfo Carvalho yazdı
-
Aaron France yazdı
Flatten a level of sublists before checking for duplicate fields. When given sublists such as: ```python class FooAdmin(admin.ModelAdmin): fields = ('one', ('one', 'two')) ``` The previous code did not correctly detect the duplicated 'one' field. Thanks to jwa for the report.
-
Rodolfo Carvalho yazdı
-
Tim Graham yazdı
Thanks apollo13: "reverse() shouldn't know about absolute/relative paths."
-
Rodolfo Carvalho yazdı
-
Florian Apolloner yazdı
Change analyse (British) to analyze (American).
-
Michal Prusek yazdı
-
Rodolfo Carvalho yazdı
-
djendrju yazdı
-
Tim Graham yazdı
-
Anton Baklanov yazdı
Now AddField actions appear in operations list before AlterUniqueTogether actions. Thanks to SmileyChris for the report.
-
Klemens Mantzos yazdı
Thanks Klemens Mantzos for the report and initial patch.
-
- 14 Şub, 2014 5 kayıt (commit)
-
-
Lukasz Balcerzak yazdı
Thanks leahculver for the suggestion and Erik Romijn, Simon Charette, and Marc Tamlyn for the reviews.
-
Antoine Catton yazdı
This fixes redirecting to relative URLs with django.shortcuts.redirect.
-
Alasdair Nicol yazdı
-
Loic Bistuer yazdı
Thanks selwin for the suggestion.
-
Simon Meers yazdı
-
- 13 Şub, 2014 7 kayıt (commit)
-
-
Bas Peschier yazdı
Commit 4523fcd6 introduces _actions_icnt to the local scope, which overrides the value set in the HTML. The admin would incorrectly show selected rows in a change list as "1 of undefined selected".
-
Florian Apolloner yazdı
-
Tim Graham yazdı
-
Jeremy yazdı
Thanks esevece for the suggestion and Nick Sandford and Martin Warne for the inital work on the patch.
-
Adam Avramov yazdı
-
Alasdair Nicol yazdı
Thanks Tim Graham for the report and recommendations
-
Baptiste Mispelon yazdı
-
- 12 Şub, 2014 9 kayıt (commit)
-
-
Andrew Godwin yazdı
-
Andrew Godwin yazdı
This reverts commit 0ac13ecc.
-
Andrew Godwin yazdı
-
Andrew Godwin yazdı
-
Andrew Godwin yazdı
-
Andrew Godwin yazdı
-
Loic Bistuer yazdı
Before 4befb301 the detection was broken because we used isinstance against a LazyObject rather than against a Storage class. That commit fixed it by looking directly at the object wrapped by LazyObject. This could however be a problem to anyone who subclasses the collectstatic management Command and directly supplies a Storage class. Refs #21581.
-
Eli Bendersky yazdı
When invoked as follows: $ python manage.py dumpdata blogapp blogapp.Tag Django would throw a TypeError. This commit fixes the problem and provides a test.
-
Claude Paroz yazdı
Refs #21049. Thanks quinox for the report.
-
- 11 Şub, 2014 2 kayıt (commit)
-
-
Christopher Adams yazdı
ForeignKey or ManyToManyField attribute ``limit_choices_to`` can now be a callable that returns either a ``Q`` object or a dict. Thanks michael at actrix.gen.nz for the original suggestion.
-
Florian Apolloner yazdı
-
- 10 Şub, 2014 2 kayıt (commit)
-
-
Claude Paroz yazdı
Thanks Florent Messa for the report.
-
Claude Paroz yazdı
-