# HG changeset patch # User Sylvain Thénault # Date 1278408863 -7200 # Node ID c344b3079a2d0073caae3f6305f18bb87b83043b # Parent 782b27eaf97a17789096f24ff6be0a04fec0ca0a [css] old css bw compat with @import in a custom css diff -r 782b27eaf97a -r c344b3079a2d web/webconfig.py --- a/web/webconfig.py Tue Jul 06 11:31:34 2010 +0200 +++ b/web/webconfig.py Tue Jul 06 11:34:23 2010 +0200 @@ -285,6 +285,9 @@ if directory is None: return None if rdirectory == 'data' and rid.endswith('.css'): + if self['use-old-css'] and rid == 'cubicweb.css': + # @import('cubicweb.css') in css + rid == 'cubicweb.old.css' return self.uiprops.process_resource(join(directory, rdirectory), rid) return join(directory, rdirectory)