aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--actionpack/lib/action_controller/rescue.rb4
-rw-r--r--actionpack/lib/action_controller/templates/rescues/_request_and_response.rhtml19
2 files changed, 12 insertions, 11 deletions
diff --git a/actionpack/lib/action_controller/rescue.rb b/actionpack/lib/action_controller/rescue.rb
index 0fe96479f4..2ee320a304 100644
--- a/actionpack/lib/action_controller/rescue.rb
+++ b/actionpack/lib/action_controller/rescue.rb
@@ -77,8 +77,8 @@ module ActionController #:nodoc:
def perform_action_with_rescue #:nodoc:
begin
perform_action_without_rescue
- rescue => exception
- if defined?(Breakpoint) and @params["BP-RETRY"] then
+ rescue Object => exception
+ if defined?(Breakpoint) && @params["BP-RETRY"]
msg = exception.backtrace.first
if md = /^(.+?):(\d+)(?::in `(.+)')?$/.match(msg) then
origin_file, origin_line = md[1], md[2].to_i
diff --git a/actionpack/lib/action_controller/templates/rescues/_request_and_response.rhtml b/actionpack/lib/action_controller/templates/rescues/_request_and_response.rhtml
index 23e622a47a..5f10d91098 100644
--- a/actionpack/lib/action_controller/templates/rescues/_request_and_response.rhtml
+++ b/actionpack/lib/action_controller/templates/rescues/_request_and_response.rhtml
@@ -7,18 +7,19 @@
<% if defined?(Breakpoint) %>
<br /><br />
- <% begin %><%= form_tag({:params => {}, :only_path => true}, "method" => @request.method) %>
- <input type="hidden" name="BP-RETRY" value="1" />
+ <% begin %>
+ <%= form_tag(@request.request_uri, "method" => @request.method) %>
+ <input type="hidden" name="BP-RETRY" value="1" />
- <% for key, values in @params %>
- <% next if key == "BP-RETRY" %>
- <% for value in Array(values) %>
- <input type="hidden" name="<%= key %>" value="<%= value %>" />
+ <% for key, values in @params %>
+ <% next if key == "BP-RETRY" %>
+ <% for value in Array(values) %>
+ <input type="hidden" name="<%= key %>" value="<%= value %>" />
+ <% end %>
<% end %>
- <% end %>
- <input type="submit" value="Retry with Breakpoint" />
- </form>
+ <input type="submit" value="Retry with Breakpoint" />
+ </form>
<% rescue Exception => e %>
<%=h "Couldn't render breakpoint link due to #{e.class} #{e.message}" %>
<% end %>