Sha256: 7f41eaec2ae6bd519a9bf144ca951f84936277ec760913cc90a521becf3f5011

Contents?: true

Size: 1.98 KB

Versions: 29

Compression:

Stored size: 1.98 KB

Contents

<link rel="stylesheet" href="/css/ramaze_error.css" />
<script type="text/javascript" src="/js/jquery.js"></script>

<p>The backtrace gives filenames and line numbers for all parts of the call stack.<br />
Click on any of them to view the surrounding source code.</p>

<h3>#@title</h3>

<table class="main">
  <tr class="head">
    <td>File</td><td>Line</td><td>Method</td>
  </tr>
  <?r @backtrace.each do |lines, hash, file, lineno, meth| ?>
    <tr class="line" id="#{hash}">
      <td>#{file}</td><td class="lineno">#{lineno}</td><td><pre>#{meth}</pre></td>
    </tr>
    <tr id="source_#{hash}" style="display:none;">
      <td colspan="3">
        <div class="source">
          <table style="width:100%;">
            <tr>
              <td class="editor" colspan="2">
                #{@editor} #{file} +#{lineno}
                <div style="float: right">
                  <a href="txmt://open?url=file://#{file}&line=#{lineno}">open in textmate</a>
                </div>
              </td>
            </tr>
            <?r lines.each do |llineno, lcode, lcurrent| ?>
              <tr class="source" #{'style="background:#faa;"' if lcurrent}>
                <td class="lineno">#{llineno}</td>
                <td class="code"><pre>#{lcode.to_s.rstrip}</pre></td>
              </tr>
            <?r end ?>
          </table>
        </div>
      </td>
    </tr>
  <?r end ?>
</table>

<?r
  { 'Session'   => Thread.current[:session],
    'Request'   => Thread.current[:request],
    'Response'  => Thread.current[:response],
    'Global'    => Global,
  }.each do |title, content|
    hash = [title, content].object_id.abs
  ?>
  <div class="additional">
    <h3 id="#{hash}">#{title}</h3>
    <pre style="display:none" id="is_#{hash}">#{CGI.escapeHTML(content.pretty_inspect)}</pre>
  </div>
<?r end ?>

<script type="text/javascript">
  $("tr.line").click(function(){
    $("tr#source_"+this.id).toggle()
  });

  $("div.additional > h3").click(function(){
    $("pre#is_"+this.id).toggle()
  });
</script>

Version data entries

29 entries across 29 versions & 5 rubygems

Version Path
clivecrous-ramaze-0.3.9.5 lib/proto/view/error.xhtml
gettalong-webgen-0.5.4.20080929 data/webgen/webgui/view/error.xhtml
gettalong-webgen-0.5.5.20081001 data/webgen/webgui/view/error.xhtml
gettalong-webgen-0.5.5.20081010 data/webgen/webgui/view/error.xhtml
gettalong-webgen-0.5.5.20081012 data/webgen/webgui/view/error.xhtml
gettalong-webgen-0.5.6.20081020 data/webgen/webgui/view/error.xhtml
gettalong-webgen-0.5.7.20090227 data/webgen/webgui/view/error.xhtml
gettalong-webgen-0.5.8.20090507 data/webgen/webgui/view/error.xhtml
gettalong-webgen-0.5.9.20090620 data/webgen/webgui/view/error.xhtml
gettalong-webgen-0.5.9.20090626 data/webgen/webgui/view/error.xhtml
thewoolleyman-webgen-0.5.8.20090419 data/webgen/webgui/view/error.xhtml
webgen-0.5.17 data/webgen/webgui/view/error.xhtml
webgen-0.5.15 data/webgen/webgui/view/error.xhtml
webgen-0.5.14 data/webgen/webgui/view/error.xhtml
webgen-0.5.13 data/webgen/webgui/view/error.xhtml
webgen-0.5.12 data/webgen/webgui/view/error.xhtml
webgen-0.5.11 data/webgen/webgui/view/error.xhtml
webgen-0.5.10 data/webgen/webgui/view/error.xhtml
webgen-0.5.9 data/webgen/webgui/view/error.xhtml
ramaze-0.3.9.1 lib/proto/view/error.xhtml