This file is indexed.

/usr/lib/python3/dist-packages/matplotlib/backends/web_backend/all_figures.html is in python3-matplotlib 2.0.0+dfsg1-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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<html>
  <head>
    <link rel="stylesheet" href="{{ prefix }}/_static/css/page.css" type="text/css">
    <link rel="stylesheet" href="{{ prefix }}/_static/css/boilerplate.css" type="text/css" />
    <link rel="stylesheet" href="{{ prefix }}/_static/css/fbm.css" type="text/css" />
    <link rel="stylesheet" href="{{ prefix }}/_static/jquery/css/themes/base/jquery-ui.min.css" >
    <script src="{{ prefix }}/_static/jquery/js/jquery-1.11.3.min.js"></script>
    <script src="{{ prefix }}/_static/jquery/js/jquery-ui.min.js"></script>
    <script src="{{ prefix }}/_static/mpl_tornado.js"></script>
    <script src="{{ prefix }}/mpl.js"></script>

    <script>
      {% for (fig_id, fig_manager) in figures %}
        $(document).ready(
        function() {
          var main_div = $('div#figures');
          var figure_div = $('<div id="figure-div"/>')
          main_div.append(figure_div);
          var websocket_type = mpl.get_websocket_type();
          var websocket = new websocket_type(
              "{{ ws_uri }}" + "{{ fig_id }}" + "/ws");
          var fig = new mpl.figure(
              "{{ fig_id }}", websocket, mpl_ondownload, figure_div);

          fig.focus_on_mouseover = true;

          $(fig.canvas).attr('tabindex', {{ fig_id }});
          }
        );

	{% end %}
    </script>

  <title>MPL | WebAgg current figures</title>

  </head>
  <body>
    <div id="mpl-warnings" class="mpl-warnings"></div>

    <div id="figures" style="margin: 10px 10px;"></div>

  </body>
</html>