Add an e-mail hyperlink for the author of each commit.

Approved By:	fenner
This commit is contained in:
Bill Fumerola 1999-06-01 15:23:51 +00:00
parent 1bcba495f3
commit 5da6fa1886
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/www/; revision=5008

View file

@ -28,7 +28,7 @@
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE. # SUCH DAMAGE.
# #
# $Id: cvsweb.cgi,v 1.30 1999-04-17 16:57:56 wosch Exp $ # $Id: cvsweb.cgi,v 1.31 1999-06-01 15:23:51 billf Exp $
# #
@ -725,7 +725,7 @@ sub dolog {
print " <i>(vendor branch)</i>"; print " <i>(vendor branch)</i>";
} }
print " <i>" . &ctime($date{$_}) . " UTC</i> by "; print " <i>" . &ctime($date{$_}) . " UTC</i> by ";
print "<i>" . $author{$_} . "</i>\n"; print "<i><a href=\"mailto:" . $author{$_} . "\@FreeBSD.org\">" . $author{$_} . "</a></i>\n";
if ($revsym{$_}) { if ($revsym{$_}) {
print "<BR>CVS Tags: <b>$revsym{$_}</b>"; print "<BR>CVS Tags: <b>$revsym{$_}</b>";
} }