This file is indexed.

/usr/lib/python3/dist-packages/sagenb_export/nbextension/list_handler.html is in python3-sagenb-export 3.2-3.

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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<html>
    <head>
        <title>SageMath</title>
        <link rel="stylesheet" href="/sagenb/www/sagenb-export.css"/>
        <script type="text/javascript" src="/sagenb/www/sagenb-export.js"></script>
    </head>
    <body>
        
        <div class="header">
            <h1>Sage Mathematics Software</h1>
            <img src="/sagenb/www/sagemath_icon.svg">
        </div>

        <div class="old">
            <h2>The Sage notebook has changed</h2>
            <p><a class="button" href="/tree">Take me to the new Sage/Jupyter notebook</a></p>
            <p><a class="button" href="/sagenb/www/run-sagenb.html">Run the old Sage Notebook</a></p>

            <p>
                To skip this screen and go directly to the new Jupyter
                notebook, run
                <tt>sage --notebook=jupyter</tt>
            </p>
            <p>
                To launch the old notebook instead, run
                <tt>sage --notebook=sagenb</tt>
                on the command line.
            </p>
        </div>

        <div class="old">
            <h2>Convert old notebooks to Jupyter</h2>
            <p>Click on any of the notebooks below to convert it to a new Jupyter notebook and open it in Jupyter:</p>
        </div>

        <div class="error">
        </div>
        
        <div class="nb-list">
            <div class="nb-row nb-header">
                <div class="nb-id">ID</div>
                <div class="nb-name">Name</div>
            </div>
            {% for nb in notebooks %}
            <div class="nb-row clickable" onclick="exportSageNB('{{nb.unique_id}}')">
                <div class="nb-id"><span class="ellipsis">{{ nb.unique_id }}</span></div>
                <div class="nb-name"><span class="ellipsis">{{ nb.name }}</span></div>
            </div>
            {% endfor %}
        </div>
        
    </body>
</html>