diff options
author | John Ankarström <john@ankarstrom.se> | 2021-05-07 00:59:10 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2021-05-07 00:59:10 +0200 |
commit | 2c1ae002c82e0cd3b6837199fa0e58e9fb4647cc (patch) | |
tree | 750a8a1da674ad9a53281d164a58dc72a5821f4a /run | |
parent | daebe74b0a08df5685aedee63480936d5d98fbc2 (diff) | |
download | perlisdead-2c1ae002c82e0cd3b6837199fa0e58e9fb4647cc.tar.gz |
Encode entities in PerlMonks titles and author names
Diffstat (limited to 'run')
-rwxr-xr-x | run/perlmonks | 8 | ||||
-rwxr-xr-x | run/rss | 2 |
2 files changed, 6 insertions, 4 deletions
diff --git a/run/perlmonks b/run/perlmonks index 53e9583..d64c93d 100755 --- a/run/perlmonks +++ b/run/perlmonks @@ -3,6 +3,7 @@ use strict; use warnings; +use HTML::Entities; use LWP::UserAgent (); use Time::Piece; use XML::LibXML; @@ -28,10 +29,11 @@ my @nodes = for (@nodes) { my ($node, $time) = @$_; my $d = $time->strftime('%a, %e %B %Y %H:%M:%S UTC'); - my $f = ($node->findnodes('./@authortitle'))[0]->to_literal; - (my $s = $node->to_literal) =~ s/^\s+|\s+$//; - next if $s eq $f; # Skip home nodes + my $f = encode_entities ($node->findnodes('./@authortitle'))[0]->to_literal; + (my $s = encode_entities $node->to_literal) =~ s/^\s+|\s+$//; my $l = 'https://www.perlmonks.org/?node_id=' . ($node->findnodes('./@node_id'))[0]->to_literal; + + next if $s eq $f; # Skip home nodes print <<HTML; <div class="entry"> <div class="date">Date: $d</div> @@ -22,7 +22,7 @@ my @entries = sort { $b->issued <=> $a->issued } $feed->entries; # Print summary of five latest entries for my $entry (@entries[0..4]) { - my $d = encode_entities $entry->issued->strftime('%a, %e %B %Y %H:%M:%S UTC'); + my $d = $entry->issued->strftime('%a, %e %B %Y %H:%M:%S UTC'); my $f = encode_entities decode('utf8', $entry->author); my $s = encode_entities decode('utf8', $entry->title); my $l = encode_entities $entry->link; |