This file is indexed.

/usr/share/pyshared/cssutils-0.9.10.egg-info/PKG-INFO is in python-cssutils 0.9.10-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
Metadata-Version: 1.1
Name: cssutils
Version: 0.9.10
Summary: A CSS Cascading Style Sheets library for Python
Home-page: http://cthedot.de/cssutils/
Author: Christof Hoeke
Author-email: c@cthedot.de
License: LGPL 2.1 or later, see also http://cthedot.de/cssutils/
Download-URL: https://bitbucket.org/cthedot/cssutils/downloads
Description: 
        ======
        README
        ======
        .. -*- restructuredtext -*-
        
        -------------------------------------------------------
        cssutils: CSS Cascading Style Sheets library for Python
        -------------------------------------------------------
        :Copyright: 2004-2013 Christof Hoeke
        
        Overview
        ========
        A Python package to parse and build CSS Cascading Style Sheets. DOM only, not any rendering facilities!
        
        Based upon and partly implementing the following specifications :
        
        `CSS 2.1rev1 <http://www.w3.org/TR/CSS2/>`__
            General CSS rules and properties are defined here
        `CSS3 Module: Syntax <http://www.w3.org/TR/css3-syntax/>`__
            Used in parts since cssutils 0.9.4. cssutils tries to use the features from CSS 2.1 and CSS 3 with preference to CSS3 but as this is not final yet some parts are from CSS 2.1
        `CSS Fonts Module Level 3 <http://www.w3.org/TR/css3-fonts/>`__
            Added changes and additional stuff (since cssutils v0.9.6)
        `MediaQueries <http://www.w3.org/TR/css3-mediaqueries/>`__
            MediaQueries are part of ``stylesheets.MediaList`` since v0.9.4, used in @import and @media rules.
        `Namespaces <http://dev.w3.org/csswg/css3-namespace/>`__
            Added in v0.9.1, updated to definition in CSSOM in v0.9.4, updated in 0.9.5 for dev version
        `CSS3 Module: Pages Media <http://www.w3.org/TR/css3-page/>`__
            Most properties of this spec are implemented including MarginRules
        `Selectors <http://www.w3.org/TR/css3-selectors/>`__
            The selector syntax defined here (and not in CSS 2.1) should be parsable with cssutils (*should* mind though ;) )
        `CSS Backgrounds and Borders Module Level 3 <http://www.w3.org/TR/css3-background/>`__, `CSS3 Basic User Interface Module <http://www.w3.org/TR/css3-ui/#resize>`__, `CSS Text Level 3 <http://www.w3.org/TR/css3-text/>`__
            Some validation for properties included, mainly  `cursor`, `outline`, `resize`, `box-shadow`, `text-shadow`
        `Variables <http://disruptive-innovations.com/zoo/cssvariables/>`__
            Experimental specification of CSS Variables which cssutils implements partly. Media specific variables are not supported.
        
        `DOM Level 2 Style CSS <http://www.w3.org/TR/DOM-Level-2-Style/css.html>`__
            DOM for package css. 0.9.8 removes support for CSSValue and related API, see PropertyValue and Value API for now
        `DOM Level 2 Style Stylesheets <http://www.w3.org/TR/DOM-Level-2-Style/stylesheets.html>`__
            DOM for package stylesheets
        `CSSOM <http://dev.w3.org/csswg/cssom/>`__
            A few details (mainly the NamespaceRule DOM) are taken from here. Plan is to move implementation to the stuff defined here which is newer but still no REC so might change anytime...
        
        The cssutils tokenizer is a customized implementation of `CSS3 Module: Syntax (W3C Working Draft 13 August 2003) <http://www.w3.org/TR/css3-syntax/>`_ which itself is based on the CSS 2.1 tokenizer. It tries to be as compliant as possible but uses some (helpful) parts of the CSS 2.1 tokenizer.
        
        I guess cssutils is neither CSS 2.1 nor CSS 3 compliant but tries to at least be able to parse both grammars including some more real world cases (some CSS hacks are actually parsed and serialized). Both official grammars are not final nor bugfree but still feasible. cssutils aim is not to be fully compliant to any CSS specification (the specifications seem to be in a constant flow anyway) but cssutils *should* be able to read and write as many as possible CSS stylesheets "in the wild" while at the same time implement the official APIs which are well documented. Some minor extensions are provided as well.
        
        Please visit http://cthedot.de/cssutils/ or https://bitbucket.org/cthedot/cssutils/ for more details.
        
        There is also a low-traffic `cssutils discussion group <http://groups.google.com/group/cssutils>`_.
        
        
        Compatibility
        =============
        cssutils is developed on standard Python but works under Python 2.x (from 2.5, 2.7.3 tested), 3.x (v3.3 tested) and Jython (from 2.5.1). IronPython has not been tested yet but might work? Python 2.4 and older are not supported since cssutils 0.9.8 anymore.
        
        License
        =======
        Copyright 2005 - 2013 Christof Hoeke
        
        cssutils is published under the LGPL 3 or later
        
        cssutils is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
        
        cssutils is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
        
        You should have received a copy of the GNU Lesser General Public License along with cssutils. If not, see http://www.gnu.org/licenses.
        
        
        Installation
        ============
        From 0.9.6 cssutils uses `Distribute <http://pypi.python.org/pypi/distribute>`_
        
        After installing Distribute use::
        
            > easy_install cssutils
        
        to install the latest version of cssutils.
        
        Alternatively download the provided source distribution. Expand the file and from a command line install with::
        
            > python setup.py install
        
        To uninstall remove any registrations of cssutils eggs with Distribute and remove the eggs which should be installed at PYTHONDIR/Lib/site-packages/cssutils too.
        
        
        Example
        =======
        ::
        
            # -*- coding: utf-8 -*-
            import cssutils
        
            css = u'''/* a comment with umlaut &auml; */
                 @namespace html "http://www.w3.org/1999/xhtml";
                 @variables { BG: #fff }
                 html|a { color:red; background: var(BG) }'''
            sheet = cssutils.parseString(css)
        
            for rule in sheet:
                if rule.type == rule.STYLE_RULE:
                    # find property
                    for property in rule.style:
                        if property.name == 'color':
                            property.value = 'green'
                            property.priority = 'IMPORTANT'
                            break
                    # or simply:
                    rule.style['margin'] = '01.0eM' # or: ('1em', 'important')
        
            sheet.encoding = 'ascii'
            sheet.namespaces['xhtml'] = 'http://www.w3.org/1999/xhtml'
            sheet.namespaces['atom'] = 'http://www.w3.org/2005/Atom'
            sheet.add('atom|title {color: #000000 !important}')
            sheet.add('@import "sheets/import.css";')
        
            # cssutils.ser.prefs.resolveVariables == True since 0.9.7b2
            print sheet.cssText
        
        results in::
        
        	@charset "ascii";
        	@import "sheets/import.css";
        	/* a comment with umlaut \E4  */
        	@namespace xhtml "http://www.w3.org/1999/xhtml";
        	@namespace atom "http://www.w3.org/2005/Atom";
        	xhtml|a {
        	    color: green !important;
        	    background: #fff;
        	    margin: 1em
        	    }
        	atom|title {
        	    color: #000 !important
        	    }
        
        
        Documentation
        =============
        The current documenation can be found at http://packages.python.org/cssutils/
        
        
        Kind Request
        ============
        cssutils is far from being perfect or even complete. If you find any bugs (especially specification violations) or have problems or suggestions please put them in the `Issue Tracker <https://bitbucket.org/cthedot/cssutils/issues>`_ at Bitbucket.
        
        
        Thanks
        ======
        Thanks to Simon Sapin, Jason R. Coombs and Walter Doerwald for patches, help and discussion. Thanks to Kevin D. Smith for the value validating module. Thanks also to Cory Dodt, Tim Gerla, James Dobson and Amit Moscovich for helpful suggestions and code patches. Thanks to Fredrik Hedman for help on port of encutils to Python 3.
        
        
        
Keywords: CSS,Cascading Style Sheets,CSSParser,DOM Level 2 Stylesheets,DOM Level 2 CSS
Platform: Python 2.5 and later. Python 3.2 and later. Jython 2.5.1 and later.
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing :: Markup :: HTML