This file is indexed.

/usr/lib/python3/dist-packages/matplotlib/backends/web_backend/single_figure.html is in python3-matplotlib 1.5.1-1ubuntu1.

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
<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>
      $(document).ready(
        function() {
          var websocket_type = mpl.get_websocket_type();
          var websocket = new websocket_type(
              "{{ ws_uri }}" + {{ repr(str(fig_id)) }} + "/ws");
	  var fig = new mpl.figure(
              {{repr(str(fig_id))}}, websocket, mpl_ondownload, $('div#figure'));
        }
      );
    </script>

    <title>matplotlib</title>
  </head>

  <body>
    <div id="mpl-warnings" class="mpl-warnings"></div>
    <div id="figure" style="margin: 10px 10px;"></div>
  </body>
</html>