Sophie

Sophie

distrib > Fedora > 13 > i386 > media > updates > by-pkgid > 2ed1901c86a0f74a4eb8085e29cd105a > files > 7

python-cssutils-doc-0.9.7-1.fc13.noarch.rpm

# -*- coding: utf-8 -*-
import cssutils
import os.path
import xml.dom

EXPOUT = u'''@charset "iso-8859-1";
@import "1inherit-iso.css";

##############################
1inherit-iso.css
##############################
@charset "iso-8859-1";
@import "2inherit-iso.css";
/* 1 inherited encoding iso-8859-1 */

====================
2inherit-iso.css
====================
@charset "iso-8859-1";
/* 2 inherited encoding iso-8859-1 */



'''
EXPERR = u''


def main():

    def p(s, l=0):
        c = '#=-'[l] * (30 - l*10)
        for r in s.cssRules.rulesOfType(cssutils.css.CSSRule.IMPORT_RULE):
            print c
            print r.href
            print c
            print r.styleSheet.cssText
            print 
            p(r.styleSheet, l=l+1)
            print 
            
    s = cssutils.parseFile(os.path.join('sheets', '1import.css'))        
    print s.cssText
    print
    
    p(s)

if __name__ == '__main__':
    main()