This file is indexed.

/etc/gforge/plugins/scmsvn/viewcvs/templates/annotate.ezt is in fusionforge-plugin-scmsvn 5.1.1-2.

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
[# setup page definitions]
  [define location][rootname][if-any where]: [where][end][end]
  [define page_title][cfg.general.main_title] - annotate - [location][end]
  [define help_href][docroot]/help_rootview.html[end]
[# end]

[include "include/header.ezt" "annotate"]

<hr noshade>

[define class1]vc_row_even[end]
[define class2]vc_row_odd[end]
[define last_rev]0[end]
[define rowclass][class1][end]

<table border="0" cellspacing="0" cellpadding="0" width="100%">
[for lines]
  [is lines.rev last_rev]
  [else]
    [is rowclass class1]
      [define rowclass][class2][end]
    [else]
      [define rowclass][class1][end]
    [end]
  [end]

  <tr class="[rowclass]">
    <td class="vc_blame_line">[lines.line_number] :</td>
    <td class="vc_blame_author">
      [is lines.rev last_rev]&nbsp;[else][lines.author][end]
    </td>
    <td class="vc_blame_rev">
      [is lines.rev last_rev]
        &nbsp;
      [else]
        [if-any lines.diff_url]<a href="[lines.diff_url]">[end][lines.rev][if-any lines.diff_url]</a>[end]
      [end]
    </td>
    <td class="vc_blame_text">[lines.text]</td>
  </tr>
  [define last_rev][lines.rev][end]
[end]
</table>

[include "include/footer.ezt"]