提交 495f113e 编写于 作者: J Jeremy Kemper

Template errors: fix strange deprecation warnings on e.g. @flash.inspect,...

Template errors: fix strange deprecation warnings on e.g. @flash.inspect, remove deprecated @assigns, handle sources without a discernable line number, clean up code.

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5543 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
上级 615d05f5
...@@ -6,16 +6,22 @@ class TemplateError < ActionViewError #:nodoc: ...@@ -6,16 +6,22 @@ class TemplateError < ActionViewError #:nodoc:
attr_reader :original_exception attr_reader :original_exception
def initialize(base_path, file_name, assigns, source, original_exception) def initialize(base_path, file_path, assigns, source, original_exception)
@base_path, @assigns, @source, @original_exception = @base_path, @assigns, @source, @original_exception =
base_path, assigns, source, original_exception base_path, assigns.dup, source, original_exception
@file_name = file_name @file_path = file_path
remove_deprecated_assigns!
end end
def message def message
original_exception.message ActiveSupport::Deprecation.silence { original_exception.message }
end
def clean_backtrace
original_exception.clean_backtrace
end end
def sub_template_message def sub_template_message
if @sub_templates if @sub_templates
"Trace of template inclusion: " + "Trace of template inclusion: " +
...@@ -24,63 +30,81 @@ def sub_template_message ...@@ -24,63 +30,81 @@ def sub_template_message
"" ""
end end
end end
def source_extract(indention = 0)
source_code = IO.readlines(@file_name)
start_on_line = [ line_number - SOURCE_CODE_RADIUS - 1, 0 ].max
end_on_line = [ line_number + SOURCE_CODE_RADIUS - 1, source_code.length].min
def source_extract(indentation = 0)
return unless num = line_number
num = num.to_i
source_code = IO.readlines(@file_path)
start_on_line = [ num - SOURCE_CODE_RADIUS - 1, 0 ].max
end_on_line = [ num + SOURCE_CODE_RADIUS - 1, source_code.length].min
indent = ' ' * indentation
line_counter = start_on_line line_counter = start_on_line
extract = source_code[start_on_line..end_on_line].collect do |line|
source_code[start_on_line..end_on_line].sum do |line|
line_counter += 1 line_counter += 1
"#{' ' * indention}#{line_counter}: " + line "#{indent}#{line_counter}: #{line}"
end end
extract.join
end end
def sub_template_of(file_name) def sub_template_of(template_path)
@sub_templates ||= [] @sub_templates ||= []
@sub_templates << file_name @sub_templates << template_path
end end
def line_number def line_number
if file_name @line_number ||=
regexp = /#{Regexp.escape File.basename(file_name)}:(\d+)/ if file_name
[@original_exception.message, @original_exception.clean_backtrace].flatten.each do |line| regexp = /#{Regexp.escape File.basename(file_name)}:(\d+)/
return $1.to_i if regexp =~ line
$1 if message =~ regexp or clean_backtrace.find { |line| line =~ regexp }
end end
end
0
end end
def file_name def file_name
stripped = strip_base_path(@file_name) stripped = strip_base_path(@file_path)
stripped[0] == ?/ ? stripped[1..-1] : stripped stripped.slice!(0,1) if stripped[0] == ?/
stripped
end end
def to_s def to_s
"\n\n#{self.class} (#{message}) on line ##{line_number} of #{file_name}:\n" + "\n\n#{self.class} (#{message}) #{source_location}:\n" +
source_extract + "\n " + "#{source_extract}\n #{clean_backtrace.join("\n ")}\n\n"
original_exception.clean_backtrace.join("\n ") +
"\n\n"
end end
def backtrace def backtrace
[ [
"On line ##{line_number} of #{file_name}\n\n#{source_extract(4)}\n " + "#{source_location.capitalize}\n\n#{source_extract(4)}\n " +
original_exception.clean_backtrace.join("\n ") clean_backtrace.join("\n ")
] ]
end end
private private
def strip_base_path(file_name) def remove_deprecated_assigns!
file_name = File.expand_path(file_name).gsub(/^#{Regexp.escape File.expand_path(RAILS_ROOT)}/, '') ActionController::Base::DEPRECATED_INSTANCE_VARIABLES.each do |ivar|
file_name.gsub(@base_path, "") @assigns.delete(ivar)
end
end
def strip_base_path(path)
File.expand_path(path).
gsub(/^#{Regexp.escape File.expand_path(RAILS_ROOT)}/, '').
gsub(@base_path, "")
end
def source_location
if line_number
"on line ##{line_number} of "
else
'in '
end + file_name
end end
end end
end end
Exception::TraceSubstitutions << [/:in\s+`_run_(html|xml).*'\s*$/, ''] if defined?(Exception::TraceSubstitutions) if defined?(Exception::TraceSubstitutions)
Exception::TraceSubstitutions << [%r{^\s*#{Regexp.escape RAILS_ROOT}}, '#{RAILS_ROOT}'] if defined?(RAILS_ROOT) Exception::TraceSubstitutions << [/:in\s+`_run_(html|xml).*'\s*$/, '']
Exception::TraceSubstitutions << [%r{^\s*#{Regexp.escape RAILS_ROOT}}, '#{RAILS_ROOT}'] if defined?(RAILS_ROOT)
end
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册