This file is indexed.

/usr/share/gosa/plugins/addons/goto/events/timestamp_select.tpl is in gosa-plugin-goto 2.7.4+reloaded2-1+deb8u2.

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
56
57
58
59
60
61
62
63
64
 <table cellspacing="0" cellpadding="0" summary="{t}Event scheduling options{/t}">
	<tr>
		<td>{t}Year{/t}</td>
		<td>{t}Month{/t}</td>
		<td>{t}Day{/t}</td>
    <td>&nbsp;&nbsp;</td>
		<td>{t}Hour{/t}</td>
		<td>{t}Minute{/t}</td>
		<td>{t}Second{/t}</td>
	</tr>
	<tr>
		<td>
			<select name="time_year" onChange="document.mainform.submit();" size=1>
				{html_options values=$years options=$years selected=$time_year}
			</select>&nbsp;
		</td>
		<td>
			<select name="time_month" onChange="document.mainform.submit();" size=1>
				{html_options values=$months options=$months selected=$time_month}
			</select>&nbsp;
		</td>
		<td>
			<select name="time_day" size=1>
				{html_options values=$days options=$days selected=$time_day}
			</select>&nbsp;
		</td>
    <td>&nbsp;</td>
		<td>
			<select name="time_hour" size=1>
				{html_options values=$hours options=$hours selected=$time_hour}
			</select>&nbsp;
		</td>
		<td>
			<select name="time_minute" size=1>
				{html_options values=$minutes options=$minutes selected=$time_minute}
			</select>&nbsp;
		</td>
		<td>
			<select name="time_second" size=1>
				{html_options values=$seconds options=$seconds selected=$time_second}
			</select>
		</td>
	</tr >
</table>
<br>
<table width="100%" summary="{t}Periodical jobs{/t}">
  <tr>
    <td colspan="2">
      <b>{t}Periodical job{/t}</b>
      <input class='center' type="checkbox" name='activate_periodical_job' value='1' {if $activate_periodical_job} checked {/if}
        onClick="changeState('periodValue'); changeState('periodType');">
    </td>
	</tr>
  <tr>
    <td>{t}Job interval{/t}</td>
    <td>
      <input {if !$activate_periodical_job} disabled {/if}
          size="4" type='text' id='periodValue' value='{$periodValue}' name='periodValue'>
      <select name='periodType' id="periodType" {if !$activate_periodical_job} disabled {/if} size=1>
        {html_options options=$periodTypes selected=$periodType}
      </select>
    </td>
	</tr>
</table>