This file is indexed.

/usr/lib/python2.7/dist-packages/klaus/templates/tree.inc.html is in python-klaus 1.2.1-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
<div class=tree>
  <h2>Tree @<a href="{{ url_for('commit', repo=repo.name, rev=rev) }}">{{ rev|shorten_sha1 }}</a>
    <span>(<a href="{{ url_for('download', repo=repo.name, rev=rev) }}">Download .tar.gz</a>)</span>
  </h2>
  <ul>
    {% for _, name, fullpath in root_tree.dirs %}
    <li><a href="{{ url_for('history', repo=repo.name, rev=rev, path=fullpath) }}" class=dir>{{ name|force_unicode }}</a></li>
    {% endfor %}
    {% for _, name, fullpath, submodulerev in root_tree.submodules %}
    <li><a href="{{ url_for('submodule', repo=repo.name, rev=rev, path=fullpath) }}" class=submodule>{{ name|force_unicode }}</a></li>
    {% endfor %}
    {% for _, name, fullpath in root_tree.files %}
    <li><a href="{{ url_for('blob', repo=repo.name, rev=rev, path=fullpath) }}">{{ name|force_unicode }}</a></li>
    {% endfor %}
  </ul>
</div>