django1/django/core/files
Malcolm Tredinnick a08267bf6a Removed some import-time dependencies on Django's settings.
Now you can import the file storage stuff and still call settings.configure()
afterwards. There is still one import-time usage of settings in
django.contrib.comments, but that's unavoidable.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@9946 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-03-02 04:48:47 +00:00
..
__init__.py File storage refactoring, adding far more flexibility to Django's file handling. The new files.txt document has details of the new features. 2008-08-08 20:59:02 +00:00
base.py Fixed #10044: You can now assign directly to file fields (`instance.filefield = somefile`). Thanks, Marty Alchin. 2009-01-16 21:48:37 +00:00
images.py Don't import PIL until needed so that systems without PIL don't barf. 2008-08-08 21:57:25 +00:00
locks.py Fixed #8403 -- Changed the use of fcntl.flock() to fcntl.lockf(). On some 2008-08-28 19:28:45 +00:00
move.py Fixed #8673: fixed a missing import in `django.core.files.move`. 2008-08-29 20:00:55 +00:00
storage.py Removed some import-time dependencies on Django's settings. 2009-03-02 04:48:47 +00:00
temp.py Fixed #8203 -- Fixed temporary file deleation on Windows and a couple of edge 2008-08-23 17:56:02 +00:00
uploadedfile.py FIxed #8156: `UploadedFile.__repr__` now returns a string, a good `__repr__` should. 2008-08-27 20:53:02 +00:00
uploadhandler.py Fixed #7847 -- Removed a whole bunch of unused imports from throughout the codebase. Thanks, julien 2008-07-22 03:24:09 +00:00