aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/templates/rescues/diagnostics.rhtml
diff options
context:
space:
mode:
authorNicholas Seckar <nseckar@gmail.com>2005-10-15 19:05:15 +0000
committerNicholas Seckar <nseckar@gmail.com>2005-10-15 19:05:15 +0000
commit3625dfaad5901e7595a3541c8ddfe890fefff0a6 (patch)
tree0d0b8024834e87f7af10b512f942c687b846efd5 /actionpack/lib/action_controller/templates/rescues/diagnostics.rhtml
parent49ec08aaa76c4d1e5ea3286fa56e4afa927bf135 (diff)
downloadrails-3625dfaad5901e7595a3541c8ddfe890fefff0a6.tar.gz
rails-3625dfaad5901e7595a3541c8ddfe890fefff0a6.tar.bz2
rails-3625dfaad5901e7595a3541c8ddfe890fefff0a6.zip
Clean up error pages by providing better backtraces
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2624 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/lib/action_controller/templates/rescues/diagnostics.rhtml')
-rw-r--r--actionpack/lib/action_controller/templates/rescues/diagnostics.rhtml15
1 files changed, 2 insertions, 13 deletions
diff --git a/actionpack/lib/action_controller/templates/rescues/diagnostics.rhtml b/actionpack/lib/action_controller/templates/rescues/diagnostics.rhtml
index 80634b2d34..584659252a 100644
--- a/actionpack/lib/action_controller/templates/rescues/diagnostics.rhtml
+++ b/actionpack/lib/action_controller/templates/rescues/diagnostics.rhtml
@@ -1,20 +1,9 @@
-<%
- clean_backtrace = @exception.backtrace.collect { |line| Object.const_defined?(:RAILS_ROOT) ? line.gsub(RAILS_ROOT, "") : line }
- app_trace = clean_backtrace.reject { |line| line =~ /(vendor|dispatch|ruby)/ }
- framework_trace = clean_backtrace - app_trace
-%>
-
<h1>
<%=h @exception.class.to_s %> in
<%=h (@request.parameters["controller"] || "<controller not set>").capitalize %>#<%=h @request.parameters["action"] || "<action not set>" %>
</h1>
-<pre><%=h Object.const_defined?(:RAILS_ROOT) ? @exception.message.gsub(RAILS_ROOT, "") : @exception.message %></pre>
-
-<% unless app_trace.empty? %><pre><code><%=h app_trace.join("\n") %></code></pre><% end %>
+<pre><%=h @exception.clean_message %></pre>
-<% unless framework_trace.empty? %>
- <a href="#" onclick="document.getElementById('framework_trace').style.display='block'; return false;">Show framework trace</a>
- <pre id="framework_trace" style="display:none"><code><%=h framework_trace.join("\n") %></code></pre>
-<% end %>
+<%= render_file(@rescues_path + "/_trace.rhtml", false) %>
<%= render_file(@rescues_path + "/_request_and_response.rhtml", false) %>