From: Luben Tuikov Date: Sat, 1 Jul 2006 02:11:18 +0000 (-0700) Subject: gitweb: Enable tree (directory) history display X-Git-Tag: v1.4.2-rc1~78^2~4 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=e0becd944578ed2a38742911dff75fa7774059e5;p=git.git gitweb: Enable tree (directory) history display This patch allows history display of whole trees/directories a la "git-rev-list HEAD -- ". 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 Signed-off-by: Junio C Hamano --- 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 { "\n" . "" . $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") . "\n"; } print "\n";