This file is indexed.

/usr/lib/python2.7/dist-packages/sagenb/data/sage/html/notebook/beforepublish_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
18
19
20
21
22
23
{% extends "html/notebook/base_aux.html" %}

{% block page_id %}before-publish-page{% endblock %}
{% block sharebar_title %}
<p>{{ gettext('You can publish your worksheet to the Internet, where anyone will be able to access and view it online.') }}</p>

<p>{{ gettext('Your worksheet will be assigned a unique address (URL) that you can send to your friends and colleagues.') }}</p>

<p>{{ gettext('Do you want to publish this worksheet?') }}</p>

<form method="">
    <input type="hidden" name="yes" value="" />
    <div>
        <input type="submit" value="{{ gettext('Yes') }}" />
        <input type="button" value="{{ gettext('No') }}" onClick="parent.location='./'" />
    </div>
    <div>
        <input type="checkbox" name="auto" /> <label for="auto"> {{ gettext('Automatically re-publish when changes are made and saved') }}</label>
    </div>
</form>
{% endblock %}
{% set select = "publish" %}
{% set backwards = true %}