This file is indexed.

/etc/gforge/plugins/scmsvn/viewcvs/templates/include/branch_form.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
[if-any branch_names]
  <hr noshade>
  <a name=branch></a>
  <form method=GET action="[branch_select_action]">
    [branch_select_hidden_values]
    View only Branch:
    [if-any current_root]
    <input type="hidden" name="root" value="[current_root]">
    [end]
    <select name="only_with_tag" onchange="submit()">
      <option value="" [is view_tag ""]selected[end]>Show all branches</option>
      [for branch_names]
        <option value="[branch_names]" [is branch_names view_tag]selected[end]>[branch_names]</option>
      [end]
    </select>
    <input type=submit value="  View Branch  ">
  </form>
[end]