This file is indexed.

/usr/lib/python2.7/dist-packages/sagenb/data/sage/html/base_authenticated.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
{% extends "html/base.html" %}
{% block controls %}
<div id="main-controls" class="controls">
    <ul>
        <li class="username">{{ username }}</li>
        {% if username == 'guest' %}
        <li><a title="{{ gettext('Please log in to the Sage notebook') }}" href="/">{{ gettext('Log in') }}</a></li>
        {% else %}
        <li><a id="toggle-link" title="{{ gettext('Toggle the top bar') }}" onClick="$('#worksheet-bar').toggle()">{{ gettext('Toggle') }}</a></li>
        <li><a title="{{ gettext('Back to your personal worksheet list') }}" href="/home/{{ username }}">{{ gettext('Home') }}</a></li>
        {% if pub %}
        <li><span>{{ gettext('Published') }}</span></li>
        {% else %}
        <li><a title="{{ gettext('Browse the published worksheets') }}" href="/pub">{{ gettext('Published') }}</a></li>
        <li><a title="{{ gettext('View a log of recent computations') }}" href="#" onClick="history_window()">{{ gettext('Log') }}</a></li>
        {% endif %}
        <li><a title="{{ gettext('Change account settings including password') }}" href="/settings">{{ gettext('Settings') }}</a></li>
        <li><a title="{{ gettext('Documentation') }}" href="#" onClick="help()">{{ gettext('Help') }}</a></li>
        <li><a title="{{ gettext('Report a problem or submit a bug to improve Sage') }}" href="#" onClick="bugreport()">{{ gettext('Report a Problem') }}</a></li>
        <li><a title="{{ gettext('Log out of the Sage notebook') }}" href="/logout">{{ gettext('Sign out') }}</a></li>
        {% endif %}
    </ul>
</div>
{% endblock %}