For consistency, it probably makes sense to include the
extra link to each of the parent commits for the user
to follow.
next if $seen{$p};
$seen{$p} = ++$np;
my $s = git_commit_title($git, $p);
+ $m .= qq(\n<a\nhref="?h=$p$showmsg">$p</a>\t);
$s = defined($s) ? utf8_html($s) : '';
- $m .= qq(\n<a\nhref="?h=$p$showmsg">$p</a>\t$s);
+ $m .= qq(<a\nhref="${rel}commit?id=$p">$s</a>);
}
my $foot = $showmsg ? "<pre>\t\t$x\n\n" : "\n\t\t$x\n\n";
if ($np == 0) {
} elsif ($np > 1) {
$foot .= "Parent commits to follow (multiple choice):\n";
} else {
- $foot .= "Next parent:\n";
+ $foot .= "Next parent to follow:\n";
}
$fh->write($foot .= $m . '</pre></body></html>');
}