Apache2::Pod::PodSimpleHTML - Pod::Simple::HTML subclass for Apache2::Pod::HTML


Apache2-Pod documentation Contained in the Apache2-Pod distribution.

Index


Code Index:

NAME

Top

Apache2::Pod::PodSimpleHTML - Pod::Simple::HTML subclass for Apache2::Pod::HTML

VERSION

Top

The version is sucked in from whatever Pod::Simple::HTML version is installed.

SYNOPSIS

Top

Used by Apache2::Pod::HTML.

I don't understand what this is for or why we use it, but I'm cleaning up errors because the old name is already indexed by someone else on CPAN.

METHODS

Top

SEE ALSO

Top

Apache2::Pod

Apache2::Pod::HTML

AUTHOR

Top

Theron Lewis <theron at theronlewis dot com>

Mark Hedges <hedges 831*&#@& scriptdolphin blop org >

LICENSE

Top

This package is licensed under the same terms as Perl itself.


Apache2-Pod documentation Contained in the Apache2-Pod distribution.

package Apache2::Pod::PodSimpleHTML;

use strict;
use warnings FATAL => 'all';
use base qw( Pod::Simple::HTML );

*VERSION = *Pod::Simple::HTML::VERSION;

use URI::Escape;


sub resolve_pod_page_link {
    my $self = shift;
    my $to = shift;
    my $section = shift;

    my $link = $to;

    return uri_escape( $link );
}

1;