This file is indexed.

/usr/lib/python2.7/dist-packages/sagenb/data/sage/html/settings/notebook_settings.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/settings/base.html" %}
{% block title %}{{ gettext('Notebook Settings') }}{% endblock %}

{% block more_css %}
{% endblock %}

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

{% block page_id %}notebook-settings-page{% endblock %}

{% block settings_main %}
<form method="post" action="/notebooksettings">
  <input type="hidden" name="form" value="on" />
  <div class="buttons buttons-top">
      <button type="submit">{{ gettext('Save') }}</button>
      <a href="/"><button>{{ gettext('Cancel') }}</button></a>
  </div>
  {%- if auto_table %}
  {{ auto_table | safe }}
  {%- endif %}
  <div class="buttons">
      <button type="submit">{{ gettext('Save') }}</button>
      <a href="/"><button>{{ gettext('Cancel') }}</button></a>
  </div>
</form>
{% endblock %}