This file is indexed.

/usr/share/pyshared/pydoctor/templates/common.html is in python-pydoctor 0.5b1+bzr603-1.

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
54
55
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
          "DTD/xhtml1-strict.dtd">
<html xmlns:t="http://twistedmatrix.com/ns/twisted.web.template/0.1" t:render="all">
  <head>
    <title><t:slot name="title">Something</t:slot> : API documentation</title>
    <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
    <link rel="stylesheet" type="text/css" href="apidocs.css" />
    <script t:render="ifusesorttable" type="text/javascript"
            src="sorttable.js"></script>
    <script t:render="pydoctorjs" type="text/javascript"
            src="pydoctor.js"></script>
  </head>
  <body>
    <t:slot name="heading"><h1>Heading</h1></t:slot>
    <p>
      <span id="part"><t:slot name="part">Part of something</t:slot></span>
      <a t:render="source">View Source</a>
      <a t:render="inhierarchy">View In Hierarchy</a>
    </p>
    <div>
      <t:slot name="extras">
        A docstring.
      </t:slot>
    </div>
    <div class="docstring">
      <t:slot name="docstring">
        A docstring.
      </t:slot>
    </div>

    <p t:render="splittingLinks">
      <a id="showSplitLink" href="#" onclick="showSplit()" class="jslink">Split Table into Classes</a>
      <a id="showBigLink" href="#" onclick="showBig()" class="jslink">Show Methods in One Table</a>
    </p>
    <div id="splitTables">
      <t:slot name="mainTable" />
      <t:invisible t:render="baseTables">
        <p>
          Inherited from <t:slot name="baseName" />:
        </p>
        <t:slot name="baseTable" />
      </t:invisible>
    </div>
    <div id="bigTable" t:render="bigTable">
    </div>
    <t:slot name="packageInitTable" />

    <t:slot name="childlist" />
    <address>
      <a href="index.html">API Documentation</a> for <t:slot name="project">Some
        Project</t:slot>, generated by <a href="http://codespeak.net/~mwh/pydoctor/">pydoctor</a> at <t:slot name="buildtime">some time</t:slot>.
    </address>
  </body>
</html>