staticfiles.txt 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461
  1. ===================
  2. The staticfiles app
  3. ===================
  4. .. module:: django.contrib.staticfiles
  5. :synopsis: An app for handling static files.
  6. ``django.contrib.staticfiles`` collects static files from each of your
  7. applications (and any other places you specify) into a single location that
  8. can easily be served in production.
  9. .. seealso::
  10. For an introduction to the static files app and some usage examples, see
  11. :doc:`/howto/static-files/index`. For guidelines on deploying static files,
  12. see :doc:`/howto/static-files/deployment`.
  13. .. _staticfiles-settings:
  14. Settings
  15. ========
  16. See :ref:`staticfiles settings <settings-staticfiles>` for details on the
  17. following settings:
  18. * :setting:`STATIC_ROOT`
  19. * :setting:`STATIC_URL`
  20. * :setting:`STATICFILES_DIRS`
  21. * :setting:`STATICFILES_STORAGE`
  22. * :setting:`STATICFILES_FINDERS`
  23. Management Commands
  24. ===================
  25. ``django.contrib.staticfiles`` exposes three management commands.
  26. collectstatic
  27. -------------
  28. .. django-admin:: collectstatic
  29. Collects the static files into :setting:`STATIC_ROOT`.
  30. Duplicate file names are by default resolved in a similar way to how template
  31. resolution works: the file that is first found in one of the specified
  32. locations will be used. If you're confused, the :djadmin:`findstatic` command
  33. can help show you which files are found.
  34. Files are searched by using the :setting:`enabled finders
  35. <STATICFILES_FINDERS>`. The default is to look in all locations defined in
  36. :setting:`STATICFILES_DIRS` and in the ``'static'`` directory of apps
  37. specified by the :setting:`INSTALLED_APPS` setting.
  38. The :djadmin:`collectstatic` management command calls the
  39. :meth:`~django.contrib.staticfiles.storage.StaticFilesStorage.post_process`
  40. method of the :setting:`STATICFILES_STORAGE` after each run and passes
  41. a list of paths that have been found by the management command. It also
  42. receives all command line options of :djadmin:`collectstatic`. This is used
  43. by the :class:`~django.contrib.staticfiles.storage.CachedStaticFilesStorage`
  44. by default.
  45. By default, collected files receive permissions from
  46. :setting:`FILE_UPLOAD_PERMISSIONS` and collected directories receive permissions
  47. from :setting:`FILE_UPLOAD_DIRECTORY_PERMISSIONS`. If you would like different
  48. permissions for these files and/or directories, you can subclass either of the
  49. :ref:`static files storage classes <staticfiles-storages>` and specify the
  50. ``file_permissions_mode`` and/or ``directory_permissions_mode`` parameters,
  51. respectively. For example::
  52. from django.contrib.staticfiles import storage
  53. class MyStaticFilesStorage(storage.StaticFilesStorage):
  54. def __init__(self, *args, **kwargs):
  55. kwargs['file_permissions_mode'] = 0o640
  56. kwargs['directory_permissions_mode'] = 0o760
  57. super(CustomStaticFilesStorage, self).__init__(*args, **kwargs)
  58. Then set the :setting:`STATICFILES_STORAGE` setting to
  59. ``'path.to.MyStaticFilesStorage'``.
  60. .. versionadded:: 1.7
  61. The ability to override ``file_permissions_mode`` and
  62. ``directory_permissions_mode`` is new in Django 1.7. Previously the file
  63. permissions always used :setting:`FILE_UPLOAD_PERMISSIONS` and the directory
  64. permissions always used :setting:`FILE_UPLOAD_DIRECTORY_PERMISSIONS`.
  65. .. highlight:: console
  66. Some commonly used options are:
  67. .. django-admin-option:: --noinput
  68. Do NOT prompt the user for input of any kind.
  69. .. django-admin-option:: -i <pattern>
  70. .. django-admin-option:: --ignore <pattern>
  71. Ignore files or directories matching this glob-style pattern. Use multiple
  72. times to ignore more.
  73. .. django-admin-option:: -n
  74. .. django-admin-option:: --dry-run
  75. Do everything except modify the filesystem.
  76. .. django-admin-option:: -c
  77. .. django-admin-option:: --clear
  78. Clear the existing files before trying to copy or link the original file.
  79. .. django-admin-option:: -l
  80. .. django-admin-option:: --link
  81. Create a symbolic link to each file instead of copying.
  82. .. django-admin-option:: --no-post-process
  83. Don't call the
  84. :meth:`~django.contrib.staticfiles.storage.StaticFilesStorage.post_process`
  85. method of the configured :setting:`STATICFILES_STORAGE` storage backend.
  86. .. django-admin-option:: --no-default-ignore
  87. Don't ignore the common private glob-style patterns ``'CVS'``, ``'.*'``
  88. and ``'*~'``.
  89. For a full list of options, refer to the commands own help by running::
  90. $ python manage.py collectstatic --help
  91. findstatic
  92. ----------
  93. .. django-admin:: findstatic
  94. Searches for one or more relative paths with the enabled finders.
  95. For example::
  96. $ python manage.py findstatic css/base.css admin/js/core.js
  97. Found 'css/base.css' here:
  98. /home/special.polls.com/core/static/css/base.css
  99. /home/polls.com/core/static/css/base.css
  100. Found 'admin/js/core.js' here:
  101. /home/polls.com/src/django/contrib/admin/media/js/core.js
  102. By default, all matching locations are found. To only return the first match
  103. for each relative path, use the ``--first`` option::
  104. $ python manage.py findstatic css/base.css --first
  105. Found 'css/base.css' here:
  106. /home/special.polls.com/core/static/css/base.css
  107. This is a debugging aid; it'll show you exactly which static file will be
  108. collected for a given path.
  109. By setting the :djadminopt:`--verbosity` flag to 0, you can suppress the extra
  110. output and just get the path names::
  111. $ python manage.py findstatic css/base.css --verbosity 0
  112. /home/special.polls.com/core/static/css/base.css
  113. /home/polls.com/core/static/css/base.css
  114. .. _staticfiles-runserver:
  115. runserver
  116. ---------
  117. .. django-admin:: runserver
  118. Overrides the core :djadmin:`runserver` command if the ``staticfiles`` app
  119. is :setting:`installed<INSTALLED_APPS>` and adds automatic serving of static
  120. files and the following new options.
  121. .. django-admin-option:: --nostatic
  122. Use the ``--nostatic`` option to disable serving of static files with the
  123. :doc:`staticfiles </ref/contrib/staticfiles>` app entirely. This option is
  124. only available if the :doc:`staticfiles </ref/contrib/staticfiles>` app is
  125. in your project's :setting:`INSTALLED_APPS` setting.
  126. Example usage::
  127. django-admin.py runserver --nostatic
  128. .. django-admin-option:: --insecure
  129. Use the ``--insecure`` option to force serving of static files with the
  130. :doc:`staticfiles </ref/contrib/staticfiles>` app even if the :setting:`DEBUG`
  131. setting is ``False``. By using this you acknowledge the fact that it's
  132. **grossly inefficient** and probably **insecure**. This is only intended for
  133. local development, should **never be used in production** and is only
  134. available if the :doc:`staticfiles </ref/contrib/staticfiles>` app is
  135. in your project's :setting:`INSTALLED_APPS` setting. :djadmin:`runserver`
  136. ``--insecure`` doesn't work with
  137. :class:`~django.contrib.staticfiles.storage.CachedStaticFilesStorage`.
  138. Example usage::
  139. django-admin.py runserver --insecure
  140. .. _staticfiles-storages:
  141. Storages
  142. ========
  143. StaticFilesStorage
  144. ------------------
  145. .. class:: storage.StaticFilesStorage
  146. A subclass of the :class:`~django.core.files.storage.FileSystemStorage`
  147. storage backend that uses the :setting:`STATIC_ROOT` setting as the base
  148. file system location and the :setting:`STATIC_URL` setting respectively
  149. as the base URL.
  150. .. method:: post_process(paths, **options)
  151. This method is called by the :djadmin:`collectstatic` management command
  152. after each run and gets passed the local storages and paths of found
  153. files as a dictionary, as well as the command line options.
  154. The :class:`~django.contrib.staticfiles.storage.CachedStaticFilesStorage`
  155. uses this behind the scenes to replace the paths with their hashed
  156. counterparts and update the cache appropriately.
  157. CachedStaticFilesStorage
  158. ------------------------
  159. .. class:: storage.CachedStaticFilesStorage
  160. A subclass of the :class:`~django.contrib.staticfiles.storage.StaticFilesStorage`
  161. storage backend which caches the files it saves by appending the MD5 hash
  162. of the file's content to the filename. For example, the file
  163. ``css/styles.css`` would also be saved as ``css/styles.55e7cbb9ba48.css``.
  164. The purpose of this storage is to keep serving the old files in case some
  165. pages still refer to those files, e.g. because they are cached by you or
  166. a 3rd party proxy server. Additionally, it's very helpful if you want to
  167. apply `far future Expires headers`_ to the deployed files to speed up the
  168. load time for subsequent page visits.
  169. The storage backend automatically replaces the paths found in the saved
  170. files matching other saved files with the path of the cached copy (using
  171. the :meth:`~django.contrib.staticfiles.storage.StaticFilesStorage.post_process`
  172. method). The regular expressions used to find those paths
  173. (``django.contrib.staticfiles.storage.CachedStaticFilesStorage.cached_patterns``)
  174. by default cover the `@import`_ rule and `url()`_ statement of `Cascading
  175. Style Sheets`_. For example, the ``'css/styles.css'`` file with the
  176. content
  177. .. code-block:: css+django
  178. @import url("../admin/css/base.css");
  179. would be replaced by calling the
  180. :meth:`~django.core.files.storage.Storage.url`
  181. method of the ``CachedStaticFilesStorage`` storage backend, ultimately
  182. saving a ``'css/styles.55e7cbb9ba48.css'`` file with the following
  183. content:
  184. .. code-block:: css+django
  185. @import url("../admin/css/base.27e20196a850.css");
  186. To enable the ``CachedStaticFilesStorage`` you have to make sure the
  187. following requirements are met:
  188. * the :setting:`STATICFILES_STORAGE` setting is set to
  189. ``'django.contrib.staticfiles.storage.CachedStaticFilesStorage'``
  190. * the :setting:`DEBUG` setting is set to ``False``
  191. * you use the ``staticfiles`` :ttag:`static<staticfiles-static>` template
  192. tag to refer to your static files in your templates
  193. * you've collected all your static files by using the
  194. :djadmin:`collectstatic` management command
  195. Since creating the MD5 hash can be a performance burden to your website
  196. during runtime, ``staticfiles`` will automatically try to cache the
  197. hashed name for each file path using Django's :doc:`caching
  198. framework</topics/cache>`. If you want to override certain options of the
  199. cache backend the storage uses, simply specify a custom entry in the
  200. :setting:`CACHES` setting named ``'staticfiles'``. It falls back to using
  201. the ``'default'`` cache backend.
  202. .. method:: file_hash(name, content=None)
  203. The method that is used when creating the hashed name of a file.
  204. Needs to return a hash for the given file name and content.
  205. By default it calculates a MD5 hash from the content's chunks as
  206. mentioned above.
  207. .. _`far future Expires headers`: http://developer.yahoo.com/performance/rules.html#expires
  208. .. _`@import`: http://www.w3.org/TR/CSS2/cascade.html#at-import
  209. .. _`url()`: http://www.w3.org/TR/CSS2/syndata.html#uri
  210. .. _`Cascading Style Sheets`: http://www.w3.org/Style/CSS/
  211. .. currentmodule:: django.contrib.staticfiles.templatetags.staticfiles
  212. Template tags
  213. =============
  214. static
  215. ------
  216. .. templatetag:: staticfiles-static
  217. Uses the configured :setting:`STATICFILES_STORAGE` storage to create the
  218. full URL for the given relative path, e.g.:
  219. .. code-block:: html+django
  220. {% load static from staticfiles %}
  221. <img src="{% static "images/hi.jpg" %}" alt="Hi!" />
  222. The previous example is equal to calling the ``url`` method of an instance of
  223. :setting:`STATICFILES_STORAGE` with ``"images/hi.jpg"``. This is especially
  224. useful when using a non-local storage backend to deploy files as documented
  225. in :ref:`staticfiles-from-cdn`.
  226. If you'd like to retrieve a static URL without displaying it, you can use a
  227. slightly different call:
  228. .. code-block:: html+django
  229. {% load static from staticfiles %}
  230. {% static "images/hi.jpg" as myphoto %}
  231. <img src="{{ myphoto }}" alt="Hi!" />
  232. Other Helpers
  233. =============
  234. There are a few other helpers outside of the
  235. :mod:`staticfiles <django.contrib.staticfiles>` app to work with static
  236. files:
  237. - The :func:`django.core.context_processors.static` context processor
  238. which adds :setting:`STATIC_URL` to every template context rendered
  239. with :class:`~django.template.RequestContext` contexts.
  240. - The builtin template tag :ttag:`static` which takes a path and
  241. urljoins it with the static prefix :setting:`STATIC_URL`.
  242. - The builtin template tag :ttag:`get_static_prefix` which populates a
  243. template variable with the static prefix :setting:`STATIC_URL` to be
  244. used as a variable or directly.
  245. - The similar template tag :ttag:`get_media_prefix` which works like
  246. :ttag:`get_static_prefix` but uses :setting:`MEDIA_URL`.
  247. .. _staticfiles-development-view:
  248. Static file development view
  249. ----------------------------
  250. .. currentmodule:: django.contrib.staticfiles
  251. The static files tools are mostly designed to help with getting static files
  252. successfully deployed into production. This usually means a separate,
  253. dedicated static file server, which is a lot of overhead to mess with when
  254. developing locally. Thus, the ``staticfiles`` app ships with a
  255. **quick and dirty helper view** that you can use to serve files locally in
  256. development.
  257. .. highlight:: python
  258. .. function:: views.serve(request, path)
  259. This view function serves static files in development.
  260. .. warning::
  261. This view will only work if :setting:`DEBUG` is ``True``.
  262. That's because this view is **grossly inefficient** and probably
  263. **insecure**. This is only intended for local development, and should
  264. **never be used in production**.
  265. .. versionchanged:: 1.7
  266. This view will now raise an :exc:`~django.http.Http404` exception instead
  267. of :exc:`~django.core.exceptions.ImproperlyConfigured` when
  268. :setting:`DEBUG` is ``False``.
  269. .. note::
  270. To guess the served files' content types, this view relies on the
  271. :py:mod:`mimetypes` module from the Python standard library, which itself
  272. relies on the underlying platform's map files. If you find that this view
  273. doesn't return proper content types for certain files, it is most likely
  274. that the platform's map files need to be updated. This can be achieved, for
  275. example, by installing or updating the ``mailcap`` package on a Red Hat
  276. distribution, or ``mime-support`` on a Debian distribution.
  277. This view is automatically enabled by :djadmin:`runserver` (with a
  278. :setting:`DEBUG` setting set to ``True``). To use the view with a different
  279. local development server, add the following snippet to the end of your
  280. primary URL configuration::
  281. from django.conf import settings
  282. if settings.DEBUG:
  283. urlpatterns += patterns('django.contrib.staticfiles.views',
  284. url(r'^static/(?P<path>.*)$', 'serve'),
  285. )
  286. Note, the beginning of the pattern (``r'^static/'``) should be your
  287. :setting:`STATIC_URL` setting.
  288. Since this is a bit finicky, there's also a helper function that'll do this for
  289. you:
  290. .. function:: urls.staticfiles_urlpatterns()
  291. This will return the proper URL pattern for serving static files to your
  292. already defined pattern list. Use it like this::
  293. from django.contrib.staticfiles.urls import staticfiles_urlpatterns
  294. # ... the rest of your URLconf here ...
  295. urlpatterns += staticfiles_urlpatterns()
  296. This will inspect your :setting:`STATIC_URL` setting and wire up the view
  297. to serve static files accordingly. Don't forget to set the
  298. :setting:`STATICFILES_DIRS` setting appropriately to let
  299. ``django.contrib.staticfiles`` know where to look for files in addition to
  300. files in app directories.
  301. .. warning::
  302. This helper function will only work if :setting:`DEBUG` is ``True``
  303. and your :setting:`STATIC_URL` setting is neither empty nor a full
  304. URL such as ``http://static.example.com/``.
  305. That's because this view is **grossly inefficient** and probably
  306. **insecure**. This is only intended for local development, and should
  307. **never be used in production**.
  308. Specialized test case to support 'live testing'
  309. -----------------------------------------------
  310. .. class:: testing.StaticLiveServerCase
  311. This unittest TestCase subclass extends :class:`django.test.LiveServerTestCase`.
  312. Just like its parent, you can use it to write tests that involve running the
  313. code under test and consuming it with testing tools through HTTP (e.g. Selenium,
  314. PhantomJS, etc.), because of which it's needed that the static assets are also
  315. published.
  316. But given the fact that it makes use of the
  317. :func:`django.contrib.staticfiles.views.serve` view described above, it can
  318. transparently overlay at test execution-time the assets provided by the
  319. ``staticfiles`` finders. This means you don't need to run
  320. :djadmin:`collectstatic` before or as a part of your tests setup.
  321. .. versionadded:: 1.7
  322. ``StaticLiveServerCase`` is new in Django 1.7. Previously its functionality
  323. was provided by :class:`django.test.LiveServerTestCase`.