aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/middleware/templates/rescues/_source.erb
blob: eabac3a9d2d1a2c545091668af139433b30adbc3 (plain) (blame)
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
<% if @source_extract %>
  <% @source_extract.each_with_index do |extract_source, index| %>
    <% if extract_source[:code] %>
      <div class="source <%="hidden" if @show_source_idx != index%>" id="frame-source-<%=index%>">
        <div class="info">
          Extracted source (around line <strong>#<%= extract_source[:line_number] %></strong>):
        </div>
        <div class="data">
          <table cellpadding="0" cellspacing="0" class="lines">
            <tr>
              <td>
                <pre class="line_numbers">
                  <% extract_source[:code].each_key do |line_number| %>
<span><%= line_number -%></span>
                  <% end %>
                </pre>
              </td>
<td width="100%">
<pre>
<% extract_source[:code].each do |line, source| -%><div class="line<%= " active" if line == extract_source[:line_number] -%>"><%= source -%></div><% end -%>
</pre>
</td>
            </tr>
          </table>
        </div>
      </div>
    <% end %>
  <% end %>
<% end %>