This file is indexed.

/usr/lib/python2.7/dist-packages/Bcfg2/Reporting/templates/base-timeview.html is in bcfg2-server 1.4.0~pre2+git141-g6d40dace6358-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
{% extends "base.html" %}

{% block timepiece %}
<script type="text/javascript">
function showCalendar() {
    var cal = new CalendarPopup("calendar_div");
    cal.showYearNavigation();
    cal.select(document.forms['cal_form'].cal_date,'cal_link',
        'yyyy/MM/dd' {% if timestamp %}, '{{ timestamp|date:"Y/m/d" }}'{% endif %} );
    return false;
}
function bcfg2_check_date() {
    var new_date = document.getElementById('cal_date').value;
    if(new_date) {
        document.cal_form.submit();
    }
}
document.write(getCalendarStyles());
</script>
{% if not timestamp %}Rendered at {% now "SHORT_DATETIME_FORMAT" %} | {% else %}View as of {{ timestamp|date:"SHORT_DATETIME_FORMAT" }} | {% endif %}{% spaceless %}
  <a id='cal_link' name='cal_link' href='#' onclick='showCalendar(); return false;'
      >[change]</a>
  <form method='post' action='{{ path }}' id='cal_form' name='cal_form'>
    <input id='cal_date' name='cal_date' type='hidden' value=''/>
    <input name='op' type='hidden' value='timeview'/>
  </form>
{% endspaceless %}
{% endblock %}