This file is indexed.

/usr/lib/python2.7/dist-packages/sagenb/data/sage/html/worksheet/ratings_info.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
{% extends "html/base.html" %}

{% block title %}{{ gettext('Ratings for %(wn)s', wn=worksheet.name()) }}{% endblock %}

{% block body %}
<h2 align=center>{{ gettext('Ratings for %(wn)s', wn=worksheet.name()) }}</h2>
<h3 align=center><a href='/home/{{ worksheet.filename() }}'>{{ gettext('Go to the worksheet.') }}</a>
<table width=70%%align=center border=1 cellpadding=10 cellspacing=0>
    <tr bgcolor="#7799bb"><td width=30em>{{ gettext('User') }}</td><td width=10em align=center>{{ gettext('Rating') }}</td><td width=10em align=center width=60em>{{ gettext('Comment') }}</td></tr>
    {% for rating in worksheet.ratings()|sort %}
    <tr>
        <td>{{ rating[0] }}{# User #}</td>
        <td>{{ rating[1] }}{# Rating #}</td>
        <td>{{'' if rating|length < 3 else rating[2] }}{# Comment #}</td>
    </tr>
    {% endfor %}
</table>
{% endblock %}