Questions tagged [django-pipeline]

An asset packaging library for Django

Django Pipeline is an asset packaging library for Django, providing both CSS and JavaScript concatenation and compression, built-in JavaScript template support, and optional data-URI image and font embedding.

110 questions
0
votes
1 answer

Django pipeline + Django storage + S3: query string nightmare

I'm using django-pipeline + django-storage and an S3 backend, but I'm going crazy trying to load my static files properly using {% static %} tag. I read and followed the pipeline docs:…
daveoncode
  • 18,900
  • 15
  • 104
  • 159
0
votes
1 answer

Using Django Pipeline, why am I running into JS errors?

I've configured Django Pipeline (verison 1.3.15) for a single group of JS files. I've configured them in the same order that they appear in my page normally. Everything works fine with collectstatic, etc. When I view the source, everything appears…
orokusaki
  • 55,146
  • 59
  • 179
  • 257
0
votes
0 answers

Django pipeline: 500 response error

I'm trying to use django-pipeline, but I get a 500 error response for the generated static files, this is my configuration: STATIC_URL = '/static/' STATICFILES_FINDERS = ( 'django.contrib.staticfiles.finders.FileSystemFinder', …
daveoncode
  • 18,900
  • 15
  • 104
  • 159
0
votes
1 answer

OSError: [Errno 32] Broken pipe with Django-pipeline

I have recently installed django-pipeline on CentOS 5.7. I have yuglify installed at /usr/local/bin/yuglify and have changed PIPELINE_YUGLIFY_BINARY to point there. However whenever I run collectstatic I get the following: OSError: [Errno 32] Broken…
Jeff_Hd
  • 2,174
  • 3
  • 19
  • 29
0
votes
2 answers

How to specify a device-specific css file when I compress all the css files using pipeline in Django?

In order to use CSS3 Media Queries to create a mobile version of my website, I'm gonna create a seperate css file used for small screen devices. If I don't use pipeline compressor in django, I would just add the following line after my main…
chaonextdoor
  • 5,019
  • 15
  • 44
  • 61
1 2 3 4 5 6 7
8