This file is indexed.

/etc/gforge/plugins/scmsvn/viewcvs/templates/include/dir_footer.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[if-any no_match]
  <p><b>NOTE:</b> There are [num_files] files, but none match the
  current selection criteria.
[end]

[if-any unreadable]
  <hr size=1 noshade>
  <b>NOTE:</b> One or more files were unreadable. The files in the CVS
  repository should be readable by the web server process. Please
  report this condition to the administrator of this CVS repository.
[end]

[if-any selection_form]
  <hr size=1 noshade>
  <form method=get action="[search_tag_action]">
    [search_tag_hidden_values]
    [# this table holds the selectors on the left, and reset on the right ]
    <table>
      [if-any has_tags]
        <tr>
          <td> Show files using tag: </td>
          <td>
            <select name=only_with_tag onchange="submit()">
            <option value="">Select Branch</option>
            [if-any branch_tags]
              <optgroup label="Branches">
              [for branch_tags]
                [is branch_tags view_tag]
                  <option selected>[branch_tags]</option>
                [else]
                  <option>[branch_tags]</option>
                [end]
              [end]
              </optgroup>
            [end]
            <optgroup label="Non-branch tags">
            [for plain_tags]
              [is plain_tags view_tag]
                <option selected>[plain_tags]</option>
              [else]
                <option>[plain_tags]</option>
              [end]
            [end]
            </optgroup>
            </select>
          </td>
          <td> &nbsp; </td>
        </tr>
      [end]

      [is num_files "0"]
      [else]
        [is cfg.options.use_re_search "1"]
          <tr>
            <td>Show files containing the regular expression:</td>
            <td><input type="text" name="search" value="[search_re]"></td>
            <td> &nbsp; </td>
          </tr>
        [end]

        <tr>
          <td> &nbsp; </td>
          <td> <input type="submit" value="Show"> </td>
      [end]
  [# I don't like closing the form here, but I thought this is better than 
     having forms inside forms ]
  </form>
      [if-any view_tag]
        <td valign=bottom>
          <form method=get action="[search_tag_action]">
            [search_tag_hidden_values]
            <input type="submit" value="Show all files">
          </form>
        </td>
      [else]
        [if-any search_re]
          <td valign=bottom>
            <form method=get action="[search_tag_action]">
              [search_tag_hidden_values]
              <input type="submit" value="Show all files">
            </form>
          </td>
        [end]
      [end]
    </tr>
  </table>
[end]

[# if you want to disable tarball generation remove the following: ]
[if-any tarball_href]
  <p><a href="[tarball_href]">Download tarball</a></p>
[end]

[include "footer.ezt"]