staticfiles.txt 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365
  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`.
  12. .. _staticfiles-settings:
  13. Settings
  14. ========
  15. See :ref:`staticfiles settings <settings-staticfiles>` for details on the
  16. following settings:
  17. * :setting:`STATIC_ROOT`
  18. * :setting:`STATIC_URL`
  19. * :setting:`STATICFILES_DIRS`
  20. * :setting:`STATICFILES_STORAGE`
  21. * :setting:`STATICFILES_FINDERS`
  22. Management Commands
  23. ===================
  24. .. highlight:: console
  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. Some commonly used options are:
  46. .. django-admin-option:: --noinput
  47. Do NOT prompt the user for input of any kind.
  48. .. django-admin-option:: -i <pattern>
  49. .. django-admin-option:: --ignore <pattern>
  50. Ignore files or directories matching this glob-style pattern. Use multiple
  51. times to ignore more.
  52. .. django-admin-option:: -n
  53. .. django-admin-option:: --dry-run
  54. Do everything except modify the filesystem.
  55. .. django-admin-option:: -c
  56. .. django-admin-option:: --clear
  57. Clear the existing files before trying to copy or link the original file.
  58. .. django-admin-option:: -l
  59. .. django-admin-option:: --link
  60. Create a symbolic link to each file instead of copying.
  61. .. django-admin-option:: --no-post-process
  62. Don't call the
  63. :meth:`~django.contrib.staticfiles.storage.StaticFilesStorage.post_process`
  64. method of the configured :setting:`STATICFILES_STORAGE` storage backend.
  65. .. django-admin-option:: --no-default-ignore
  66. Don't ignore the common private glob-style patterns ``'CVS'``, ``'.*'``
  67. and ``'*~'``.
  68. For a full list of options, refer to the commands own help by running::
  69. $ python manage.py collectstatic --help
  70. findstatic
  71. ----------
  72. .. django-admin:: findstatic
  73. Searches for one or more relative paths with the enabled finders.
  74. For example::
  75. $ python manage.py findstatic css/base.css admin/js/core.js
  76. /home/special.polls.com/core/static/css/base.css
  77. /home/polls.com/core/static/css/base.css
  78. /home/polls.com/src/django/contrib/admin/media/js/core.js
  79. By default, all matching locations are found. To only return the first match
  80. for each relative path, use the ``--first`` option::
  81. $ python manage.py findstatic css/base.css --first
  82. /home/special.polls.com/core/static/css/base.css
  83. This is a debugging aid; it'll show you exactly which static file will be
  84. collected for a given path.
  85. .. _staticfiles-runserver:
  86. runserver
  87. ---------
  88. .. django-admin:: runserver
  89. Overrides the core :djadmin:`runserver` command if the ``staticfiles`` app
  90. is :setting:`installed<INSTALLED_APPS>` and adds automatic serving of static
  91. files and the following new options.
  92. .. django-admin-option:: --nostatic
  93. Use the ``--nostatic`` option to disable serving of static files with the
  94. :doc:`staticfiles </ref/contrib/staticfiles>` app entirely. This option is
  95. only available if the :doc:`staticfiles </ref/contrib/staticfiles>` app is
  96. in your project's :setting:`INSTALLED_APPS` setting.
  97. Example usage::
  98. django-admin.py runserver --nostatic
  99. .. django-admin-option:: --insecure
  100. Use the ``--insecure`` option to force serving of static files with the
  101. :doc:`staticfiles </ref/contrib/staticfiles>` app even if the :setting:`DEBUG`
  102. setting is ``False``. By using this you acknowledge the fact that it's
  103. **grossly inefficient** and probably **insecure**. This is only intended for
  104. local development, should **never be used in production** and is only
  105. available if the :doc:`staticfiles </ref/contrib/staticfiles>` app is
  106. in your project's :setting:`INSTALLED_APPS` setting.
  107. Example usage::
  108. django-admin.py runserver --insecure
  109. Storages
  110. ========
  111. StaticFilesStorage
  112. ------------------
  113. .. class:: storage.StaticFilesStorage
  114. A subclass of the :class:`~django.core.files.storage.FileSystemStorage`
  115. storage backend that uses the :setting:`STATIC_ROOT` setting as the base
  116. file system location and the :setting:`STATIC_URL` setting respectively
  117. as the base URL.
  118. .. method:: post_process(paths, **options)
  119. This method is called by the :djadmin:`collectstatic` management command
  120. after each run and gets passed the local storages and paths of found
  121. files as a dictionary, as well as the command line options.
  122. The :class:`~django.contrib.staticfiles.storage.CachedStaticFilesStorage`
  123. uses this behind the scenes to replace the paths with their hashed
  124. counterparts and update the cache appropriately.
  125. CachedStaticFilesStorage
  126. ------------------------
  127. .. class:: storage.CachedStaticFilesStorage
  128. A subclass of the :class:`~django.contrib.staticfiles.storage.StaticFilesStorage`
  129. storage backend which caches the files it saves by appending the MD5 hash
  130. of the file's content to the filename. For example, the file
  131. ``css/styles.css`` would also be saved as ``css/styles.55e7cbb9ba48.css``.
  132. The purpose of this storage is to keep serving the old files in case some
  133. pages still refer to those files, e.g. because they are cached by you or
  134. a 3rd party proxy server. Additionally, it's very helpful if you want to
  135. apply `far future Expires headers`_ to the deployed files to speed up the
  136. load time for subsequent page visits.
  137. The storage backend automatically replaces the paths found in the saved
  138. files matching other saved files with the path of the cached copy (using
  139. the :meth:`~django.contrib.staticfiles.storage.StaticFilesStorage.post_process`
  140. method). The regular expressions used to find those paths
  141. (``django.contrib.staticfiles.storage.CachedStaticFilesStorage.cached_patterns``)
  142. by default cover the `@import`_ rule and `url()`_ statement of `Cascading
  143. Style Sheets`_. For example, the ``'css/styles.css'`` file with the
  144. content
  145. .. code-block:: css+django
  146. @import url("../admin/css/base.css");
  147. would be replaced by calling the
  148. :meth:`~django.core.files.storage.Storage.url`
  149. method of the ``CachedStaticFilesStorage`` storage backend, ultimatively
  150. saving a ``'css/styles.55e7cbb9ba48.css'`` file with the following
  151. content:
  152. .. code-block:: css+django
  153. @import url("../admin/css/base.27e20196a850.css");
  154. To enable the ``CachedStaticFilesStorage`` you have to make sure the
  155. following requirements are met:
  156. * the :setting:`STATICFILES_STORAGE` setting is set to
  157. ``'django.contrib.staticfiles.storage.CachedStaticFilesStorage'``
  158. * the :setting:`DEBUG` setting is set to ``False``
  159. * you use the ``staticfiles`` :ttag:`static<staticfiles-static>` template
  160. tag to refer to your static files in your templates
  161. * you've collected all your static files by using the
  162. :djadmin:`collectstatic` management command
  163. Since creating the MD5 hash can be a performance burden to your website
  164. during runtime, ``staticfiles`` will automatically try to cache the
  165. hashed name for each file path using Django's :doc:`caching
  166. framework</topics/cache>`. If you want to override certain options of the
  167. cache backend the storage uses, simply specify a custom entry in the
  168. :setting:`CACHES` setting named ``'staticfiles'``. It falls back to using
  169. the ``'default'`` cache backend.
  170. .. method:: file_hash(name, content=None)
  171. .. versionadded:: 1.5
  172. The method that is used when creating the hashed name of a file.
  173. Needs to return a hash for the given file name and content.
  174. By default it calculates a MD5 hash from the content's chunks as
  175. mentioned above.
  176. .. _`far future Expires headers`: http://developer.yahoo.com/performance/rules.html#expires
  177. .. _`@import`: http://www.w3.org/TR/CSS2/cascade.html#at-import
  178. .. _`url()`: http://www.w3.org/TR/CSS2/syndata.html#uri
  179. .. _`Cascading Style Sheets`: http://www.w3.org/Style/CSS/
  180. .. currentmodule:: django.contrib.staticfiles.templatetags.staticfiles
  181. Template tags
  182. =============
  183. static
  184. ------
  185. .. templatetag:: staticfiles-static
  186. Uses the configured :setting:`STATICFILES_STORAGE` storage to create the
  187. full URL for the given relative path, e.g.:
  188. .. code-block:: html+django
  189. {% load static from staticfiles %}
  190. <img src="{% static "images/hi.jpg" %}" alt="Hi!" />
  191. The previous example is equal to calling the ``url`` method of an instance of
  192. :setting:`STATICFILES_STORAGE` with ``"images/hi.jpg"``. This is especially
  193. useful when using a non-local storage backend to deploy files as documented
  194. in :ref:`staticfiles-from-cdn`.
  195. .. versionadded:: 1.5
  196. If you'd like to retrieve a static URL without displaying it, you can use a
  197. slightly different call:
  198. .. code-block:: html+django
  199. {% load static from staticfiles %}
  200. {% static "images/hi.jpg" as myphoto %}
  201. <img src="{{ myphoto }}" alt="Hi!" />
  202. Other Helpers
  203. =============
  204. There are a few other helpers outside of the
  205. :mod:`staticfiles <django.contrib.staticfiles>` app to work with static
  206. files:
  207. - The :func:`django.core.context_processors.static` context processor
  208. which adds :setting:`STATIC_URL` to every template context rendered
  209. with :class:`~django.template.RequestContext` contexts.
  210. - The builtin template tag :ttag:`static` which takes a path and
  211. urljoins it with the static prefix :setting:`STATIC_URL`.
  212. - The builtin template tag :ttag:`get_static_prefix` which populates a
  213. template variable with the static prefix :setting:`STATIC_URL` to be
  214. used as a variable or directly.
  215. - The similar template tag :ttag:`get_media_prefix` which works like
  216. :ttag:`get_static_prefix` but uses :setting:`MEDIA_URL`.
  217. .. _staticfiles-development-view:
  218. Static file development view
  219. ----------------------------
  220. .. highlight:: python
  221. .. function:: django.contrib.staticfiles.views.serve(request, path)
  222. This view function serves static files in development.
  223. .. warning::
  224. This view will only work if :setting:`DEBUG` is ``True``.
  225. That's because this view is **grossly inefficient** and probably
  226. **insecure**. This is only intended for local development, and should
  227. **never be used in production**.
  228. This view is automatically enabled by :djadmin:`runserver` (with a
  229. :setting:`DEBUG` setting set to ``True``). To use the view with a different
  230. local development server, add the following snippet to the end of your
  231. primary URL configuration::
  232. from django.conf import settings
  233. if settings.DEBUG:
  234. urlpatterns += patterns('django.contrib.staticfiles.views',
  235. url(r'^static/(?P<path>.*)$', 'serve'),
  236. )
  237. Note, the beginning of the pattern (``r'^static/'``) should be your
  238. :setting:`STATIC_URL` setting.
  239. Since this is a bit finicky, there's also a helper function that'll do this for you:
  240. .. function:: django.contrib.staticfiles.urls.staticfiles_urlpatterns()
  241. This will return the proper URL pattern for serving static files to your
  242. already defined pattern list. Use it like this::
  243. from django.contrib.staticfiles.urls import staticfiles_urlpatterns
  244. # ... the rest of your URLconf here ...
  245. urlpatterns += staticfiles_urlpatterns()
  246. .. warning::
  247. This helper function will only work if :setting:`DEBUG` is ``True``
  248. and your :setting:`STATIC_URL` setting is neither empty nor a full
  249. URL such as ``http://static.example.com/``.