summaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
authorJames E Keenan <jkeenan@cpan.org>2021-03-14 00:08:47 +0000
committerJames E Keenan <jkeenan@cpan.org>2021-07-06 01:08:03 +0000
commitd32e5dc4f13e3a8f42c445ab32d50f7aff8d1cd7 (patch)
treeff7112dbcfe220d0d6382fad5728f18136c359fd /win32
parent1906cbf52f374975647233a566ec1c711cfed623 (diff)
downloadperl-d32e5dc4f13e3a8f42c445ab32d50f7aff8d1cd7.tar.gz
Introduce Pod::Html::Auxiliary
This package will hold helper subroutines used within the main package or in tests. They can be placed in a separate module and imported into Pod::Html because they won't depend on having the globals passed as an argument. They will also be potentially independently testable. Start with html_escape(). Move anchorify(), htmlify() to Auxiliary.pm. Also _unixify -- now as unixify(). Move relativize_url() to Auxiliary. Move usage() to Auxiliary. Move trim_leading_whitespace to Auxiliary. Move parse_command_line() to Auxiliary. Keep porting tests happy. Increment $VERSION. Run: ./perl -Ilib regen/lib_cleanup.pl anchorify.t, eol.t: Correct excessive corrections. Standardize setting of $VERSION.
Diffstat (limited to 'win32')
-rw-r--r--win32/GNUmakefile1
-rw-r--r--win32/Makefile1
2 files changed, 2 insertions, 0 deletions
diff --git a/win32/GNUmakefile b/win32/GNUmakefile
index 8177dd5311..3114cd2ab4 100644
--- a/win32/GNUmakefile
+++ b/win32/GNUmakefile
@@ -1851,6 +1851,7 @@ distclean: realclean
-if exist $(LIBDIR)\Parse rmdir /s /q $(LIBDIR)\Parse
-if exist $(LIBDIR)\Perl rmdir /s /q $(LIBDIR)\Perl
-if exist $(LIBDIR)\PerlIO rmdir /s /q $(LIBDIR)\PerlIO
+ -if exist $(LIBDIR)\Pod\Html rmdir /s /q $(LIBDIR)\Pod\Html
-if exist $(LIBDIR)\Pod\Perldoc rmdir /s /q $(LIBDIR)\Pod\Perldoc
-if exist $(LIBDIR)\Pod\Simple rmdir /s /q $(LIBDIR)\Pod\Simple
-if exist $(LIBDIR)\Pod\Text rmdir /s /q $(LIBDIR)\Pod\Text
diff --git a/win32/Makefile b/win32/Makefile
index 6a56513af7..69ed79bc11 100644
--- a/win32/Makefile
+++ b/win32/Makefile
@@ -1316,6 +1316,7 @@ distclean: realclean
-if exist $(LIBDIR)\Parse rmdir /s /q $(LIBDIR)\Parse
-if exist $(LIBDIR)\Perl rmdir /s /q $(LIBDIR)\Perl
-if exist $(LIBDIR)\PerlIO rmdir /s /q $(LIBDIR)\PerlIO
+ -if exist $(LIBDIR)\Pod\Html rmdir /s /q $(LIBDIR)\Pod\Html
-if exist $(LIBDIR)\Pod\Perldoc rmdir /s /q $(LIBDIR)\Pod\Perldoc
-if exist $(LIBDIR)\Pod\Simple rmdir /s /q $(LIBDIR)\Pod\Simple
-if exist $(LIBDIR)\Pod\Text rmdir /s /q $(LIBDIR)\Pod\Text