| Apache2-Pod documentation | Contained in the Apache2-Pod distribution. |
Apache2::Pod::PodSimpleHTML - Pod::Simple::HTML subclass for Apache2::Pod::HTML
The version is sucked in from whatever Pod::Simple::HTML version is installed.
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.
We override this to return the link using URI::Escape.
Theron Lewis <theron at theronlewis dot com>
Mark Hedges <hedges 831*&#@& scriptdolphin blop org >
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;