summaryrefslogtreecommitdiff
path: root/installhtml
diff options
context:
space:
mode:
authorAristotle Pagaltzis <pagaltzis@gmx.de>2012-05-15 18:59:33 +0200
committerFather Chrysostomos <sprout@cpan.org>2012-05-26 11:50:18 -0700
commit83c03aa3e02c6caf08cbd40cd0ac1f82ce181d81 (patch)
tree0c71938a2dbee82d98d3e0fcd89c4fd97029a920 /installhtml
parent8de3880f558aa119a83ded6d8ccaaba20d587030 (diff)
downloadperl-83c03aa3e02c6caf08cbd40cd0ac1f82ce181d81.tar.gz
rewrite installhtml's installdir dir scan logic
The code so far was riddled with copy-paste and hacks and incurred redundant effort, including syscalls. Replaced with a skimmable and parsimonious implementation.
Diffstat (limited to 'installhtml')
-rw-r--r--installhtml29
1 files changed, 15 insertions, 14 deletions
diff --git a/installhtml b/installhtml
index 396e78a24f..75d6adc379 100644
--- a/installhtml
+++ b/installhtml
@@ -4,7 +4,7 @@
use strict;
use Config; # for config options in the makefile
-use File::Spec::Functions qw(rel2abs);
+use File::Spec::Functions qw(rel2abs no_upwards);
use Getopt::Long; # for command-line parsing
use Cwd;
use Pod::Html 'anchorify';
@@ -496,22 +496,23 @@ sub installdir {
opendir(DIR, "$podroot/$dir")
|| die "$0: error opening directory $podroot/$dir: $!\n";
- # find the directories to recurse on
- @dirlist = map { if ($^O eq 'VMS') {/^(.*)\.dir$/i; "$dir/$1";} else {"$dir/$_";}}
- grep(-d "$podroot/$dir/$_" && !/^\.{1,2}/, readdir(DIR)) if $recurse;
- rewinddir(DIR);
-
- # find all the .pod files within the directory
- @podlist = map { /^(.*)\.pod$/; "$dir/$1" }
- grep(! -d "$podroot/$dir/$_" && /\.pod$/, readdir(DIR));
- rewinddir(DIR);
-
- # find all the .pm files within the directory
- @pmlist = map { /^(.*)\.pm$/; "$dir/$1" }
- grep(! -d "$podroot/$dir/$_" && /\.pm$/, readdir(DIR));
+ while(readdir DIR) {
+ no_upwards($_) or next;
+ my $is_dir = -d "$podroot/$dir/$_";
+ next if $is_dir and not $recurse;
+ my $target = (
+ $is_dir ? \@dirlist :
+ s/\.pod$// ? \@podlist :
+ s/\.pm$// ? \@pmlist :
+ undef
+ );
+ push @$target, "$dir/$_" if $target;
+ }
closedir(DIR);
+ if ($^O eq 'VMS') { s/\.dir$//i for @dirlist }
+
# recurse on all subdirectories we kept track of
foreach $dir (@dirlist) {
installdir($dir, $recurse, $podroot, $splitdirs, $ignore);