| author | Vincent Tondellier <tonton+hg@team1664.org> |
| Wed, 02 May 2012 21:46:30 +0200 | |
| changeset 3 | 2ff78fe4abda |
| parent 0 | 5b78b8c79d9c |
| child 37 | 013953be0f3b |
| permissions | -rw-r--r-- |
| 0 | 1 |
%= t table => (class => 'table table-striped table-bordered table-condensed') => begin |
2 |
<thead> |
|
3 |
<tr> |
|
4 |
<th>Frame</th> |
|
5 |
<th>Module</th> |
|
|
3
2ff78fe4abda
Create helper to shorten signatures and create links to the repository
Vincent Tondellier <tonton+hg@team1664.org>
parents:
0
diff
changeset
|
6 |
<th class="signature-column">Signature</th> |
| 0 | 7 |
<th>Source</th> |
8 |
</tr> |
|
9 |
</thead> |
|
10 |
% foreach my $frame(@$frames) {
|
|
11 |
<tr> |
|
12 |
%= t td => $frame->{frame}
|
|
13 |
%= t td => $frame->{module}
|
|
|
3
2ff78fe4abda
Create helper to shorten signatures and create links to the repository
Vincent Tondellier <tonton+hg@team1664.org>
parents:
0
diff
changeset
|
14 |
<td><%= shorten_signature $frame->{function} =%></td>
|
|
2ff78fe4abda
Create helper to shorten signatures and create links to the repository
Vincent Tondellier <tonton+hg@team1664.org>
parents:
0
diff
changeset
|
15 |
<td><%= scm_file_link($frame->{file}, $frame->{line}) =%></td>
|
| 0 | 16 |
</tr> |
17 |
% } |
|
18 |
% end |