aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/templates/rescues/template_error.rhtml
blob: 9a331b9bf216a04c21ebbd2677c8d3577e41e143 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<h1>
  <%=h @exception.original_exception.class.to_s %> in
  <%=h @request.parameters["controller"].capitalize %>#<%=h @request.parameters["action"] %>
</h1>

<p>
  Showing <i><%=h @exception.file_name %></i> where line <b>#<%=h @exception.line_number %></b> raised:
  <pre><code><%=h @exception.message %></code></pre>
</p>

<p>Extracted source (around line <b>#<%=h @exception.line_number %></b>):
<pre><code><%=h @exception.source_extract %></code></pre></p>

<p><%=h @exception.sub_template_message %></p>

<a href="#" onclick="document.getElementById('framework_trace').style.display='block'">Show template trace</a>
<pre id="framework_trace" style="display:none"><code><%=h @exception.original_exception.backtrace.collect { |line| Object.const_defined?(:RAILS_ROOT) ? line.gsub(RAILS_ROOT, "") : line }.join("\n") %></code></pre>

<%= render_file(@rescues_path + "/_request_and_response.rhtml", false) %>