This file is indexed.

/usr/lib/python2.7/dist-packages/sagenb/data/sage/html/notebook/worksheet.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
{#
INPUT:
- worksheet -- Worksheet object
- publish -- boolean whether this is for the published version
- do_print -- boolean whether this is for a print version
#}

{% set wrap = conf['word_wrap_cols'] %}
{% if not publish %}
    {% set publish = worksheet.is_published() %}
{% endif %}

<div class="cell_input_active" id="cell_resizer"></div>
<div class="worksheet_cell_list" id="worksheet_cell_list">
  {% for cell in worksheet.cell_list() %}
    {{ cell.html(wrap = wrap, div_wrap = true, do_print = do_print, publish = publish) | safe }}
  {% endfor %}
</div>