summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 76e4f5d)
raw | patch | inline | side by side (parent: 76e4f5d)
author | Matt McCutchen <hashproduct@gmail.com> | |
Thu, 28 Jun 2007 18:57:07 +0000 (14:57 -0400) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Sat, 7 Jul 2007 21:18:29 +0000 (14:18 -0700) |
The search form generated traditional-style URLs with a "p=" parameter
even when the pathinfo feature was on. This patch makes it generate
pathinfo-style URLs when appropriate.
Signed-off-by: Matt McCutchen <hashproduct@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
even when the pathinfo feature was on. This patch makes it generate
pathinfo-style URLs when appropriate.
Signed-off-by: Matt McCutchen <hashproduct@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
gitweb/gitweb.perl | patch | blob | history |
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl
index 9d728d7738427dab3081d17e19613b6a690da8eb..4eb7832b4ae33dbb908d39050637b82aa6381e69 100755 (executable)
--- a/gitweb/gitweb.perl
+++ b/gitweb/gitweb.perl
} else {
$search_hash = "HEAD";
}
+ my $action = $my_uri;
+ my ($use_pathinfo) = gitweb_check_feature('pathinfo');
+ if ($use_pathinfo) {
+ $action .= "/$project";
+ } else {
+ $cgi->param("p", $project);
+ }
$cgi->param("a", "search");
$cgi->param("h", $search_hash);
- $cgi->param("p", $project);
- print $cgi->startform(-method => "get", -action => $my_uri) .
+ print $cgi->startform(-method => "get", -action => $action) .
"<div class=\"search\">\n" .
- $cgi->hidden(-name => "p") . "\n" .
+ (!$use_pathinfo && $cgi->hidden(-name => "p") . "\n") .
$cgi->hidden(-name => "a") . "\n" .
$cgi->hidden(-name => "h") . "\n" .
$cgi->popup_menu(-name => 'st', -default => 'commit',