From 61a720a97ab942a4134aa105a10532cee50dd01f Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Sun, 29 May 2016 02:07:47 +0000 Subject: txt2pre: remove CGI.pm dependency It's no longer a part of the stock Perl distribution, and we don't need a whole module for just one function. --- Documentation/txt2pre | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'Documentation') diff --git a/Documentation/txt2pre b/Documentation/txt2pre index ef6a4f35..2dd1597c 100755 --- a/Documentation/txt2pre +++ b/Documentation/txt2pre @@ -1,16 +1,22 @@ #!/usr/bin/env perl -# Copyright (C) 2014-2015 all contributors -# License: AGPLv3 or later (https://www.gnu.org/licenses/agpl-3.0.txt) +# Copyright (C) 2014-2016 all contributors +# License: AGPL-3.0+ # # Stupid script to make HTML from preformatted, utf-8 text versions, # only generating links for http(s). Markdown does too much # and requires indentation to output preformatted text. use strict; use warnings; -use CGI qw/escapeHTML/; use Encode qw/encode/; my $str = eval { local $/; <> }; -$str = escapeHTML($str); +my %xhtml_map = ( + '"' => '"', + '&' => '&', + "'" => ''', + '<' => '<', + '>' => '>', +); +$str =~ s/([<>&'"])/$xhtml_map{$1}/ge; $str = encode('us-ascii', $str, Encode::HTMLCREF); my ($title) = ($str =~ /\A([^\n]+)/); -- cgit v1.2.3-24-ge0c7