Ticket #14905: django-documentation-14990.diff

File django-documentation-14990.diff, 1.2 KB (added by Keryn Knight <keryn@…>, 13 years ago)

documentation changes, svn diff against revision 14990

  • docs/ref/models/fields.txt

     
    554554day. If you upload a file on Jan. 15, 2007, it will be saved in the directory
    555555``/home/media/photos/2007/01/15``.
    556556
    557 If you want to retrieve the upload file's on-disk filename, or a URL that refers
     557If you wish to retrieve the upload file's on-disk filename, a URL that refers
    558558to that file, or the file's size, you can use the
    559 :attr:`~django.core.files.File.name`, :attr:`~django.core.files.File.url`
    560 and :attr:`~django.core.files.File.size` attributes; see :doc:`/topics/files`.
     559:attr:`~django.core.files.File.name`, :attr:`~django.core.files.storage.Storage.url`
     560and :attr:`~django.core.files.storage.Storage.size` attributes; provided the
     561:doc:`/ref/files/storage` you're using
     562(:class:`~django.core.files.storage.FileSystemStorage` by default) implements
     563them. See :doc:`/topics/files` for further information.
    561564
    562565Note that whenever you deal with uploaded files, you should pay close attention
    563566to where you're uploading them and what type of files they are, to avoid
Back to Top