This file is indexed.

/usr/lib/python3/dist-packages/glue/formats/html.py is in glue-sprite 0.13-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
import os

from .css import CssFormat

class HtmlFormat(CssFormat):

    extension = 'html'
    template = """
        <html>
            <head><title>Glue Sprite Test Html</title>
            <link rel="stylesheet" type="text/css" href="{{ css_path }}"></head>
            <body>
            <style type="text/css">
                tr div:hover{ border:1px solid #ccc;}
                tr div{ border:1px solid white;}
            </style>

            <h1>CSS Classes</h1>
            <table>
            <tr>
                <th>CSS Class</th>
                <th>Result</th>
            </tr>

            {% for image in images %}
            <tr><td>.{{ image.label }}</td><td><div class="{{ image.label }}"></div></td></tr>
            {% endfor %}

            </table>
            <p><em>Generated using <a href="http://gluecss.com"/>Glue v{{ version }}</a></em></p>
            </body>
        </html>"""

    @classmethod
    def populate_argument_parser(cls, parser):
        group = parser.add_argument_group("Html format options")

        group.add_argument("--html",
                           dest="html_dir",
                           nargs='?',
                           const=True,
                           default=os.environ.get('GLUE_HTML', False),
                           metavar='DIR',
                           help="Generate html files and optionally where")

    @classmethod
    def apply_parser_contraints(cls, parser, options):
        if 'html' in options.enabled_formats and 'css' not in options.enabled_formats:
            parser.error("You can't use --html without --css.")

    def get_context(self, *args, **kwargs):
        context = super(HtmlFormat, self).get_context(*args, **kwargs)
        context['css_path'] = os.path.relpath(os.path.join(self.sprite.config['css_dir'], '{0}.css'.format(self.sprite.name)), self.output_dir())
        return context

    def needs_rebuild(self):
        return True

    def validate(self):
        return True