Metadata-Version: 1.0
Name: HtmlCssInclude
Version: 0.1.2
Summary: HtmlCssInclude convert css to inline style for mobile
Home-page: UNKNOWN
Author: UNKNOWN
Author-email: hata.hirotaka@gamil.com
License: PSL
Description: .. -*- restructuredtext -*-
        
        HtmlCssInclude converts css into inline style html for mobile.
        font size is changed by mobile carrier (docomo, au, softbank).
        when mobile is VGA, image size is changed.
        
        Requirements
        ------------
        * Python 2.5 or later (not support 3.x)
        * lxml
        
        Setup
        -----
        ::
        
           $ easy_install HtmlCssInclude
        
        
        How to Use
        --------
        ::
        
           >>> from  HtmlCssInclude import CssInclude
        
        initialize with mobile carrier::
        
           >>> css_include = CssInclude(agent='docomo', is_vga=True)
        
        convert css into inline style html::
        
           >>> converted_html = css_include.apply(input_html)   
        
        History
        -------
        0.1.2 (2011-03-30)
        ~~~~~~~~~~~~~~~~~~
        * ezweb bug fix
        
        0.1.1 (2010-11-22)
        ~~~~~~~~~~~~~~~~~~
        * add test data
        
        0.1 (2010-11-20)
        ~~~~~~~~~~~~~~~~~~
        * first release
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: Python Software Foundation License
Classifier: Programming Language :: Python
Classifier: Topic :: Text Processing :: Markup :: HTML
