Re: Compress does not include less files correcty

2014-09-25 Thread Denis Simonet
horizon by default uses lesscpy (python) instead of lessc (javascript). Obviously lesscpy did not like our less code. So we changed this: COMPRESS_PRECOMPILERS = ( ('text/less', 'lesscpy {infile}'), ) To this: COMPRESS_PRECOMPILERS = ( ('text/less', 'lessc {infile} {outfile}'), )

Compress does not include less files correcty

2014-09-25 Thread Denis Simonet
Hi, We intend to extend openstack's Horizon, which is a Django application. The first goal: add some custom CSS. Our approach is to create an own Django project and, in settings.py, to import Horizon's default settings ("from openstack_dashboard.settings import *"). After this import we extend