This file is indexed.

/usr/share/pyshared/wikiprint/templates/admin_wikiprint.html is in trac-wikiprint 1.9.2-1.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
<html xmlns="http://www.w3.org/1999/xhtml" 
       xmlns:py="http://genshi.edgewall.org/" 
       xmlns:xi="http://www.w3.org/2001/XInclude"
       py:strip=""> 
       
<xi:include href="admin.html" />

<head><title>WikiPrint Options</title></head>
<body>
<h2>Wikiprint Options</h2>
<form method="post">
<fieldset>
    <legend>Style/Content Properties</legend>
    <table>
    <tbody>
        <tr>
            <td colspan="3">
                Specify a path to a file in the local filesystem, or an URL to the resource.
                <br/>Leave blank for using default styles or content.
            </td>
        </tr>
        <tr>
            <td>CSS file or URL:</td>
            <td><input type="text" value="${css_url}" name="css_url" size="80"/></td>
            <td><input type="submit" name="viewcss" value="View" /></td>
        </tr>
        <tr>
            <td>Book additional CSS file or URL:</td>
            <td><input type="text" value="${book_css_url}" name="book_css_url" size="80"/></td>
            <td><input type="submit" name="viewbookcss" value="View" /></td>
        </tr>
        <tr>
            <td>Article additional CSS file or URL:</td>
            <td><input type="text" value="${article_css_url}" name="article_css_url" size="80"/></td>
            <td><input type="submit" name="viewarticlecss" value="View" /></td>
        </tr>
        <tr>
            <td>Book front page file or URL:</td>
            <td><input type="text" value="${frontpage_url}" name="frontpage_url" size="80"/></td>
            <td><input type="submit" name="viewfrontpage" value="View" /></td>
        </tr>
        <tr>
            <td>Header/footer/extra content file or URL:</td>
            <td><input type="text" value="${extracontent_url}" name="extracontent_url" size="80"/></td>
            <td><input type="submit" name="viewextracontent" value="View" /></td>
        </tr>
    </tbody>
    </table>
    <input type="submit" name="saveurls" value="Save configuration" />
</fieldset>

<fieldset>
    <legend>HTTP Authentication</legend>
    <table>
    <tbody>
        <tr>
            <td colspan="3">
                Specify a username and password that will be used when Wikiprint makes HTTP requests to recover document images or resources.
                <br/>Supported methods are Basic and Digest authentication.
            </td>
        </tr>
        <tr>
            <td>Username:</td>
            <td><input type="text" value="${httpauth_user}" name="httpauth_user" size="80"/></td>
        </tr>
        <tr>
            <td>Password:</td>
            <td><input type="password" value="${httpauth_password}" name="httpauth_password" size="80"/></td>
        </tr>
    </tbody>
    </table>
    <input type="submit" name="savehttpauth" value="Save user and password" />
</fieldset>
</form>   
</body>
</html>