1 <h1
><?php
echo htmlentities_wrapper($page['message_firstline']); ?
></h1
>
3 <table
class="commit" id
="commit">
7 <td
><?php
echo format_author($page['author_name']); ?
> <
;<?php
echo htmlentities_wrapper($page['author_mail']); ?
>>
;</td
>
11 <td
><?php
echo $page['author_datetime']; ?
></td
>
14 <td
>Author local date
</td
>
15 <td
><?php
echo $page['author_datetime_local']; ?
></td
>
19 <td
><?php
echo format_author($page['committer_name']); ?
> <
;<?php
echo htmlentities_wrapper($page['committer_mail']); ?
>>
;</td
>
22 <td
>Committer date
</td
>
23 <td
><?php
echo $page['committer_datetime']; ?
></td
>
26 <td
>Committer local date
</td
>
27 <td
><?php
echo $page['committer_datetime_local']; ?
></td
>
31 <td
><?php
echo $page['commit_id']; ?
></td
>
35 <td
><a href
="<?php echo makelink(array('a' => 'tree', 'p' => $page['project'], 'h' => $page['tree_id'], 'hb' => $page['commit_id'])); ?>"><?php
echo $page['tree_id']; ?
></a
></td
>
38 foreach ($page['parents'] as $parent) {
40 echo "\t<td>Parent</td>\n";
41 echo "\t<td><a href=\"". makelink(array('a' => 'commit', 'p' => $page['project'], 'h' => $parent)) ."\">$parent</a></td>\n";
48 <div
class="commitmessage"><pre
><?php
echo htmlentities_wrapper($page['message_full']); ?
></pre
></div
>
50 <div
class="filelist">
51 <table id
="commit_filelist">
54 <th colspan
="2">Affected files
:</th
>
60 foreach ($page['affected_files'] as $details) {
62 echo "<a href=\"" . makelink(array('a' => 'viewblob', 'p' => $page['project'], 'h' => $details['hash'], 'hb' => $page['commit_id'], 'f' => $details['name'])) . "\">$details[name]</a>";
63 echo "</td><td></td></tr>";