diff mercurial/templates/rss/bookmarkentry.tmpl @ 18526:9409aeaafdc1 stable

hgweb: urlescape all urls, HTML escape repo/tag/branch/... names Without this, repository paths or names containing e.g. & characters or html tags yielded strange results, possibly allowing cross-site scripting attacks.
author Thomas Arendsen Hein <thomas@intevation.de>
date Fri, 01 Feb 2013 20:43:35 +0100
parents 1046cb663776
children
line wrap: on
line diff
--- a/mercurial/templates/rss/bookmarkentry.tmpl	Fri Feb 01 15:14:05 2013 -0600
+++ b/mercurial/templates/rss/bookmarkentry.tmpl	Fri Feb 01 20:43:35 2013 +0100
@@ -1,6 +1,6 @@
 <item>
     <title>{bookmark|escape}</title>
-    <link>{urlbase}{url}rev/{node|short}</link>
+    <link>{urlbase}{url|urlescape}rev/{node|short}</link>
     <description><![CDATA[{bookmark|strip|escape|addbreaks}]]></description>
     <pubDate>{date|rfc822date}</pubDate>
 </item>