You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
541 B
16 lines
541 B
12 years ago
|
"""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)
|