TagDir — specify directories containing code declaration blocks
Specify directories containing tag, filter, widget, actionmap and other code declarations.
For more information on possible code declarations, see
ITL and filter glossary entries and the CodeDef
configuration directive.
Interchange 5.7.0:
Source: lib/Vend/Config.pm
Line 3907 (context shows lines 3907-3923)
sub parse_root_dir_array {
my($var, $value) = @_;
return [] unless $value;
no strict 'refs';
my $c = ${"Global::$var"} || [];
my @dirs = grep /\S/, Text::ParseWords::shellwords($value);
foreach my $dir (@dirs) {
$dir = "$Global::VendRoot/$dir"
unless file_name_is_absolute($dir);
$dir =~ s./+$..;
push @$c, $dir;
}
return $c;
}