1 <h1
>Summary
for <?php
echo $page['project']; ?
></h1
>
5 <table
class="shortlog">
8 <th
class="date">Date
</th
>
9 <th
class="author">Author
</th
>
10 <th
class="message">Message
</th
>
11 <th
class="actions">Actions
</th
>
16 foreach ($page['shortlog'] as $l) {
18 echo "\t<td>$l[date]</td>\n";
19 echo "\t<td>$l[author]</td>\n";
20 echo "\t<td><a href=\"". makelink(array('a' => 'commit', 'p' => $page['project'], 'h' => $l['commit_id'])) ."\">$l[message]</a></td>\n";
33 <th
class="date">Date
</th
>
34 <th
class="branch">Branch
</th
>
35 <th
class="actions">Actions
</th
>
40 foreach ($page['heads'] as $h) {
42 echo "\t<td>$h[date]</td>\n";
43 echo "\t<td><a href=\"". makelink(array('a' => 'shortlog', 'p' => $page['project'], 'h' => $h['fullname'])) ."\">$h[name]</a></td>\n";