Statistics
| Revision:

gvsig-scripting / org.gvsig.scripting / trunk / org.gvsig.scripting / org.gvsig.scripting.app / org.gvsig.scripting.app.mainplugin / src / main / resources-plugin / scripting / lib / cssutils / css / __init__.py @ 475

History | View | Annotate | Download (1.85 KB)

1
"""Implements Document Object Model Level 2 CSS
2
http://www.w3.org/TR/2000/PR-DOM-Level-2-Style-20000927/css.html
3

4
currently implemented
5
    - CSSStyleSheet
6
    - CSSRuleList
7
    - CSSRule
8
    - CSSComment (cssutils addon)
9
    - CSSCharsetRule
10
    - CSSFontFaceRule
11
    - CSSImportRule
12
    - CSSMediaRule
13
    - CSSNamespaceRule (WD)
14
    - CSSPageRule
15
    - CSSStyleRule
16
    - CSSUnkownRule
17
    - Selector and SelectorList
18
    - CSSStyleDeclaration
19
    - CSS2Properties
20
    - CSSValue
21
    - CSSPrimitiveValue
22
    - CSSValueList
23
    - CSSVariablesRule
24
    - CSSVariablesDeclaration
25

26
todo
27
    - RGBColor, Rect, Counter
28
"""
29
__all__ = [
30
    'CSSStyleSheet',
31
    'CSSRuleList',
32
    'CSSRule',
33
    'CSSComment',
34
    'CSSCharsetRule',
35
    'CSSFontFaceRule'
36
    'CSSImportRule',
37
    'CSSMediaRule',
38
    'CSSNamespaceRule',
39
    'CSSPageRule',
40
    'MarginRule',
41
    'CSSStyleRule',
42
    'CSSUnknownRule',
43
    'CSSVariablesRule',
44
    'CSSVariablesDeclaration',
45
    'Selector', 'SelectorList',
46
    'CSSStyleDeclaration', 'Property',
47
    #'CSSValue', 'CSSPrimitiveValue', 'CSSValueList'
48
    'PropertyValue',
49
           'Value',
50
           'ColorValue',
51
           'DimensionValue',
52
           'URIValue',
53
           'CSSFunction', 
54
           'CSSVariable',
55
           'MSValue'
56
    ]
57
__docformat__ = 'restructuredtext'
58
__version__ = '$Id$'
59

    
60
from cssstylesheet import *
61
from cssrulelist import *
62
from cssrule import *
63
from csscomment import *
64
from csscharsetrule import *
65
from cssfontfacerule import *
66
from cssimportrule import *
67
from cssmediarule import *
68
from cssnamespacerule import *
69
from csspagerule import *
70
from marginrule import *
71
from cssstylerule import *
72
from cssvariablesrule import *
73
from cssunknownrule import *
74
from selector import *
75
from selectorlist import *
76
from cssstyledeclaration import *
77
from cssvariablesdeclaration import *
78
from property import *
79
#from cssvalue import *
80
from value import *