diff options
author | Josh Triplett <josh@freedesktop.org> | 2008-02-10 14:59:08 -0800 |
---|---|---|
committer | Josh Triplett <josh@freedesktop.org> | 2008-02-10 14:59:08 -0800 |
commit | ec9d3ab549fc40b23db7fa912338e4e7c24ebb4c (patch) | |
tree | b2f615f9b7aa982cceaad25d2fc03b69a9f0cd8d | |
parent | 3cda22a27fafc5cdfdd32ddc0644242f61410ce7 (diff) |
Do not allow the steam: URI scheme.
-rw-r--r-- | IkiWiki/Plugin/htmlscrubber.pm | 2 | ||||
-rw-r--r-- | debian/changelog | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/htmlscrubber.pm b/IkiWiki/Plugin/htmlscrubber.pm index 53d4635d5..8804daf56 100644 --- a/IkiWiki/Plugin/htmlscrubber.pm +++ b/IkiWiki/Plugin/htmlscrubber.pm @@ -27,7 +27,7 @@ sub import { #{{{ "aim", "callto", "cvs", "ed2k", "feed", "fish", "gg", "irc", "ircs", "lastfm", "ldaps", "magnet", "mms", "msnim", "notes", "rsync", "secondlife", "skype", "ssh", - "sftp", "sms", "steam", "webcal", "ymsgr", + "sftp", "sms", "webcal", "ymsgr", ); # data is a special case. Allow data:image/*, but # disallow data:text/javascript and everything else. diff --git a/debian/changelog b/debian/changelog index 8b6c82568..1a43344a4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -26,6 +26,7 @@ ikiwiki (2.31.3) unstable; urgency=high [ Josh Triplett ] * Match literal '.' in URI schemas containing '.', rather than matching any character. + * Do not allow the steam: URI scheme. -- Josh Triplett <josh@freedesktop.org> Sun, 10 Feb 2008 14:48:48 -0800 |