summaryrefslogtreecommitdiff
path: root/django/core/files
AgeCommit message (Expand)Author
2013-11-03Fixed all E226 violationsAlex Gaynor
2013-11-03Fixed flake8 E251 violationsMilton Mazzarri
2013-11-02Fixed all E261 warningscoagulant
2013-11-02More attacking E302 violatorsAlex Gaynor
2013-11-02Replaced a hardcoded "2" with the right named constantAlex Gaynor
2013-11-02Fixed #21302 -- Fixed unused imports and import *.Tim Graham
2013-10-24Fixed #21219 -- Added a way to set different permission for static files.Vajrasky Kok
2013-10-24Start attacking E231 violationsAlex Gaynor
2013-10-23Fixed #21298 -- Fixed E301 pep8 warningsAlasdair Nicol
2013-10-11Fixed assorted flake8 errors.Tim Graham
2013-09-19Fixed #18744 -- Updated docstring to highlight limitations of NamedTemporaryFileKevin Christopher Henry
2013-09-10Fixed #20841 -- Added messages to NotImplementedErrorsGregor MacGregor
2013-09-10Fixed #21057 -- Prevented FileSystemStorage from leaving temporary files.John Hensley
2013-09-10Fixed #21033 -- Fixed uploaded filenames not always being truncated to 255 ch...homm
2013-09-06Fixed #11857 -- Added missing 'closed' property on TemporaryFile class.Christopher Adams
2013-09-05Took advantage of django.utils.six.moves.urllib.*.Aymeric Augustin
2013-08-12Fixed #13518 -- Added FILE_UPLOAD_DIRECTORY_PERMISSIONS settingMel Collins
2013-07-11Fixed #13721 -- Added UploadedFile.content_type_extra.Benjamin Kagia
2013-06-29Do not allow FileSystemStorage.delete to receive an empty nameClaude Paroz
2013-06-20Fixed #20486 -- Ensure that file_move_safe raises an error if the destination...Russell Keith-Magee
2013-05-26Replaced `and...or...` constructs with PEP 308 conditional expressions.Ramiro Morales
2013-05-25Fixed #19866 -- Added security logger and return 400 for SuspiciousOperation.Preston Holmes
2013-05-17Fixed #20427 -- Moved a variable initialization in storage.pyClaude Paroz
2013-05-14Fixed #19934 - Use of Pillow is now preferred over PIL.Daniel Lindsley
2013-02-23#18899 FileSystemStorage.save should support any file-like objectsMarcin Biernat
2013-02-04Fixed #17061 -- Factored out importing object from a dotted pathClaude Paroz
2013-01-01Replaced six.reraise with a simple raise.Florian Apolloner
2013-01-01Replaced e.message with e.args[0] in 3aa4b8165da23a2f094d0eeffacbda5484f4c1f6.Florian Apolloner
2013-01-01Fixed #19457 -- ImageField size detection failed for some files.Anton Baklanov
2012-12-06Fixed #19367 -- Fixed saving ContentFile in filesystem storageClaude Paroz
2012-11-03Fixed #18963 -- Used a subclass-friendly patternAymeric Augustin
2012-09-17Fixed #18947 -- Don't make uploaded files executeable by default.Florian Apolloner
2012-08-30Replaced some smart_xxx by force_xxx equivalentClaude Paroz
2012-08-29Made FileSystemStorage accept both text and byte streamsClaude Paroz
2012-08-29Fixed #11739 -- Made ContentFile support Unicode inputClaude Paroz
2012-08-29Replaced many smart_bytes by force_bytesClaude Paroz
2012-08-18[py3] Fixed slow path through file_move_safeKaren Tracey
2012-08-18[py3] Fixed file_storage tests.Aymeric Augustin
2012-08-12[py3] Made __repr__ return str with Python 3Claude Paroz
2012-08-12[py3] Refactored __unicode__ to __str__.Aymeric Augustin
2012-08-12[py3] Replaced some __str__ methods by __unicode__Aymeric Augustin
2012-08-12[py3] Removed redundant __str__ methods.Aymeric Augustin
2012-08-08[py3] Replaced __nonzero__ by __bool__Claude Paroz
2012-08-07[py3] Ported django.utils.encoding.Aymeric Augustin
2012-07-30Fixed a security issue in image uploading. Disclosure and release forthcoming.Florian Apolloner
2012-07-22[py3] Updated urllib/urllib2/urlparse imports.Aymeric Augustin
2012-06-07Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.Claude Paroz
2012-05-31Fixed #14681 -- Do not set mode to None on file-like objects.Claude Paroz
2012-05-19Marked bytestrings with b prefix. Refs #18269Claude Paroz
2012-05-10Replaced foo.next() by next(foo).Claude Paroz