This file is indexed.

/usr/share/doc/ruby-ramaze/examples/app/whywiki/template/edit.xhtml is in ruby-ramaze 2012.12.08-3.

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
<html>
  <head>
    <title>MicroWiki Edit #{@page}</title>
  </head>
  <body>
    <h1>Edit #{@page}</h1>
    #{ A("&lt; Home", :href => Rs()) }
    <form method="POST" action="#{Rs(:save)}">
      <input type="hidden" name="page" value="#{url_encode(@page)}" />
      <textarea name="text" style="width: 90%; height: 20em;">#{@text}</textarea>
      <input type="submit" />
    </form>
  </body>
</html>