staticfiles.txt 16 KB

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