Minify on backend

This commit is contained in:
Ruud
2013-04-30 13:17:03 +02:00
parent 12c3fc6ce3
commit 30ec8216e1
62 changed files with 17953 additions and 737 deletions
+15
View File
@@ -0,0 +1,15 @@
"""Experimental settings for special stuff."""
def set(key, value):
"""Call to enable special settings:
('DXImageTransform.Microsoft', True)
enable support for parsing special MS only filter values
Clears the tokenizer cache which holds the compiled productions!
"""
if key == 'DXImageTransform.Microsoft' and value == True:
import cssproductions
import tokenize2
tokenize2._TOKENIZER_CACHE.clear()
cssproductions.PRODUCTIONS.insert(1, cssproductions._DXImageTransform)