<feed xmlns='http://www.w3.org/2005/Atom'>
<title>django.git/tests/regressiontests/admin_views/tests.py, branch 1.5.12</title>
<subtitle>django
</subtitle>
<id>http://cgit.adnoto.dev/django.git/atom?h=1.5.12</id>
<link rel='self' href='http://cgit.adnoto.dev/django.git/atom?h=1.5.12'/>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/'/>
<updated>2014-11-25T19:00:17Z</updated>
<entry>
<title>[1.5.x] Fixed #23754 -- Always allowed reference to the primary key in the admin</title>
<updated>2014-11-25T19:00:17Z</updated>
<author>
<name>Simon Charette</name>
<email>charette.s@gmail.com</email>
</author>
<published>2014-11-16T15:42:09Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=3d35ea43001991d94c192abca1832628cd255bb0'/>
<id>urn:sha1:3d35ea43001991d94c192abca1832628cd255bb0</id>
<content type='text'>
This change allows dynamically created inlines "Add related" button to work
correcly as long as their associated foreign key is pointing to the primary
key of the related model.

Thanks to amorce for the report, Julien Phalip for the initial patch,
and Collin Anderson for the review.

Backport of f9c4e14aeca7df79991bca8ac2d743953cbd095c from master
</content>
</entry>
<entry>
<title>[1.5.x] Fixed #23604 -- Allowed related m2m fields to be references in the admin.</title>
<updated>2014-10-06T12:54:26Z</updated>
<author>
<name>Emmanuelle Delescolle</name>
<email>emma@lasolution.be</email>
</author>
<published>2014-10-05T18:06:51Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=314e9cd38f6bf72a619e5d07c99371439c33ba11'/>
<id>urn:sha1:314e9cd38f6bf72a619e5d07c99371439c33ba11</id>
<content type='text'>
Thanks Simon Charette for review.

Backport of a24cf21722 from master
</content>
</entry>
<entry>
<title>[1.5.x] Fixed #23431 -- Allowed inline and hidden references to admin fields.</title>
<updated>2014-09-08T18:09:14Z</updated>
<author>
<name>Simon Charette</name>
<email>charette.s@gmail.com</email>
</author>
<published>2014-09-04T21:04:53Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=d9d4d62d8539fc3b72c979c04d11e160bc8fff9d'/>
<id>urn:sha1:d9d4d62d8539fc3b72c979c04d11e160bc8fff9d</id>
<content type='text'>
This fixes a regression introduced by the 53ff096982 security fix.

Thanks to @a1tus for the report and Tim for the review.

refs #23329.

Backport of 342ccbd from master
</content>
</entry>
<entry>
<title>Fixed #23329 -- Allowed inherited and m2m fields to be referenced in the admin.</title>
<updated>2014-08-28T02:05:30Z</updated>
<author>
<name>Simon Charette</name>
<email>charette.s@gmail.com</email>
</author>
<published>2014-08-21T15:55:23Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=4c96bd8fb31d2325112ba92ed3cbdc3ff1bbfabc'/>
<id>urn:sha1:4c96bd8fb31d2325112ba92ed3cbdc3ff1bbfabc</id>
<content type='text'>
Thanks to Trac alias Markush2010 and ross for the detailed reports.

Backport of 3cbb759 from master
</content>
</entry>
<entry>
<title>[1.5.x] Prevented data leakage in contrib.admin via query string manipulation.</title>
<updated>2014-08-20T15:44:02Z</updated>
<author>
<name>Simon Charette</name>
<email>charette.s@gmail.com</email>
</author>
<published>2014-08-11T19:36:16Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=2a446c896e7c814661fb9c4f212b071b2a7fa446'/>
<id>urn:sha1:2a446c896e7c814661fb9c4f212b071b2a7fa446</id>
<content type='text'>
This is a security fix. Disclosure following shortly.
</content>
</entry>
<entry>
<title>[1.5.x] Made a couple of selenium tests wait for page loaded</title>
<updated>2013-02-20T22:01:07Z</updated>
<author>
<name>Anssi Kääriäinen</name>
<email>akaariai@gmail.com</email>
</author>
<published>2013-02-20T01:08:55Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=96790fc02214b4d36df0ecb630159e65b28a5174'/>
<id>urn:sha1:96790fc02214b4d36df0ecb630159e65b28a5174</id>
<content type='text'>
The admin_widgets tests were issuing click() to the browser but
didn't wait for the effects of those clicks. This caused the resulting
request to be processed concurrently with the test case. When using
in-memory SQLite this caused weird failures.

Also added wait_page_loaded() to admin selenium tests for code
reuse.

Fixed #19856, backpatch of 50677b29af39ca670274fb45087415c883c78b04
</content>
</entry>
<entry>
<title>[1.5.x] Checked object permissions on admin history view.</title>
<updated>2013-02-19T17:39:04Z</updated>
<author>
<name>Carl Meyer</name>
<email>carl@oddbird.net</email>
</author>
<published>2013-02-04T23:57:59Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=0e46c7f7ac9c8c56149090b58a277239708cf4f7'/>
<id>urn:sha1:0e46c7f7ac9c8c56149090b58a277239708cf4f7</id>
<content type='text'>
This is a security fix. Disclosure and advisory coming shortly.

Patch by Russell Keith-Magee.
</content>
</entry>
<entry>
<title>[1.5.x] Fixed typos in docs and comments</title>
<updated>2013-01-29T17:58:24Z</updated>
<author>
<name>Tim Graham</name>
<email>timograham@gmail.com</email>
</author>
<published>2013-01-29T15:45:40Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=5da6ce11edb60319c014c07c40b03674ea89de4c'/>
<id>urn:sha1:5da6ce11edb60319c014c07c40b03674ea89de4c</id>
<content type='text'>
Backport of ee26797cff from master
</content>
</entry>
<entry>
<title>[1.5.x] Expanded tests added when fixing #14529.</title>
<updated>2012-12-24T21:13:38Z</updated>
<author>
<name>Ramiro Morales</name>
<email>cramm0@gmail.com</email>
</author>
<published>2012-12-24T19:17:16Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=3b32e5cc2d4b6db22148cd7e51cdb735aeb25b13'/>
<id>urn:sha1:3b32e5cc2d4b6db22148cd7e51cdb735aeb25b13</id>
<content type='text'>
To make sure changes in 35d1cd0 don't break anything. Refs #19505.

ad769efa85e0296033572315025fed9fa9aefade from master.
</content>
</entry>
<entry>
<title>[1.5.x] Made admin generated changelist URLs independent of dict ordering</title>
<updated>2012-12-24T02:20:32Z</updated>
<author>
<name>Luke Plant</name>
<email>L.Plant.98@cantab.net</email>
</author>
<published>2012-12-24T01:32:04Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=b362a559692115b188f621b43162cb31282b0fd1'/>
<id>urn:sha1:b362a559692115b188f621b43162cb31282b0fd1</id>
<content type='text'>
Backport of c31c2c92b8ef0b58394ac55fa4f61acc07091047 from master
</content>
</entry>
</feed>
