From: Gavin Carr Date: Thu, 1 Nov 2007 09:25:50 +0000 (+0000) Subject: Add xml entity escape code to rss20. X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fupstream%2Fblosxom-plugins.git;a=commitdiff_plain;h=20f6152e08a8e4e7bc9a063cf5d4b4a73f8c3b48 Add xml entity escape code to rss20. --- diff --git a/gavinc/rss20 b/gavinc/rss20 index bbfe46e..4d7ac29 100644 --- a/gavinc/rss20 +++ b/gavinc/rss20 @@ -50,14 +50,53 @@ $generator_url = "http://blosxom.sourceforge.net/?v=$blosxom::version"; $error_email ||= $author_email; +# Escape <, >, and & to hex-encoded entities for max compatibility in text elements +# See http://www.rssboard.org/rss-profile#data-types-characterdata +my %escape_text = ( + '<' => '<', + '>' => '>', + '&' => '&', +); +my $escape_text_re = join '|' => keys %escape_text; + +# Escape <, >, and & to standard html-encoded entities for in html elements +my %escape_html = ( + '<' => '<', + '>' => '>', + '&' => '&', +); +my $escape_html_re = join '|' => keys %escape_html; + sub start { _load_templates(); +} - 1; +sub story { + my ($pkg, $path, $filename, $story_ref, $title_ref, $body_ref) = @_; + + # Don't double-encode if someone else has already done it + return unless $blosxom::encode_xml_entities; + + # Encode and reset encode_xml_entities flag + $$title_ref = _escape_text( $$title_ref ); + $$body_ref = _escape_html( $$body_ref ); + $blosxom::encode_xml_entities = 0; } # --- Private subroutines +sub _escape_text { + my ($text) = @_; + $text =~ s/($escape_text_re)/$escape_text{$1}/g; + return $text; +} + +sub _escape_html { + my ($html) = @_; + $html =~ s/($escape_html_re)/$escape_html{$1}/g; + return $html; +} + sub _load_templates { $blosxom::template{$flavour}{'content_type'} = 'text/xml; charset=$blog_encoding'; @@ -105,6 +144,8 @@ STORY FOOT + + 1; }