diff options
author | Luben Tuikov <ltuikov@yahoo.com> | 2006-06-30 19:11:18 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-07-01 18:29:25 -0700 |
commit | e0becd944578ed2a38742911dff75fa7774059e5 (patch) | |
tree | 8b9cb7ab0513479e54da623155903c52152c288e | |
parent | b00d7079ce000afe8803b6e88a7ab0f09942462d (diff) | |
download | git-e0becd944578ed2a38742911dff75fa7774059e5.tar.gz git-e0becd944578ed2a38742911dff75fa7774059e5.tar.xz |
gitweb: Enable tree (directory) history display
This patch allows history display of whole trees/directories a la
"git-rev-list HEAD -- <dir or file>". I find this useful especially
when a project lives in its own subdirectory, as opposed to being all
of the GIT repository (i.e. when a sub-project is merged into a
super-project).
Signed-off-by: Luben Tuikov <ltuikov@yahoo.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
-rwxr-xr-x | gitweb/gitweb.cgi | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gitweb/gitweb.cgi b/gitweb/gitweb.cgi index 100774215..efffc8d07 100755 --- a/gitweb/gitweb.cgi +++ b/gitweb/gitweb.cgi @@ -1676,6 +1676,7 @@ sub git_tree { "</td>\n" . "<td class=\"link\">" . $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=tree;h=$t_hash$base_key;f=$base$t_name")}, "tree") . + " | " . $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=history;h=$hash_base;f=$base$t_name")}, "history") . "</td>\n"; } print "</tr>\n"; |