This file is indexed.

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

{% block title %}
  {{ path }} - {{ super() }}
{% endblock %}

{% block content %}

<h2>
{{ path|force_unicode }}
<span>
  @<a href="{{ url_for('commit', repo=repo.name, rev=rev) }}">{{ rev|shorten_sha1 }}</a>
</span>
</h2>
<p>The path at {{ path|force_unicode }} contains a submodule, revision {{ submodule_rev }}.  {% if submodule_url %} It can be checked out from <a href="{{ submodule_url }}">{{ submodule_url }}</a>. {% endif %}
</p>

{% endblock %}