This file is indexed.

/etc/gforge/plugins/scmsvn/viewcvs/templates/query_results.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[# setup page definitions]
  [define location][rootname][if-any where]: [where][end][end]
  [define page_title][cfg.general.main_title] - query results - [location][end]
  [define help_href][docroot]/help_rootview.html[end]
[# end]

[include "include/header.ezt"]

<p><b>[english_query]</b></p>
[# <!-- {sql} --> ]
<p><a href="[queryform_href]">Modify query</a></p>
<p><a href="[backout_href]">Show commands which could be used to back out these changes</a></p>

<p><b>+[plus_count]/-[minus_count]</b> lines changed.</p>

[if-any commits]
<table width="100%" border="0" cellspacing="1" cellpadding="2">
 <thead>
  <tr>
   <th align="left" class="vc_header">Revision</th>
   <th align="left" class="vc_header[is querysort "file"]_sort[end]">File</th>
[if-any show_branch]
   <th align="left" class="vc_header">Branch</th>
[end]
   <th align="left" class="vc_header">+/-</th>
   <th align="left" class="vc_header[is querysort "date"]_sort[end]">Date</th>
   <th align="left" class="vc_header[is querysort "author"]_sort[end]">Author</th>
[# uncommment, if you want a separate Description column: (also see below)
   <th align="left" class="vc_header">Description</th>
]
  </tr>
 </thead>
[for commits]
  [for commits.files]
    <tbody>
    <tr class="vc_row_[if-index commits even]even[else]odd[end]">
      <td align=left valign=top>
	[if-any commits.files.rev]<a href="[commits.files.rev_href]">[commits.files.rev]</a>[else]&nbsp;[end]
      </td>
      <td align="left" valign="top">
        <a href="[commits.files.dir_href]">[commits.files.dir]/</a>
        <a href="[commits.files.log_href]">[commits.files.file]</a>
      </td>
[if-any show_branch]
      <td align="left" valign="top">
	[if-any commits.files.branch][commits.files.branch][else]&nbsp;[end]
      </td>
[end]
      <td align="left" valign="top">
        [# only show a diff link for changes ]
        [is commits.files.type "Add"]<ins>[end]
        [is commits.files.type "Change"]<a href="[commits.files.diff_href]">[end]
        [is commits.files.type "Remove"]<del>[end]
          [commits.files.plus]/[commits.files.minus]
        [is commits.files.type "Add"]</ins>[end]
        [is commits.files.type "Change"]</a>[end]
        [is commits.files.type "Remove"]</del>[end]
      </td>
      <td align="left" valign="top">
	[if-any commits.files.date][commits.files.date][else]&nbsp;[end]
      </td>
      <td align="left" valign="top">
	[if-any commits.files.author][commits.files.author][else]&nbsp;[end]
      </td>
    </tr>
  [end]
  <tr class="vc_row_[if-index commits even]even[else]odd[end]">
    <td>&nbsp;</td>
    <td colspan="5"><b>Log:</b><br>
      <pre class="vc_log">[commits.desc]</pre></td>
  </tr>
  </tbody>
[end]
</table>
[end]

[include "include/footer.ezt"]