- 21 Agu, 2013 12 kayıt (commit)
-
-
Florian Apolloner yazdı
-
Simon Charette yazdı
-
Anssi Kääriäinen yazdı
-
Anssi Kääriäinen yazdı
Tests by Tim Graham, report from jeroen.pulles@redslider.net.
-
Anssi Kääriäinen yazdı
-
Anssi Kääriäinen yazdı
If LEFT JOINs are required for correct results, then trimming the join can lead to incorrect results. Consider case: TBL A: ID | TBL B: ID A_ID 1 1 1 2 Now A.order_by('b__a') did use a join to B, and B's a_id column. This was seen to contain the same value as A's id, and so the join was trimmed. But this wasn't correct as the join is LEFT JOIN, and for row A.id = 2 the B.a_id column is NULL.
-
Anssi Kääriäinen yazdı
There was an old complaint about nullable one-to-one field cascading even when the o2o field was saved to None value before the deletion. Added an test to verify this doesn't happen. Also some PEP 8 cleanup.
-
Simon Charette yazdı
-
Simon Charette yazdı
-
Simon Charette yazdı
-
Simon Charette yazdı
-
Andrew Godwin yazdı
-
- 19 Agu, 2013 13 kayıt (commit)
-
-
Andrew Godwin yazdı
Conflicts: docs/ref/django-admin.txt
-
Rainer Koirikivi yazdı
The default delete action resulted in a NoReverseMatch if it were to list any Model with a ModelAdmin with `get_urls` overridden to remove the change url. Catching the error and not displaying the link in that case, as was already done for models with no registered admins. Thanks Keryn Knight for the report.
-
Anssi Kääriäinen yazdı
Caused by commit 7737305a
-
Tim Graham yazdı
-
Anssi Kääriäinen yazdı
The EmptyResultSet wasn't treated correctly so the end results was incorrect, too. The bug had been already fixed in master so only tests added.
-
Anssi Kääriäinen yazdı
There were clauses that weren't needed in the subqueries. These were ORDER BY, SELECT FOR UPDATE and related selections.
-
Anssi Kääriäinen yazdı
-
Andrew Godwin yazdı
-
Andrew Godwin yazdı
-
Anssi Kääriäinen yazdı
-
Anssi Kääriäinen yazdı
An isnull lookup produced incorrect SQL. This was already fixed earlier, so only tests added.
-
Anssi Kääriäinen yazdı
Added proxy_models tests by Harm Geerts <github@geertswei.nl>.
-
Anssi Kääriäinen yazdı
Fixed #11892, fixed #16458, fixed #14492.
-
- 18 Agu, 2013 3 kayıt (commit)
-
-
Alex Gaynor yazdı
-
Alex Gaynor yazdı
Proxy __len__ and __contains__ for LazyObject
-
Nick Bruun yazdı
-
- 17 Agu, 2013 1 kayıt (commit)
-
-
Carl Meyer yazdı
-
- 16 Agu, 2013 2 kayıt (commit)
-
-
Harm Geerts yazdı
-
Claude Paroz yazdı
Python 2.7 allows to combine several 'with' instructions.
-
- 15 Agu, 2013 5 kayıt (commit)
-
-
Alasdair Nicol yazdı
Thanks to Collin Anderson for the suggestion and Tim Graham for reviewing the patch.
-
Tim Graham yazdı
Thanks AtomicSpark for the report.
-
Nick Bruun yazdı
-
James Bennett yazdı
Forwardport of 61283a82 from 1.5.x
-
Tim Graham yazdı
-
- 14 Agu, 2013 4 kayıt (commit)
-
-
Alasdair Nicol yazdı
Follows 3f2befc9
-
Tim Graham yazdı
-
Jonathan Slenders yazdı
Thanks clay.evil@ for the suggestion.
-
SusanTan yazdı
Thanks Jug_ for suggestion, john_scott for the initial patch, and Tim Graham for code review.
-