This file is indexed.

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

{% block title %}{{ gettext('Sage: History for %(u)s', u=username) }}{% endblock %}

{% block javascript %}
<script type="text/javascript" src="/javascript/sage/js/ws_list.js"></script>
{% endblock %}

{% block page_id %}history-page{% endblock %}

{% block body %}
    <pre>{{ text }}</pre>
    <a title="{{ gettext('Click here to turn the above into a Sage worksheet') }}" href="/live_history">{{ gettext('Create a new Sage worksheet version of the last 100 commands in the above log.') }}</a>
    <a name="bottom"></a>
    <script type="text/javascript">
      $(window).on('load', function () {
          window.location = "#bottom";
      });
    </script>
{% endblock %}