Sha256: 87fd2be4ba343a479d3494bf55d8353d0ed9861d127c03765fce6cf1d6ab6115

Contents?: true

Size: 1.46 KB

Versions: 39

Compression:

Stored size: 1.46 KB

Contents

<header>
  <h1>
    <%= @exception.class.to_s %>
    <% if params_valid? && @request.parameters['controller'] %>
      in <%= @request.parameters['controller'].camelize %>Controller<% if @request.parameters['action'] %>#<%= @request.parameters['action'] %><% end %>
    <% end %>
  </h1>
</header>

<main role="main" id="container">
  <%= render "rescues/message_and_suggestions", exception: @exception %>
  <%= render "rescues/actions", exception: @exception, request: @request %>

  <%= render "rescues/source", source_extracts: @source_extracts, show_source_idx: @show_source_idx, error_index: 0 %>
  <%= render "rescues/trace", traces: @traces, trace_to_show: @trace_to_show, error_index: 0 %>

  <% if @exception.cause %>
    <h2>Exception Causes</h2>
  <% end %>

  <% @exception_wrapper.wrapped_causes.each.with_index(1) do |wrapper, index| %>
    <div class="details">
      <a class="summary" href="#" onclick="return toggle(<%= wrapper.exception.object_id %>)">
        <%= wrapper.exception.class.name %>: <%= h wrapper.exception.message %>
      </a>
    </div>

    <div id="<%= wrapper.exception.object_id %>" class="hidden">
      <%= render "rescues/source", source_extracts: wrapper.source_extracts, show_source_idx: wrapper.source_to_show_id, error_index: index %>
      <%= render "rescues/trace", traces: wrapper.traces, trace_to_show: wrapper.trace_to_show, error_index: index %>
    </div>
  <% end %>

  <%= render template: "rescues/_request_and_response" %>
</main>

Version data entries

39 entries across 37 versions & 5 rubygems

Version Path
actionpack-7.0.5 lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb
actionpack-7.0.4.3 lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb
actionpack-7.0.4.2 lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb
actionpack-7.0.4.1 lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb
actionpack-7.0.4 lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb
actionpack-7.0.3.1 lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb
actionpack-7.0.3 lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb
actionpack-7.0.2.4 lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb
actionpack-7.0.2.3 lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb
actionpack-7.0.2.2 lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb
actionpack-7.0.2.1 lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb
actionpack-7.0.2 lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb
actionpack-7.0.1 lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb
actionpack-7.0.0 lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb
actionpack-7.0.0.rc3 lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb
actionpack-7.0.0.rc2 lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb
actionpack-7.0.0.rc1 lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb
actionpack-7.0.0.alpha2 lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb
actionpack-7.0.0.alpha1 lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb