diff options
| author | Tim Graham <timograham@gmail.com> | 2014-01-22 10:15:27 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-01-22 10:15:27 -0500 |
| commit | 03395b4277f3bcd52d5582041b5ea84dcffc1015 (patch) | |
| tree | 18d52054abd215b9e2f3a079f0f3854e9dc49588 | |
| parent | c3fdeb28fff35573bf86ef04b234c7f5817b0dea (diff) | |
Fixed some markup that caused broken links in the static files docs.
| -rw-r--r-- | docs/ref/contrib/staticfiles.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ref/contrib/staticfiles.txt b/docs/ref/contrib/staticfiles.txt index 2ad880fb2b..74c6fe7e5b 100644 --- a/docs/ref/contrib/staticfiles.txt +++ b/docs/ref/contrib/staticfiles.txt @@ -215,7 +215,7 @@ storage backend that uses the :setting:`STATIC_ROOT` setting as the base file system location and the :setting:`STATIC_URL` setting respectively as the base URL. -.. method:: post_process(paths, **options) +.. method:: storage.StaticFilesStorage.post_process(paths, **options) This method is called by the :djadmin:`collectstatic` management command after each run and gets passed the local storages and paths of found @@ -282,7 +282,7 @@ hashed names for all processed files in a file called ``staticfiles.json``. This happens once when you run the :djadmin:`collectstatic` management command. -.. method:: file_hash(name, content=None) +.. method:: storage.ManifestStaticFilesStorage.file_hash(name, content=None) The method that is used when creating the hashed name of a file. Needs to return a hash for the given file name and content. |
