gitweb: extend blame to show links to diff and previous
commit65910395c08e3dc4be685a9a9f60adfa61c89aa5
authorLuben Tuikov <ltuikov@yahoo.com>
Tue, 26 Sep 2006 23:45:31 +0000 (26 16:45 -0700)
committerJunio C Hamano <junkio@cox.net>
Wed, 27 Sep 2006 07:10:17 +0000 (27 00:10 -0700)
tree22d60114ceaf9a6a8871eb7946d4557c4358663c
parent0fa105e7f140fc381ea3cbb776465aacefa22265
gitweb: extend blame to show links to diff and previous

git_blame2() now has two more columns, "Prev" and "Diff",
before the "Commit" column, as follows:

Prev Diff Commit Line Data
SHA     Diff    SHA        N    ...
...

The "Prev" column shows the SHA of the parent commit,
between which this line changed.  Clicking on it shows the
blame of the file as of the parent commit, for that line.

So clicking repeatedly on "Prev" would show you the blame
of that file, from the point of view of the changes
of that particular line whose "Prev" you're clicking on.

The "Diff" column shows "Diff" which is a link to blobdiff
between "Prev" and "Commit" commits _for that line_.

So clicking on "Diff" would show you the blobdiff (HTML)
between the parent commit and this commit which changed
that particular line.

Signed-off-by: Luben Tuikov <ltuikov@yahoo.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
gitweb/gitweb.perl