summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 54bd255)
raw | patch | inline | side by side (parent: 54bd255)
author | Luben Tuikov <ltuikov@yahoo.com> | |
Mon, 2 Oct 2006 21:54:53 +0000 (14:54 -0700) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Tue, 3 Oct 2006 08:04:41 +0000 (01:04 -0700) |
Take a look at commit 20a3847d8a5032ce41f90dcc68abfb36e6fee9b1
using gitweb before this patch. This patch fixes this.
Signed-off-by: Luben Tuikov <ltuikov@yahoo.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
using gitweb before this patch. This patch fixes this.
Signed-off-by: Luben Tuikov <ltuikov@yahoo.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
gitweb/gitweb.perl | patch | blob | history |
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl
index 44991b1538316b971884bafa5f8f01f678ec9a71..3e9d4a00524537c2f136bb9e98a19727cf21438a 100755 (executable)
--- a/gitweb/gitweb.perl
+++ b/gitweb/gitweb.perl
$str = decode("utf8", $str, Encode::FB_DEFAULT);
$str = escapeHTML($str);
$str =~ s/\014/^L/g; # escape FORM FEED (FF) character (e.g. in COPYING file)
+ $str =~ s/\033/^[/g; # "escape" ESCAPE (\e) character (e.g. commit 20a3847d8a5032ce41f90dcc68abfb36e6fee9b1)
return $str;
}