summaryrefslogtreecommitdiff
path: root/django/db/models/fields/files.py
AgeCommit message (Expand)Author
2015-02-20[1.8.x] Fixed typo in django/db/models/fields/files.py comment.Don Kirkby
2015-02-09[1.8.x] Sorted imports with isort; refs #23860.Tim Graham
2015-01-12Fixed #9893 -- Allowed using a field's max_length in the Storage.Pavel Shpilev
2014-10-19Fixed #23684 -- Used correct package name for Pillow in Error hint.Nicholas Serra
2014-08-01Fixed #21940 -- Added kwargs to contribute_to_class() of model fields..Mitar
2014-04-26Fix many many typos in comments throughout the codebaseAlex Gaynor
2014-03-21Removed PIL compatability layer per deprecation timeline.Tim Graham
2014-03-08Fixed #22199: Bad max_length deconstruction for FileFieldAndrew Godwin
2014-03-03Edited model and field checks for grammar and consistency.Russell Keith-Magee
2014-01-20Removed an inactive system check for upload_to.Russell Keith-Magee
2014-01-20Fixed #16905 -- Added extensible checks (nee validation) frameworkRussell Keith-Magee
2013-10-11Fixed assorted flake8 errors.Tim Graham
2013-10-04Fixed #21217 -- Avoid connecting `(pre|post)_init` signals to abstract senders.Simon Charette
2013-07-31Fixed #20348 -- Consistently handle Promise objects in model fields.Tai Lee
2013-07-08A large number of stylistic cleanups across django/db/Alex Gaynor
2013-06-29Fixed #20660 -- Do not try to delete an unset FieldFileClaude Paroz
2013-06-28Ported over Field.deconstruct() from my schema alteration branch.Andrew Godwin
2013-02-25Fixed #19634 -- Added proper __hash__ methods.Aymeric Augustin
2012-12-27Fixed #19525 -- Reverted dcd4383107 and 05d333ba3b.Aymeric Augustin
2012-08-30Replaced some smart_xxx by force_xxx equivalentClaude Paroz
2012-08-14[py3] Fed strftime with unicode on Python 3Claude Paroz
2012-08-07[py3] Ported django.utils.encoding.Aymeric Augustin
2012-07-22[py3] Replaced unicode/str by six.text_type/bytes.Aymeric Augustin
2012-07-22[py3] Replaced basestring by six.string_types.Aymeric Augustin
2012-06-26Fixed #18515 -- Conditionally regenerated filename in FileField validationClaude Paroz
2012-06-07Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.Claude Paroz
2012-05-17Fixed #9893 -- Validated the length of file namesAymeric Augustin
2012-02-09Fixed #17219 -- Updated model field descriptions to be more precise. Thanks, ...Jannis Leidel
2011-08-23Fix initialisation of ImageField super classes.Malcolm Tredinnick
2011-07-13Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for t...Jannis Leidel
2011-03-28Removed a bunch more Python 2.4 workarounds now that we don't support that ve...Adrian Holovaty
2011-01-26Fixed #6456 - Excised FileField file deletion to avoid data loss. Thanks to d...Carl Meyer
2010-12-12Fixed #12955 -- Use the size attribute of the file instead of len() to suppor...Jannis Leidel
2010-10-01Fixed #7048 -- Added ClearableFileInput widget to clear file fields. Thanks f...Jannis Leidel
2009-12-22Fixed #1142 -- Added multiple database support.Russell Keith-Magee
2009-12-17Fixed #11753 - Q objects with callables no longer explode on Python 2.4. Than...Jacob Kaplan-Moss
2009-12-16Fixed #12385: Made built-in field type descriptions in admindocs translatable...Karen Tracey
2009-12-12Fixed #7977: Fixed admindocs to use docstrings instead of a static array to l...Karen Tracey
2009-05-28Changes to `ImageFileDescriptor` and `ImageField` to fix a few cases of setti...Gary Wilson Jr
2009-05-11Fixed #10404: ImageField height_field and width_field options no longer depen...Jacob Kaplan-Moss
2009-05-08Fixed #7712, #9404, #10249, #10300: a light refactor and cleanup of file stor...Jacob Kaplan-Moss
2009-03-30Fixed #10149. FileFields in a form now validate max_length. Based on a patch ...Joseph Kocherhans
2009-03-08Fixed #9508 -- Added an appropriate FileField.__hash__ implementation.Malcolm Tredinnick
2009-02-24Fixed #10347 -- Fixed incorrect AttributeError raised when attempting to acce...Karen Tracey
2009-02-16Fixed #10196: Restored setting of image file width and height fields lost in ...Karen Tracey
2009-02-16Fixed #10121: Restored code lost in r9766 that prevented overwriting an alrea...Karen Tracey
2009-01-16Fixed #10044: You can now assign directly to file fields (`instance.filefield...Jacob Kaplan-Moss
2008-12-16Fixed #9786 -- Fixed inequality checking for django.db.models.fields.file.Fie...Malcolm Tredinnick
2008-08-28FIxed #8613: removed vestigal `FileField.save_file()`. Thanks, kratorius.Jacob Kaplan-Moss
2008-08-27Fixed #8534: getting the size of a file no longer opens it (at least for the ...Jacob Kaplan-Moss