summaryrefslogtreecommitdiff
path: root/ext/Pod-Html
diff options
context:
space:
mode:
authorZefram <zefram@fysh.org>2017-12-14 02:27:28 +0000
committerZefram <zefram@fysh.org>2017-12-14 02:44:34 +0000
commit0bd1c35ee47dab181543ba366fe021122c591f65 (patch)
tree018da7d41d7b7da2cc9f9f34502942fb133d4c2c /ext/Pod-Html
parent59eb8be1443b97df4c7886794cd12918a376321a (diff)
downloadperl-0bd1c35ee47dab181543ba366fe021122c591f65.tar.gz
fix links in generated HTML documentation
Invoke installhtml in the right way for it to generate relative links. Fix installhtml's code for creating relative links in the index for split documents. Update Pod::Html's section name transformer to match the actual output seen via Pod::Simple::XHTML. Incidentally update split-on-head code for the new style of HTML generated by Pod::Simple::XHTML. Fixes [perl #110056].
Diffstat (limited to 'ext/Pod-Html')
-rw-r--r--ext/Pod-Html/lib/Pod/Html.pm19
-rw-r--r--ext/Pod-Html/t/anchorify.t24
2 files changed, 19 insertions, 24 deletions
diff --git a/ext/Pod-Html/lib/Pod/Html.pm b/ext/Pod-Html/lib/Pod/Html.pm
index 8f7999b835..4927a7c961 100644
--- a/ext/Pod-Html/lib/Pod/Html.pm
+++ b/ext/Pod-Html/lib/Pod/Html.pm
@@ -5,7 +5,7 @@ require Exporter;
our $VERSION = 1.23;
our @ISA = qw(Exporter);
our @EXPORT = qw(pod2html htmlify);
-our @EXPORT_OK = qw(anchorify);
+our @EXPORT_OK = qw(anchorify relativize_url);
use Carp;
use Config;
@@ -661,19 +661,12 @@ sub html_escape {
#
# htmlify - converts a pod section specification to a suitable section
-# specification for HTML. Note that we keep spaces and special characters
-# except ", ? (Netscape problem) and the hyphen (writer's problem...).
+# specification for HTML. We adopt the mechanism used by the formatter
+# that we use.
#
sub htmlify {
my( $heading) = @_;
- $heading =~ s/(\s+)/ /g;
- $heading =~ s/\s+\Z//;
- $heading =~ s/\A\s+//;
- # The hyphen is a disgrace to the English language.
- # $heading =~ s/[-"?]//g;
- $heading =~ s/["?]//g;
- $heading = lc( $heading );
- return $heading;
+ return Pod::Simple::XHTML->can("idify")->(undef, $heading, 1);
}
#
@@ -801,7 +794,7 @@ sub resolve_pod_page_link {
# 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 = relativize_url(
+ $url = Pod::Html::relativize_url(
File::Spec::Unix->catdir(Pod::Html::_unixify($self->htmldir), $url),
$self->htmlfileurl # already unixified
);
@@ -810,6 +803,8 @@ sub resolve_pod_page_link {
return $url . ".html$section";
}
+package Pod::Html;
+
#
# relativize_url - convert an absolute URL to one relative to a base URL.
# Assumes both end in a filename.
diff --git a/ext/Pod-Html/t/anchorify.t b/ext/Pod-Html/t/anchorify.t
index d7b180818f..0677f9ed30 100644
--- a/ext/Pod-Html/t/anchorify.t
+++ b/ext/Pod-Html/t/anchorify.t
@@ -23,18 +23,18 @@ foreach $i (0..$#poddata) {
$heads{anchorify($1)} = 1 if $poddata[$i] =~ /=head[1-6]\s+(.*)/;
}
my %expected = map { $_ => 1 } qw(
- name
- description
- subroutine
- error
- method
- has_a_wordspace
- hastrailingwordspace
- hasleadingwordspace
- has_extra_internalwordspace
- hasquotes
- hasquestionmark
- has_hyphen_and_space
+ NAME
+ DESCRIPTION
+ Subroutine
+ Error
+ Method
+ Has_A_Wordspace
+ HasTrailingWordspace
+ HasLeadingWordspace
+ Has_Extra_InternalWordspace
+ Has_Quotes
+ Has_QuestionMark
+ Has_Hyphen_And_Space
);
is_deeply(
\%heads,