/usr/share/perl5/Text/Markup/Rest.pm is in libtext-markup-perl 0.23-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 | package Text::Markup::Rest;
use 5.8.1;
use strict;
use File::Spec;
use File::Basename ();
use constant WIN32 => $^O eq 'MSWin32';
use Symbol 'gensym';
use IPC::Open3;
our $VERSION = '0.23';
# Find Python (process stolen from App::Info).
my ($PYTHON, $RST2HTML);
for my $exe (WIN32 ? 'python.exe' : 'python') {
my @path = (
File::Spec->path,
WIN32 ? (map { "C:\\Python$_" } '', 27, 26, 25) : ()
);
for my $p (@path) {
my $path = File::Spec->catfile($p, $exe);
next unless -f $path && -x $path;
$PYTHON = $path;
last;
}
unless ($PYTHON) {
use Carp;
my $sep = WIN32 ? ';' : ':';
Carp::croak(
"Cannot find $exe in path " . join $sep => @path
);
}
# We have python, let's find out if we have docutils.
my $output = gensym;
my $pid = open3 undef, $output, $output, $PYTHON, '-c', 'import docutils';
waitpid $pid, 0;
if ($?) {
use Carp;
local $/;
Carp::croak(
qq{Missing required Python "docutils" module\n},
<$output>
);
}
# We ship with our own rst2html that's lenient with unknown directives.
$RST2HTML = File::Spec->catfile(
File::Basename::dirname(__FILE__),
'rst2html_lenient.py'
);
# Make sure it looks like it will work.
$pid = open3 undef, $output, $output, $PYTHON, $RST2HTML, '--test-patch';
waitpid $pid, 0;
if ($?) {
use Carp;
local $/;
Carp::croak(
qq{$RST2HTML will not execute\n},
<$output>
);
}
}
# Optional arguments to pass to rst2html
my @OPTIONS = qw(
--no-raw
--no-file-insertion
--stylesheet=
--cloak-email-address
--no-generator
--quiet
);
# Options to improve rendering of Sphinx documents
my @SPHINX_OPTIONS = qw(
--dir-ignore toctree
--dir-ignore highlight
--dir-ignore index
--dir-ignore default-domain
--dir-nested note
--dir-nested warning
--dir-nested versionadded
--dir-nested versionchanged
--dir-nested deprecated
--dir-nested seealso
--dir-nested hlist
--dir-nested glossary
--dir-notitle code-block
--dir-nested module
--dir-nested function
--output-encoding utf-8
);
# note: domains directive (last 2 options) incomplete
sub parser {
my ($file, $encoding, $opts) = @_;
my $html = do {
my $fh = _fh(
$PYTHON, $RST2HTML,
@OPTIONS, @SPHINX_OPTIONS,
'--input-encoding', $encoding,
$file
);
local $/;
<$fh>;
};
# Make sure we have something.
return undef if $html =~ m{<div\s+class\s*=\s*(['"])document\1>\s+</div>}ms;
# Alas, --no-generator does not remove the generator meta tag. :-(
$html =~ s{^\s*<meta\s+name\s*=\s*(['"])generator\1[^>]+>\n}{}ms;
return $html;
}
# Stolen from SVN::Notify.
sub _fh {
# Ignored; looks like docutils always emits UTF-8.
if (WIN32) {
my $cmd = join join(q{" "}, @_) . q{"|};
open my $fh, $cmd or die "Cannot fork: $!\n";
return $fh;
}
my $pid = open my $fh, '-|';
die "Cannot fork: $!\n" unless defined $pid;
if ($pid) {
# Parent process, return the file handle.
return $fh;
} else {
# Child process. Execute the commands.
exec @_ or die "Cannot exec $_[0]: $!\n";
# Not reached.
}
}
1;
__END__
=head1 Name
Text::Markup::Rest - reStructuredText parser for Text::Markup
=head1 Synopsis
use Text::Markup;
my $html = Text::Markup->new->parse(file => 'hello.rst');
=head1 Description
This is the
L<reStructuredText|http://docutils.sourceforge.net/docs/user/rst/quickref.html>
parser for L<Text::Markup>. It depends on the C<docutils> Python package
(which can be found as C<python-docutils> in many Linux distributions, or
installed using the command C<easy_install docutils>). It recognizes files
with the following extensions as reST:
=over
=item F<.rest>
=item F<.rst>
=back
=head1 Author
Daniele Varrazzo <daniele.varrazzo@gmail.com>
=head1 Copyright and License
Copyright (c) 2011-2014 Daniele Varrazzo. Some Rights Reserved.
This module is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.
=cut
|