%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /lib/python3/dist-packages/cssutils/css/
Upload File :
Create Path :
Current File : //lib/python3/dist-packages/cssutils/css/__init__.py

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

currently implemented
    - CSSStyleSheet
    - CSSRuleList
    - CSSRule
    - CSSComment (cssutils addon)
    - CSSCharsetRule
    - CSSFontFaceRule
    - CSSImportRule
    - CSSMediaRule
    - CSSNamespaceRule (WD)
    - CSSPageRule
    - CSSStyleRule
    - CSSUnkownRule
    - Selector and SelectorList
    - CSSStyleDeclaration
    - CSS2Properties
    - CSSValue
    - CSSPrimitiveValue
    - CSSValueList
    - CSSVariablesRule
    - CSSVariablesDeclaration

todo
    - RGBColor, Rect, Counter
"""
__all__ = [
    'CSSStyleSheet',
    'CSSRuleList',
    'CSSRule',
    'CSSComment',
    'CSSCharsetRule',
    'CSSFontFaceRule'
    'CSSImportRule',
    'CSSMediaRule',
    'CSSNamespaceRule',
    'CSSPageRule',
    'MarginRule',
    'CSSStyleRule',
    'CSSUnknownRule',
    'CSSVariablesRule',
    'CSSVariablesDeclaration',
    'Selector', 'SelectorList',
    'CSSStyleDeclaration', 'Property',
    #'CSSValue', 'CSSPrimitiveValue', 'CSSValueList'
    'PropertyValue',
           'Value',
           'ColorValue',
           'DimensionValue',
           'URIValue',
           'CSSFunction', 
           'CSSVariable',
           'MSValue'
    ]
__docformat__ = 'restructuredtext'
__version__ = '$Id$'

from .cssstylesheet import *
from .cssrulelist import *
from .cssrule import *
from .csscomment import *
from .csscharsetrule import *
from .cssfontfacerule import *
from .cssimportrule import *
from .cssmediarule import *
from .cssnamespacerule import *
from .csspagerule import *
from .marginrule import *
from .cssstylerule import *
from .cssvariablesrule import *
from .cssunknownrule import *
from .selector import *
from .selectorlist import *
from .cssstyledeclaration import *
from .cssvariablesdeclaration import *
from .property import *
#from cssvalue import *
from .value import *

Zerion Mini Shell 1.0