Skip to content

Commit

Permalink
Git 1.7.1.4
Browse files Browse the repository at this point in the history
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
gitster committed Dec 15, 2010
2 parents bd01c6d + cb198b3 commit 9db41eb
Show file tree
Hide file tree
Showing 8 changed files with 104 additions and 19 deletions.
20 changes: 20 additions & 0 deletions Documentation/RelNotes/1.6.4.5.txt
@@ -0,0 +1,20 @@
Git v1.6.4.5 Release Notes
==========================

Fixes since v1.6.4.4
--------------------

* Simplified base85 implementation.

* An overlong line after ".gitdir: " in a git file caused out of bounds
access to an array on the stack.

* "git count-objects" did not handle packs larger than 4G.

* "git rev-parse --parseopt --stop-at-non-option" did not stop at non option
when --keep-dashdash was in effect.

* "gitweb" can sometimes be tricked into parrotting a filename argument
given in a request without properly quoting.

Other minor fixes and documentation updates are included.
18 changes: 18 additions & 0 deletions Documentation/RelNotes/1.6.5.9.txt
@@ -0,0 +1,18 @@
Git v1.6.5.9 Release Notes
==========================

Fixes since v1.6.5.8
--------------------

* An overlong line after ".gitdir: " in a git file caused out of bounds
access to an array on the stack.

* "git blame -L $start,$end" segfaulted when too large $start was given.

* "git rev-parse --parseopt --stop-at-non-option" did not stop at non option
when --keep-dashdash was in effect.

* "gitweb" can sometimes be tricked into parrotting a filename argument
given in a request without properly quoting.

Other minor fixes and documentation updates are included.
23 changes: 23 additions & 0 deletions Documentation/RelNotes/1.6.6.3.txt
@@ -0,0 +1,23 @@
Git v1.6.6.3 Release Notes
==========================

Fixes since v1.6.6.2
--------------------

* An overlong line after ".gitdir: " in a git file caused out of bounds
access to an array on the stack.

* "git bisect $path" did not correctly diagnose an error when given a
non-existent path.

* "git blame -L $start,$end" segfaulted when too large $start was given.

* "git imap-send" did not write draft box with CRLF line endings per RFC.

* "git rev-parse --parseopt --stop-at-non-option" did not stop at non option
when --keep-dashdash was in effect.

* "gitweb" can sometimes be tricked into parrotting a filename argument
given in a request without properly quoting.

Other minor fixes and documentation updates are included.
8 changes: 8 additions & 0 deletions Documentation/RelNotes/1.7.0.9.txt
@@ -0,0 +1,8 @@
Git v1.7.0.9 Release Notes
==========================

Fixes since v1.7.0.8
--------------------

* "gitweb" can sometimes be tricked into parrotting a filename argument
given in a request without properly quoting.
8 changes: 8 additions & 0 deletions Documentation/RelNotes/1.7.1.4.txt
@@ -0,0 +1,8 @@
Git v1.7.1.4 Release Notes
==========================

Fixes since v1.7.1.3
--------------------

* "gitweb" can sometimes be tricked into parrotting a filename argument
given in a request without properly quoting.
2 changes: 1 addition & 1 deletion GIT-VERSION-GEN
@@ -1,7 +1,7 @@
#!/bin/sh #!/bin/sh


GVF=GIT-VERSION-FILE GVF=GIT-VERSION-FILE
DEF_VER=v1.7.1.3 DEF_VER=v1.7.1.4


LF=' LF='
' '
Expand Down
2 changes: 1 addition & 1 deletion RelNotes
42 changes: 25 additions & 17 deletions gitweb/gitweb.perl
Expand Up @@ -1178,6 +1178,13 @@ sub esc_url {
return $str; return $str;
} }


# quote unsafe characters in HTML attributes
sub esc_attr {

# for XHTML conformance escaping '"' to '&quot;' is not enough
return esc_html(@_);
}

# replace invalid utf8 character with SUBSTITUTION sequence # replace invalid utf8 character with SUBSTITUTION sequence
sub esc_html { sub esc_html {
my $str = shift; my $str = shift;
Expand Down Expand Up @@ -1583,7 +1590,7 @@ sub format_ref_marker {
hash=>$dest hash=>$dest
)}, $name); )}, $name);


