summaryrefslogtreecommitdiff
path: root/t/t5515
diff options
context:
space:
mode:
authorJakub Narebski <jnareb@gmail.com>2007-03-07 02:21:25 +0100
committerJunio C Hamano <junkio@cox.net>2007-03-06 19:04:07 -0800
commitedc04e90f5a79b7805f1188ca94f06ef7eed81f5 (patch)
tree144fc67e98628e97eb2adad5436ddf0ea4329af3 /t/t5515
parentc390ae97beb9e8cdab159b593ea9659e8096c4db (diff)
downloadgit-edc04e90f5a79b7805f1188ca94f06ef7eed81f5.tar.gz
gitweb: Don't escape attributes in CGI.pm HTML methods
There is no need to escape HTML tag's attributes in CGI.pm HTML methods (like CGI::a()), because CGI.pm does attribute escaping automatically. $cgi->a({ ... -attribute => atribute_value }, tag_contents) is translated to <a ... attribute="attribute_value">tag_contents</a> The rules for escaping attribute values (which are string contents) are different. For example you have to take care about escaping embedded '"' and "'" characters; CGI::a() does that for us automatically. CGI::a() does not HTML escape tag_contents; we would need to write <a href="URL">some <b>bold</b> text</a> for example. So we use esc_html (or esc_path) to escape tag_contents as needed. Signed-off-by: Jakub Narebski <jnareb@gmail.com> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 't/t5515')
0 files changed, 0 insertions, 0 deletions