This file is indexed.

/usr/share/pcsd/views/_wizards.erb is in pcs 0.9.149-1.

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
<! -- WTR -->
<tr id="wizards_title_row" {{bind-attr style="Pcs.wizards_page"}}>
  <td>
    <form method=post onsubmit="wizard_submit(this); return false;">
      <table>
	<tr>
	  <td id="page_header" colspan=3>
	    WIZARDS
	  </td>
	</tr>
	<tr><td colspan=3>Select a Wizard
	    <select name="wizard" onchange="loadWizard(this)">
	      <%=
		opts = "<option value=\"0\">Please select a wizard...</option>"
		PCSDWizard.getAllWizards.each {|wc| 
		  w = Object.const_get(wc.to_s).new
		  opts += "<option value='"+wc.to_s+"'>"+w.long_name+"</option>"
		}
		opts
	      %>
	    </select>
	  </td>
	</tr>
	<tr id="wizards_header_row" {{bind-attr style="Pcs.wizards_page"}}><td colspan=3>
	    <div id="wizard_location">
	    </div>
	</td></tr>
	<tr><td colspan=3>
	    <hr>
	  </td>
	</tr>
      </table>
    </form>
  </td>
</tr>