Ticket #24364: 24364.diff

File 24364.diff, 828 bytes (added by Aksel, 9 years ago)

Diff file for ticket 24364

  • docs/ref/contrib/staticfiles.txt

    diff --git a/docs/ref/contrib/staticfiles.txt b/docs/ref/contrib/staticfiles.txt
    index c24c8fc..39b904d 100644
    a b hashing algorithm.  
    311311.. _`url()`: http://www.w3.org/TR/CSS2/syndata.html#uri
    312312.. _`Cascading Style Sheets`: http://www.w3.org/Style/CSS/
    313313
     314.. warning::
     315
     316    Using ``ManifestStaticFilesStorage`` requires you to run the :djadmin:`collectstatic`
     317    management command to create the hashed names mapping in the file ``staticfiles.json``.
     318
     319    Therefore, ``ManifestStaticFilesStorage`` should not be used when running tests. During testing,
     320    make sure that the :setting:`STATICFILES_STORAGE` setting does not refer to
     321    ``ManifestStaticFilesStorage``.
     322
    314323CachedStaticFilesStorage
    315324------------------------
    316325
Back to Top