NoExportExternal — enable use of the NoExport directive
The directive enables use of the NoExport directive
to control which external database tables
should never be re-exported back to text source files.
For an introduction to "exporting" and the times it can occur, see
database glossary entry and the NoExport configuration
directive.
Interchange 5.7.0:
Source: lib/Vend/Config.pm
Line 5260 (context shows lines 5260-5272)
sub parse_yesno {
my($var, $value) = @_;
$_ = $value;
if (m/^y/i || m/^t/i || m/^1/ || m/^on/i) {
return 1;
}
elsif (m/^n/i || m/^f/i || m/^0/ || m/^of/i) {
return 0;
}
else {
config_error("Use 'yes' or 'no' for the $var directive\n");
}
}