django-staticfiles icon indicating copy to clipboard operation
django-staticfiles copied to clipboard

[Unmaintained] A Django app that provides helpers for serving static files, used in Django and Pinax.

Results 10 django-staticfiles issues
Sort by recently updated
recently updated
newest added

Added option into collectstatic command to ignore errors raised on post-processing phase when files are missing. This way we can still continue to post-process the static files even when some...

Avoid deprecation warnings: - `django.conf.urls.defaults` is deprecated - `django.utils.hashcompat` is deprecated

Mimic the runserver command that ships in Django 1.4 and up more closely. By default, that command gets the WSGI handler by calling `get_internal_wsgi_application()`. Without this change, the `runserver` command...

In Django 1.5.5, [`WSGIServerException` was removed](https://github.com/django/django/compare/1.5.4...1.5.5#diff-f6d1c75ec606389da5af6558bf57f171L70). Because that was removed, the `runserver` command can no longer import the Exception. I'm not sure what you think the best way to fix...

Dj version: 1.6 Using : django.contrib.staticfiles While `post_process` getting the following error in some point - ``` Post-processed 'websites/bespoke/fonts/specimen_files/specimen_stylesheet.e2cb9ea14b54.css.gz' as 'websites/bespoke/fonts/specimen_files/specimen_stylesheet.e2cb9ea14b54.css.gz' Post-processed 'websites/dfm/js/olympics/jquery.countdown.a085c11d8052.js.gz' as 'websites/dfm/js/olympics/jquery.countdown.a085c11d8052.js.gz' Post-processed 'websites/entertainow/css/fonts/stylesheet.7b7585a64514.css.gz' as 'websites/entertainow/css/fonts/stylesheet.7b7585a64514.css.gz' Post-processed...

In `django-staticfiles/staticfiles/storage.py`, `post_processing`, the `original_file` is just read but not decoded, leading to `UnicodeError` if the `original_file` contains non-ascii characters. https://github.com/jezdez/django-staticfiles/blob/develop/staticfiles/storage.py#L266

Background - my need: 1. All files managed & distributed locally 2. Servers use CachedFilesMixin to generate URLs with hash-busters which will be served from static.example.org which is a simple...

I think CachedFilesMixin has a bug somewhere around lines (storage.py lines 200-213) ``` url_parts = url.split('/') parent_level, sub_level = url.count('..'), url.count('/') if url.startswith('/'): sub_level -= 1 url_parts = url_parts[1:] if...

I have a problem with django-staticfiles-1.2.1 and django-1.2.7 using get_static_prefix templatetag, it doesn't return my `STATIC_URL` setting. But with the same configuration and django-staticfiles-1.1 it's works. I test it with...

Given the following settings: ``` STATICFILES_FINDERS = ( 'staticfiles.finders.FileSystemFinder', 'staticfiles.finders.AppDirectoriesFinder', ) ``` If you have two files called `css/body.css` one in `STATIC_DIR/css/body.css` and an app with (a different) `static/css/body.css`. I...