This file is indexed.

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

{% block page_id %}after-publish-page{% endblock %}

{% set checked = 'checked="true"' if worksheet.is_auto_publish() else '' %}

{% block sharebar_title %}
<p>{{ gettext('Worksheet is publicly viewable at <a href="%(u)s" style="color:#FFF" target="_blank">%(u)s', u=url) | safe }}</a></p>
<p>{{ gettext('Published on %(t)s', t=time) }}</p>
<div>
    <a href="publish?re"><button>{{ gettext('Re-publish worksheet') }}</button></a>
    <a onClick="parent.location+='?stop'"><button>{{ gettext('Stop publishing') }}</button></p></a>
</div>
<input type="checkbox" name="auto" {{ checked }} onchange="parent.location='?auto'"/> <label for="auto">{{ gettext('Automatically re-publish when changes are made and saved') }}</label>
{% endblock %}
{% set select = "publish" %}
{% set backwards = true %}