From: Jakub Narebski Date: Wed, 8 Nov 2006 10:50:07 +0000 (+0100) Subject: gitweb: Use character or octal escape codes (and add span.cntrl) in esc_path X-Git-Tag: v1.4.4-rc2~16 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/1d3bc0cc0aaa056ae07a08bccc056e62d42046e8?hp=1d3bc0cc0aaa056ae07a08bccc056e62d42046e8 gitweb: Use character or octal escape codes (and add span.cntrl) in esc_path Instead of simply hiding control characters in esc_path by replacing them with '?', use Character Escape Codes (CEC) i.e. alphabetic backslash sequences like those found in C programming language and many other languages influenced by it, such as Java and Perl. If control characted doesn't have corresponding character escape code, use octal char sequence to escape it. Alternatively, controls can be replaced with Unicode Control Pictures U+2400 - U+243F (9216 - 9279), the Unicode characters reserved for representing control characters when it is necessary to print or display them. Signed-off-by: Jakub Narebski Signed-off-by: Junio C Hamano ---