\n";
echo "\t$l[date] | \n";
echo "\t". format_author($l['author']) ." | \n";
echo "\t 'commit', 'p' => $page['project'], 'h' => $l['commit_id'])) ."\">". htmlentities_wrapper($l['message']) ."";
if (count($l['refs']) > 0) {
foreach ($l['refs'] as $ref) {
$parts = explode('/', $ref);
$shortref = join('/', array_slice($parts, 1));
$type = 'head';
if ($parts[0] == 'tags') { $type = 'tag'; }
elseif ($parts[0] == 'remotes') { $type = 'remote'; }
echo "" . htmlentities_wrapper($shortref) . "";
}
}
echo " | \n";
echo "\t";
echo " 'commitdiff', 'p' => $page['project'], 'h' => $l['commit_id'])) ."\" class=\"cdiff_link\" title=\"Commit Diff\">commitdiff";
echo " 'tree', 'p' => $page['project'], 'h' => $l['tree'], 'hb' => $l['commit_id'])) ."\" class=\"tree_link\" title=\"Tree\">tree";
echo " 'archive', 'p' => $page['project'], 'h' => $l['tree'], 'hb' => $l['commit_id'], 't' => 'targz')) ."\" rel=\"nofollow\" class=\"tar_link\" title=\"tar/gz\">tar/gz";
echo " 'archive', 'p' => $page['project'], 'h' => $l['tree'], 'hb' => $l['commit_id'], 't' => 'zip')) ."\" rel=\"nofollow\" class=\"zip_link\" title=\"zip\">zip";
echo " 'patch', 'p' => $page['project'], 'h' => $l['commit_id'])) ."\" class=\"patch_link\" title=\"Patch\">patch";
echo " | \n";
echo "\n";
$page['lasthash'] = $l['commit_id'];
}
?>