diff --git a/AUTHORS b/AUTHORS
index 333787d..0f2ca70 100644
|
a
|
b
|
answer newbie questions, and generally made Django that much better:
|
| 17 | 17 | Ahmad Al-Ibrahim |
| 18 | 18 | ajs <adi@sieker.info> |
| 19 | 19 | Akis Kesoglou <akiskesoglou@gmail.com> |
| | 20 | Aksel Ethem <aksel.ethem@gmail.com> |
| 20 | 21 | alang@bright-green.com |
| 21 | 22 | Alasdair Nicol <http://al.sdair.co.uk/> |
| 22 | 23 | Albert Wang <aywang31@gmail.com> |
diff --git a/docs/ref/contrib/staticfiles.txt b/docs/ref/contrib/staticfiles.txt
index 6a365c6..140506c 100644
|
a
|
b
|
hashed names for all processed files in a file called ``staticfiles.json``.
|
| 285 | 285 | This happens once when you run the :djadmin:`collectstatic` management |
| 286 | 286 | command. |
| 287 | 287 | |
| | 288 | Due to the requirement of running :djadmin:`collectstatic`, this storage |
| | 289 | typically shouldn't be used when running tests as ``collectstatic`` isn't run |
| | 290 | as part of the normal test setup. During testing, ensure that the |
| | 291 | :setting:`STATICFILES_STORAGE` setting is set to something else like |
| | 292 | ``'django.contrib.staticfiles.storage.StaticFilesStorage'`` (the default). |
| | 293 | |
| 288 | 294 | .. method:: storage.ManifestStaticFilesStorage.file_hash(name, content=None) |
| 289 | 295 | |
| 290 | 296 | The method that is used when creating the hashed name of a file. |