<feed xmlns='http://www.w3.org/2005/Atom'>
<title>chango.git/tests/regressiontests/model_fields/imagefield.py, branch devmain</title>
<subtitle>django
</subtitle>
<id>http://cgit.adnoto.dev/chango.git/atom?h=devmain</id>
<link rel='self' href='http://cgit.adnoto.dev/chango.git/atom?h=devmain'/>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/'/>
<updated>2013-02-26T13:36:57Z</updated>
<entry>
<title>Merged regressiontests and modeltests into the test root.</title>
<updated>2013-02-26T13:36:57Z</updated>
<author>
<name>Florian Apolloner</name>
<email>florian@apolloner.eu</email>
</author>
<published>2013-02-26T08:53:47Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=89f40e36246100df6a11316c31a76712ebc6c501'/>
<id>urn:sha1:89f40e36246100df6a11316c31a76712ebc6c501</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fixed #19357 -- Allow non-ASCII chars in filesystem paths</title>
<updated>2012-12-08T10:13:52Z</updated>
<author>
<name>Claude Paroz</name>
<email>claude@2xlibre.net</email>
</author>
<published>2012-12-08T10:13:52Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=c91667338a4e774e2819ccf4da852dc7b759bc19'/>
<id>urn:sha1:c91667338a4e774e2819ccf4da852dc7b759bc19</id>
<content type='text'>
Thanks kujiu for the report and Aymeric Augustin for the review.
</content>
</entry>
<entry>
<title>Used skipIf decorator to skip image tests when PIL is not available</title>
<updated>2012-07-06T09:20:07Z</updated>
<author>
<name>Claude Paroz</name>
<email>claude@2xlibre.net</email>
</author>
<published>2012-07-06T09:15:20Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=86eb606b88b3979de8074c3a049535150a0cc8a5'/>
<id>urn:sha1:86eb606b88b3979de8074c3a049535150a0cc8a5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Convert the remainder of the relative imports in the tests to be absolute imports.</title>
<updated>2011-10-13T21:34:56Z</updated>
<author>
<name>Alex Gaynor</name>
<email>alex.gaynor@gmail.com</email>
</author>
<published>2011-10-13T21:34:56Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=8c0eefd066aa0e5bfe8c1006d055be8e2ad69a2b'/>
<id>urn:sha1:8c0eefd066aa0e5bfe8c1006d055be8e2ad69a2b</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16981 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for the work on the patch and Alex for reviewing.</title>
<updated>2011-07-13T09:35:51Z</updated>
<author>
<name>Jannis Leidel</name>
<email>jannis@leidel.info</email>
</author>
<published>2011-07-13T09:35:51Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=24f4764a48e4141923a78c8820e4cd7b411ec0fc'/>
<id>urn:sha1:24f4764a48e4141923a78c8820e4cd7b411ec0fc</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16539 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Added test for pickling of a model with an `ImageField`, refs #11103.</title>
<updated>2009-05-29T04:06:09Z</updated>
<author>
<name>Gary Wilson Jr</name>
<email>gary.wilson@gmail.com</email>
</author>
<published>2009-05-29T04:06:09Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=c78554b2164b9b09fa30f93371fa6d89cf6b5e89'/>
<id>urn:sha1:c78554b2164b9b09fa30f93371fa6d89cf6b5e89</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10860 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Changes to `ImageFileDescriptor` and `ImageField` to fix a few cases of setting image dimension fields.</title>
<updated>2009-05-28T05:46:09Z</updated>
<author>
<name>Gary Wilson Jr</name>
<email>gary.wilson@gmail.com</email>
</author>
<published>2009-05-28T05:46:09Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=d89ba464dde14abc3aaf6d1e02202721f5fd2b3f'/>
<id>urn:sha1:d89ba464dde14abc3aaf6d1e02202721f5fd2b3f</id>
<content type='text'>
 * Moved dimension field update logic out of `ImageFileDescriptor.__set__` and into its own method on `ImageField`.
 * New `ImageField.update_dimension_fields` method is attached to model instance's `post_init` signal so that:
   * Dimension fields are set when defined before the ImageField.
   * Dimension fields are set when the field is assigned in the model constructor (fixes #11196), but only if the dimension fields don't already have values, so we avoid updating the dimensions every time an object is loaded from the database (fixes #11084).
 * Clear dimension fields when the ImageField is set to None, which also causes dimension fields to be cleared when `ImageFieldFile.delete()` is used.
 * Added many more tests for ImageField that test edge cases we weren't testing before, and moved the ImageField tests out of `file_storage` and into their own module within `model_fields`.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@10858 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
</feed>
