This file is indexed.

/usr/lib/ruby/vendor_ruby/debci/html/package.erb is in debci 1.7.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
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
<div class="container">
  <div class='row'>
    <div class='col-lg-12'>
      <ol class='breadcrumb'>
        <li><a href='/packages/<%= @package.prefix %>'><%= @package.prefix %></a></li>
        <li class='active'><%= @package.name %></li>
      </ol>

      <h2>
        <%= @package.name %>

        <small>
        <a id='icon-rss'
           href='/data/feeds/<%= @package.prefix %>/<%= @package.name %>.xml'>
        </a>

        <a id='icon-tracker'
           href='https://tracker.debian.org/pkg/<%= @package.name %>'
           title='On the Package Tracking System'>
        </a>
      </small>
    </h2>

    <% if @package.blacklisted? %>
      <div class='alert alert-warning'>
        This package is currently <a href="/status/blacklist/">blacklisted</a> and will not have any new test runs.
      </div>
    <% end %>

      <table class="table" style='width: auto'>

        <% if @package.status.first %>
          <tr>
            <td></td>
            <% @package.status.first.each do |status| %>
              <td><b><%= status.suite %></b></td>
            <% end %>
          </tr>
        <% else %>
          <tr>
            <td><em>(no data yet)</em></td>
          </tr>
        <% end %>

        <% @package.status.each do |row| %>
          <tr>
            <td><b><%= row.first.architecture %></b></td>

            <% row.each do |status| %>
              <% if status.status.eql?(:no_test_data) %>
                  <td class="<%= status.extended_status %>"><%= status.title %></td>
              <% else %>
                  <% package_dir = "/packages/#{@package.prefix}" +
                                   "/#{@package.name}/#{status.suite}" +
                                   "/#{row.first.architecture}"
                  %>
                  <td class="<%= status.status %>">
                    <a href=<%= package_dir %>><%= status.version %>  <%= status.title %></a>
                  </td>
              <% end %>
            <% end %>
          </tr>
        <% end %>

      </table>

    </div>
  </div>
</div>