--- a/templates/report/backtrace/frames.html.ep Wed May 02 21:43:53 2012 +0200
+++ b/templates/report/backtrace/frames.html.ep Wed May 02 21:46:30 2012 +0200
@@ -3,7 +3,7 @@
<tr>
<th>Frame</th>
<th>Module</th>
- <th>Signature</th>
+ <th class="signature-column">Signature</th>
<th>Source</th>
</tr>
</thead>
@@ -11,8 +11,8 @@
<tr>
%= t td => $frame->{frame}
%= t td => $frame->{module}
- %= t td => $frame->{function}
- %= t td => (File::Spec->splitpath($frame->{file}))[-1]
+ <td><%= shorten_signature $frame->{function} =%></td>
+ <td><%= scm_file_link($frame->{file}, $frame->{line}) =%></td>
</tr>
% }
% end