Skip to content

Commit

Permalink
gitweb: whitespace cleanup around '='
Browse files Browse the repository at this point in the history
Signed-off-by: Jakub Narebski <jnareb@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
  • Loading branch information
Jakub Narebski authored and Junio C Hamano committed Jun 22, 2006
1 parent 4c5c202 commit 8adc4bd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions gitweb/gitweb.cgi
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ EOF
} elsif (defined $hash) {
$search_hash = $hash;
} else {
$search_hash = "HEAD";
$search_hash = "HEAD";
}
$cgi->param("a", "search");
$cgi->param("h", $search_hash);
Expand Down Expand Up @@ -1767,8 +1767,8 @@ sub git_opml {
}

my $path = esc_html(chop_str($proj{'path'}, 25, 5));
my $rss = "$my_url?p=$proj{'path'};a=rss";
my $html = "$my_url?p=$proj{'path'};a=summary";
my $rss = "$my_url?p=$proj{'path'};a=rss";
my $html = "$my_url?p=$proj{'path'};a=summary";
print "<outline type=\"rss\" text=\"$path\" title=\"$path\" xmlUrl=\"$rss\" htmlUrl=\"$html\"/>\n";
}
print "</outline>\n".
Expand Down Expand Up @@ -1943,7 +1943,7 @@ sub git_commit {
"<td class=\"link\">" . $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=tree;h=$co{'tree'};hb=$hash")}, "tree") .
"</td>" .
"</tr>\n";
my $parents = $co{'parents'};
my $parents = $co{'parents'};
foreach my $par (@$parents) {
print "<tr>" .
"<td>parent</td>" .
Expand Down

0 comments on commit 8adc4bd

Please sign in to comment.