This file is indexed.

/usr/lib/python2.7/dist-packages/klaus/templates/base.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
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
{% extends 'skeleton.html' %}

{% block title %}
  {{ repo.name }} ({{ rev|shorten_sha1 }})
{% endblock %}

{% block breadcrumbs %}
  <span>
    <a href="{{ url_for('index', repo=repo.name) }}">{{ repo.name }}</a>
    <span class=slash>/</span>
    <a href="{{ url_for('history', repo=repo.name, rev=rev) }}">{{ rev|shorten_sha1 }}</a>
  </span>

  {% if subpaths %}
  <span>
    {% for name, subpath in subpaths %}
      {% if loop.last %}
      <a href="">{{ name|force_unicode }}</a>
      {% else %}
      <a href="{{ url_for('history', repo=repo.name, rev=rev, path=subpath) }}">{{ name|force_unicode }}</a>
      <span class=slash>/</span>
      {% endif %}
    {% endfor %}
  </span>
  {% endif %}
{% endblock %}

{% block extra_header %}
<div class=branch-selector>
  <span>{{ rev|shorten_sha1 }}</span>
  <div>
    <ul class=branches>
      {% for branch in branches %}
      <li><a href="{{ url_for(view, repo=repo.name, rev=branch, path=path) }}">{{ branch }}</a></li>
      {% endfor %}
    </ul>
    {% if tags %}
    <ul class=tags>
      {% for tag in tags %}
      <li><a href="{{ url_for(view, repo=repo.name, rev=tag, path=path) }}">{{ tag }}</a></li>
      {% endfor %}
    </ul>
    {% endif %}
  </div>
</div>
{% endblock %}