diff options
| author | Jannis Leidel <jannis@leidel.info> | 2011-08-11 14:07:39 +0000 |
|---|---|---|
| committer | Jannis Leidel <jannis@leidel.info> | 2011-08-11 14:07:39 +0000 |
| commit | 1d32bdd3c9586ff10d0799264105850fa7e3f512 (patch) | |
| tree | ce0ed940aa5c725ddbc02bc2f32d3e15c0f1d0a8 /tests/regressiontests/staticfiles_tests/project/documents | |
| parent | e9a909e30ab63cc4faa28e4d9296f522bbe3bb06 (diff) | |
Fixed #15252 -- Added static template tag and CachedStaticFilesStorage to staticfiles contrib app.
Many thanks to Florian Apolloner and Jacob Kaplan-Moss for reviewing and eagle eyeing.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16594 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/regressiontests/staticfiles_tests/project/documents')
6 files changed, 6 insertions, 0 deletions
diff --git a/tests/regressiontests/staticfiles_tests/project/documents/cached/absolute.css b/tests/regressiontests/staticfiles_tests/project/documents/cached/absolute.css new file mode 100644 index 0000000000..e64e7ccca7 --- /dev/null +++ b/tests/regressiontests/staticfiles_tests/project/documents/cached/absolute.css @@ -0,0 +1 @@ +@import url("/static/cached/styles.css"); diff --git a/tests/regressiontests/staticfiles_tests/project/documents/cached/denorm.css b/tests/regressiontests/staticfiles_tests/project/documents/cached/denorm.css new file mode 100644 index 0000000000..27b9a349b0 --- /dev/null +++ b/tests/regressiontests/staticfiles_tests/project/documents/cached/denorm.css @@ -0,0 +1 @@ +@import url("..//cached///styles.css"); diff --git a/tests/regressiontests/staticfiles_tests/project/documents/cached/other.css b/tests/regressiontests/staticfiles_tests/project/documents/cached/other.css new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/tests/regressiontests/staticfiles_tests/project/documents/cached/other.css diff --git a/tests/regressiontests/staticfiles_tests/project/documents/cached/relative.css b/tests/regressiontests/staticfiles_tests/project/documents/cached/relative.css new file mode 100644 index 0000000000..40c4a256aa --- /dev/null +++ b/tests/regressiontests/staticfiles_tests/project/documents/cached/relative.css @@ -0,0 +1,2 @@ +@import url("../cached/styles.css"); +@import url("absolute.css");
\ No newline at end of file diff --git a/tests/regressiontests/staticfiles_tests/project/documents/cached/styles.css b/tests/regressiontests/staticfiles_tests/project/documents/cached/styles.css new file mode 100644 index 0000000000..84936d1dcb --- /dev/null +++ b/tests/regressiontests/staticfiles_tests/project/documents/cached/styles.css @@ -0,0 +1 @@ +@import url("cached/other.css");
\ No newline at end of file diff --git a/tests/regressiontests/staticfiles_tests/project/documents/cached/url.css b/tests/regressiontests/staticfiles_tests/project/documents/cached/url.css new file mode 100644 index 0000000000..184e254004 --- /dev/null +++ b/tests/regressiontests/staticfiles_tests/project/documents/cached/url.css @@ -0,0 +1 @@ +@import url("https://www.djangoproject.com/m/css/base.css");
\ No newline at end of file |
