This file is indexed.

/usr/lib/python2.7/dist-packages/wikiprint/templates/admin_wikibook.html is in trac-wikiprint 2.0.0+r16816-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
<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>Make WikiPrint Book</title></head>
<body>
<h2>Create WikiPrint Book</h2>
<form method="post" onsubmit="compile_pages(this);">
<fieldset>
    <legend>Book Properties</legend>
    <table>
    <tbody>
        <tr>
            <td>Title:</td>
            <td><input type="text" name="title" size="80"/></td>
        </tr>
        <tr>
            <td>Subject:</td>
            <td><input type="text" name="subject" size="80"/></td>
        </tr>
        <tr>
            <td>Version:</td>
            <td><input type="text" name="version" size="20" /></td>
        </tr>
        <tr>
            <td>Date:</td>
            <td><input type="text" name="date" size="20"/></td>
        </tr>
    </tbody>
    </table>
</fieldset>

<fieldset>
    <legend>Select pages</legend>
        <table border="0" width="100%">
        <tr>
            <td align="left" colspan="2">All Pages</td>
        </tr>
        <tr>
            <td colspan="2">
                <select id="leftpages_select" name="leftpages" size="10" style="width: 100%;" multiple="multiple">
                    <py:for each="page in leftpages">
                        <option value="${page}">${page}</option>
                    </py:for>            
                </select>
            </td>
    </tr>
    <tr>
            <td align="center" colspan="2">
                <input type="button" onclick="move_item('right', 'left')" value="/\" />
                     &nbsp;&nbsp; 
                <input type="button" onclick="move_item('left', 'right')" value="\/" />
            </td>
    </tr>	
    <tr>
            <td align="left" colspan="2">Selected Pages</td>
         </tr>
     <tr>
        <td width="95%">
                    <select id="rightpages_select" name="rightpages" size="10" style="width: 100%;" multiple="multiple">
                            <py:for each="page in rightpages">
                            <option value="${page}">${page}</option>
                            </py:for>            
                    </select>
        </td>
        <td width="5%" align="center">
            <input type="button" onclick="reorder_item('right', -1)" value="/\" />
            <br/><br/>
            <input type="button" onclick="reorder_item('right', 1)" value="\/" />
        </td>
        </tr>
  </table>    
</fieldset>

<fieldset>
    <legend>Output Format</legend>
    <py:for each="format_name, format in formats.iteritems()">
    <label>
        <input py:if="format_name == default_format" type="radio" name="format" value="${format_name}" checked="checked"/>
        <input py:if="format_name != default_format" type="radio" name="format" value="${format_name}"/>
        ${format['name']}
    </label>
    </py:for>
</fieldset>

<input type="hidden" name="rightpages_all" value="" />

<div class="buttons">
    <input type="submit" name="create" value="Create" />
</div>
</form>   
</body>
</html>