diff options
| author | Tim Graham <timograham@gmail.com> | 2014-02-09 15:35:35 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-02-09 15:39:04 -0500 |
| commit | 29345390b81a3bfce22af43617cabd0d08de3632 (patch) | |
| tree | f313df61f243de563b58318bf7cdbe1eaff22c76 /docs/ref | |
| parent | e2f28572b745c6a8555b8bfd00df10c936c434c0 (diff) | |
Minor edits to new findstatic functionality; refs #19879.
Hopefully fixes a test failure on Jenkins.
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/contrib/staticfiles.txt | 37 |
1 files changed, 17 insertions, 20 deletions
diff --git a/docs/ref/contrib/staticfiles.txt b/docs/ref/contrib/staticfiles.txt index 214128e2cd..79ce21ecda 100644 --- a/docs/ref/contrib/staticfiles.txt +++ b/docs/ref/contrib/staticfiles.txt @@ -163,7 +163,7 @@ output and just get the path names:: /home/polls.com/core/static/css/base.css On the other hand, by setting the :djadminopt:`--verbosity` flag to 2, you can -get all the directories on which it searched the relative paths:: +get all the directories which were searched:: $ python manage.py findstatic css/base.css --verbosity 2 Found 'css/base.css' here: @@ -176,8 +176,7 @@ get all the directories on which it searched the relative paths:: .. versionadded:: 1.7 - The additional message of on which directories it searched the relative - paths is new in Django 1.7. + The additional output of which directories were searched was added. .. _staticfiles-runserver: @@ -360,6 +359,21 @@ slightly different call: {% static "images/hi.jpg" as myphoto %} <img src="{{ myphoto }}" alt="Hi!" /> +Finders Module +============== + +``staticfiles`` finders has a ``searched_locations`` attribute which is a list +of directory paths in which the finders searched. Example usage:: + + from django.contrib.staticfiles import finders + + result = finders.find('css/base.css') + searched_locations = finders.searched_locations + +.. versionadded:: 1.7 + +The ``searched_locations`` attribute was added. + Other Helpers ============= @@ -383,23 +397,6 @@ files: .. _staticfiles-development-view: -Finders Module -============== - -``staticfiles`` finders has a ``searched_locations`` list with directory paths -in which they search for the relative paths. Example usage:: - - from django.contrib.staticfiles import finders - - result = finders.find('css/base.css') - searched_locations = finders.searched_locations - -.. versionadded:: 1.7 - -The ``get_searched_locations`` function is new in Django 1.7. Previously, we -have to check the locations of our :setting:`STATICFILES_FINDERS` manually -one by one. - Static file development view ---------------------------- |