$markers .= " <span class=\"$class\" title=\"$ref\">" . $markers .= " <span class=\"".esc_attr($class)."\" title=\"".esc_attr($ref)."\">" .
$link . "</span>"; $link . "</span>";
} }
} }
Expand Down Expand Up @@ -1667,7 +1674,7 @@ sub git_get_avatar {
return $pre_white . return $pre_white .
"<img width=\"$size\" " . "<img width=\"$size\" " .
"class=\"avatar\" " . "class=\"avatar\" " .
"src=\"$url\" " . "src=\"".esc_url($url)."\" " .
"alt=\"\" " . "alt=\"\" " .
"/>" . $post_white; "/>" . $post_white;
} else { } else {
Expand Down Expand Up @@ -2378,7 +2385,7 @@ sub git_show_project_tagcloud {
} else { } else {
my @tags = sort { $cloud->{$a}->{count} <=> $cloud->{$b}->{count} } keys %$cloud; my @tags = sort { $cloud->{$a}->{count} <=> $cloud->{$b}->{count} } keys %$cloud;
return '<p align="center">' . join (', ', map { return '<p align="center">' . join (', ', map {
"<a href=\"$home_link?by_tag=$_\">$cloud->{$_}->{topname}</a>" $cgi->a({-href=>"$home_link?by_tag=$_"}, $cloud->{$_}->{topname})
} splice(@tags, 0, $count)) . '</p>'; } splice(@tags, 0, $count)) . '</p>';
} }
} }
Expand Down Expand Up @@ -3209,11 +3216,11 @@ sub git_header_html {
# print out each stylesheet that exist, providing backwards capability # print out each stylesheet that exist, providing backwards capability
# for those people who defined $stylesheet in a config file # for those people who defined $stylesheet in a config file
if (defined $stylesheet) { if (defined $stylesheet) {
print '<link rel="stylesheet" type="text/css" href="'.$stylesheet.'"/>'."\n"; print '<link rel="stylesheet" type="text/css" href="'.esc_url($stylesheet).'"/>'."\n";
} else { } else {
foreach my $stylesheet (@stylesheets) { foreach my $stylesheet (@stylesheets) {
next unless $stylesheet; next unless $stylesheet;
print '<link rel="stylesheet" type="text/css" href="'.$stylesheet.'"/>'."\n"; print '<link rel="stylesheet" type="text/css" href="'.esc_url($stylesheet).'"/>'."\n";
} }
} }
if (defined $project) { if (defined $project) {
Expand All @@ -3226,7 +3233,7 @@ sub git_header_html {
my $type = lc($format); my $type = lc($format);
my %link_attr = ( my %link_attr = (
'-rel' => 'alternate', '-rel' => 'alternate',
'-title' => "$project - $href_params{'-title'} - $format feed", '-title' => esc_attr("$project - $href_params{'-title'} - $format feed"),
'-type' => "application/$type+xml" '-type' => "application/$type+xml"
); );


Expand All @@ -3253,13 +3260,13 @@ sub git_header_html {
} else { } else {
printf('<link rel="alternate" title="%s projects list" '. printf('<link rel="alternate" title="%s projects list" '.
'href="%s" type="text/plain; charset=utf-8" />'."\n", 'href="%s" type="text/plain; charset=utf-8" />'."\n",
$site_name, href(project=>undef, action=>"project_index")); esc_attr($site_name), href(project=>undef, action=>"project_index"));
printf('<link rel="alternate" title="%s projects feeds" '. printf('<link rel="alternate" title="%s projects feeds" '.
'href="%s" type="text/x-opml" />'."\n", 'href="%s" type="text/x-opml" />'."\n",
$site_name, href(project=>undef, action=>"opml")); esc_attr($site_name), href(project=>undef, action=>"opml"));
} }
if (defined $favicon) { if (defined $favicon) {
print qq(<link rel="shortcut icon" href="$favicon" type="image/png" />\n); print qq(<link rel="shortcut icon" href=").esc_url($favicon).qq(" type="image/png" />\n);
} }


print "</head>\n" . print "</head>\n" .
Expand All @@ -3272,7 +3279,7 @@ sub git_header_html {
print "<div class=\"page_header\">\n" . print "<div class=\"page_header\">\n" .
$cgi->a({-href => esc_url($logo_url), $cgi->a({-href => esc_url($logo_url),
-title => $logo_label}, -title => $logo_label},
qq(<img src="$logo" width="72" height="27" alt="git" class="logo"/>)); qq(<img src=").esc_url($logo).qq(" width="72" height="27" alt="git" class="logo"/>));
print $cgi->a({-href => esc_url($home_link)}, $home_link_str) . " / "; print $cgi->a({-href => esc_url($home_link)}, $home_link_str) . " / ";
if (defined $project) { if (defined $project) {
print $cgi->a({-href => href(action=>"summary")}, esc_html($project)); print $cgi->a({-href => href(action=>"summary")}, esc_html($project));
Expand Down Expand Up @@ -3370,7 +3377,7 @@ sub git_footer_html {
insert_file($site_footer); insert_file($site_footer);
} }


print qq!<script type="text/javascript" src="$javascript"></script>\n!; print qq!<script type="text/javascript" src="!.esc_url($javascript).qq!"></script>\n!;
if (defined $action && if (defined $action &&
$action eq 'blame_incremental') { $action eq 'blame_incremental') {
print qq!<script type="text/javascript">\n!. print qq!<script type="text/javascript">\n!.
Expand Down Expand Up @@ -5382,14 +5389,14 @@ sub git_blob {
} else { } else {
print "<div class=\"page_nav\">\n" . print "<div class=\"page_nav\">\n" .
"<br/><br/></div>\n" . "<br/><br/></div>\n" .
"<div class=\"title\">$hash</div>\n"; "<div class=\"title\">".esc_html($hash)."</div>\n";
} }
git_print_page_path($file_name, "blob", $hash_base); git_print_page_path($file_name, "blob", $hash_base);
print "<div class=\"page_body\">\n"; print "<div class=\"page_body\">\n";
if ($mimetype =~ m!^image/!) { if ($mimetype =~ m!^image/!) {
print qq!<img type="$mimetype"!; print qq!<img type="!.esc_attr($mimetype).qq!"!;
if ($file_name) { if ($file_name) {
print qq! alt="$file_name" title="$file_name"!; print qq! alt="!.esc_attr($file_name).qq!" title="!.esc_attr($file_name).qq!"!;
} }
print qq! src="! . print qq! src="! .
href(action=>"blob_plain", hash=>$hash, href(action=>"blob_plain", hash=>$hash,
Expand All @@ -5401,7 +5408,8 @@ sub git_blob {
chomp $line; chomp $line;
$nr++; $nr++;
$line = untabify($line); $line = untabify($line);
printf "<div class=\"pre\"><a id=\"l%i\" href=\"" . href(-replay => 1) printf "<div class=\"pre\"><a id=\"l%i\" href=\""
. esc_attr(href(-replay => 1))
. "#l%i\" class=\"linenr\">%4i</a> %s</div>\n", . "#l%i\" class=\"linenr\">%4i</a> %s</div>\n",
$nr, $nr, $nr, esc_html($line, -nbsp=>1); $nr, $nr, $nr, esc_html($line, -nbsp=>1);
} }
Expand Down Expand Up @@ -5465,7 +5473,7 @@ sub git_tree {
undef $hash_base; undef $hash_base;
print "<div class=\"page_nav\">\n"; print "<div class=\"page_nav\">\n";
print "<br/><br/></div>\n"; print "<br/><br/></div>\n";
print "<div class=\"title\">$hash</div>\n"; print "<div class=\"title\">".esc_html($hash)."</div>\n";
} }
if (defined $file_name) { if (defined $file_name) {
$basedir = $file_name; $basedir = $file_name;
Expand Down Expand Up @@ -5933,7 +5941,7 @@ sub git_blobdiff {
git_print_header_div('commit', esc_html($co{'title'}), $hash_base); git_print_header_div('commit', esc_html($co{'title'}), $hash_base);
} else { } else {
print "<div class=\"page_nav\"><br/>$formats_nav<br/></div>\n"; print "<div class=\"page_nav\"><br/>$formats_nav<br/></div>\n";
print "<div class=\"title\">$hash vs $hash_parent</div>\n"; print "<div class=\"title\">".esc_html("$hash vs $hash_parent")."</div>\n";
} }
if (defined $file_name) { if (defined $file_name) {
git_print_page_path($file_name, "blob", $hash_base); git_print_page_path($file_name, "blob", $hash_base);
Expand Down

0 comments on commit 9db41eb

Please sign in to comment.