/usr/share/perl5/UR/Doc/Pod2Html.pm is in libur-perl 0.430-1.
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 | package UR::Doc::Pod2Html;
use strict;
use warnings;
our $VERSION = "0.43"; # UR $VERSION;
use Data::Dumper;
use parent 'Pod::Simple::HTML';
$Pod::Simple::HTML::Perldoc_URL_Prefix = '';
$Pod::Simple::HTML::Perldoc_URL_Postfix = '.html';
sub do_top_anchor {
my ($self, $value) = @_;
$self->{__do_top_anchor} = $value;
}
sub do_beginning {
return 1;
}
sub do_end {
return 1;
}
sub _add_top_anchor {
my $self = shift;
return $self->SUPER::_add_top_anchor(@_) if $self->{__do_top_anchor};
}
1;
|