This file is indexed.

/usr/share/pyshared/IPython/frontend/html/notebook/templates/projectdashboard.html is in ipython-notebook 0.12.1+dfsg-0ubuntu1.

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
{% extends layout.html %}

{% block title %}
IPython Dashboard
{% end %}

{% block stylesheet %}
    <link rel="stylesheet" href="static/css/projectdashboard.css" type="text/css" />
{% end %}

{% block meta %}
    <meta name="read_only" content="{{read_only}}"/>
{% end %}

{% block params %}
data-project={{project}}
data-base-project-url={{base_project_url}}
data-base-kernel-url={{base_kernel_url}}
{% end %}

{% block content_panel %}
    {% if logged_in or not read_only %}

    <div id="content_toolbar">
        <span id="drag_info">Drag files onto the list to import
        notebooks.</span>

        <span id="notebooks_buttons">
          <button id="new_notebook">New Notebook</button>
        </span>
    </div>

    {% end %}

    <div id="notebook_list">
        <div id="project_name"><h2>{{project}}</h2></div>
    </div>
{% end %}

{% block script %}
    <script src="static/js/notebooklist.js" type="text/javascript" charset="utf-8"></script>
    <script src="static/js/projectdashboardmain.js" type="text/javascript" charset="utf-8"></script>
{% end %}