Module: Relevance::Tarantula::HtmlReportHelper

Includes:
ERB::Util, Relevance::Tarantula
Included in:
Result
Defined in:
lib/relevance/tarantula/html_report_helper.rb

Constant Summary

Constants included from Relevance::Tarantula

VERSION

Instance Method Summary collapse

Methods included from Relevance::Tarantula

#log, #rails_root, #tarantula_home, #verbose

Instance Method Details

#textmate_url(file, line_no) ⇒ Object



29
30
31
# File 'lib/relevance/tarantula/html_report_helper.rb', line 29

def textmate_url(file, line_no)
  "txmt://open?url=file://#{File.expand_path(File.join(rails_root,file))}&line_no=#{line_no}"
end

#wrap_in_line_number_table_row(text, &blk) ⇒ Object



9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# File 'lib/relevance/tarantula/html_report_helper.rb', line 9

def wrap_in_line_number_table_row(text, &blk)
  x = Builder::XmlMarkup.new

  x.tr do
    lines = text.split("\n")
    x.td(:class => "numbers") do
      lines.size.times do |index|
        x.span(index+1, :class => "line number")
      end
    end
    x.td(:class => "lines") do
      lines.each do |line|
        x.span(line, :class => "line")
      end
    end
  end

  x.target!
end

#wrap_stack_trace_line(text) ⇒ Object



33
34
35
36
37
38
39
40
41
42
# File 'lib/relevance/tarantula/html_report_helper.rb', line 33

def wrap_stack_trace_line(text)
  if text =~ %r{^\s*(/[^:]+):(\d+):([^:]+)$}
    file = h($1) # .to_s_xss_protected
    line_number = $2
    message = h($3) # .to_s_xss_protected
    "<a href='#{textmate_url(file, line_number)}'>#{file}:#{line_number}</a>:#{message}" # .mark_as_xss_protected
  else
    h(text) # .to_s_xss_protected
  end
end