summaryrefslogtreecommitdiff
path: root/ext/Pod-Html/lib/Pod/Html.pm
diff options
context:
space:
mode:
Diffstat (limited to 'ext/Pod-Html/lib/Pod/Html.pm')
-rw-r--r--ext/Pod-Html/lib/Pod/Html.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/Pod-Html/lib/Pod/Html.pm b/ext/Pod-Html/lib/Pod/Html.pm
index cfaa6c81b3..e6d54b3be5 100644
--- a/ext/Pod-Html/lib/Pod/Html.pm
+++ b/ext/Pod-Html/lib/Pod/Html.pm
@@ -14,7 +14,7 @@ use File::Spec;
use File::Spec::Unix;
use Pod::Simple::Search;
use Pod::Simple::SimpleTree ();
-use Pod::Html::Auxiliary qw(
+use Pod::Html::Util qw(
html_escape
htmlify
parse_command_line
@@ -655,15 +655,15 @@ sub resolve_pod_page_link {
$path = $self->pages->{$to};
}
- my $url = File::Spec::Unix->catfile(Pod::Html::Auxiliary::unixify($self->htmlroot),
+ my $url = File::Spec::Unix->catfile(Pod::Html::Util::unixify($self->htmlroot),
$path);
if ($self->htmlfileurl ne '') {
# then $self->htmlroot eq '' (by definition of htmlfileurl) so
# $self->htmldir needs to be prepended to link to get the absolute path
# that will be relativized
- $url = Pod::Html::Auxiliary::relativize_url(
- File::Spec::Unix->catdir(Pod::Html::Auxiliary::unixify($self->htmldir), $url),
+ $url = Pod::Html::Util::relativize_url(
+ File::Spec::Unix->catdir(Pod::Html::Util::unixify($self->htmldir), $url),
$self->htmlfileurl # already unixified
);
}