This file is indexed.

/usr/lib/python2.7/dist-packages/sagenb/data/sage/html/notebook/worksheet_revision_list.html is in python-sagenb 1.0.1+ds1-2.

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
{% extends "html/notebook/base_aux.html" %}

{% block page_id %}revision-list-page{% endblock %}

{% block sharebar_title %}
{{ gettext('Revision History -- List of Snapshots') }}
{% endblock %}

{% set select = "revisions" %}

{% block after_sharebar %}
<table id="revision-list">
    <thead>
        <tr>
            <td class="revision-title">{{ gettext('Revision') }}</td>
            <td class="edit-time">{{ gettext('Last Edited') }}</td>
        </tr>
    </thead>
    <tbody>
        {% for desc, key in worksheet.snapshot_data()|reverse %}
        <tr>
            <td><a href="revisions?rev={{ key }}">{{ gettext('Revision %(lr)s', lr=loop.revindex0) }}</a></td>
            <td><span class="revs">{{ desc }}</span></td>
        </tr>
        {% endfor %}
    </body>
</table>
{% endblock %}