NoExport — specify databases not to re-export
The directive specifies external database tables that should never be exported back to the text source files.
Invocations of [backup-database] are not affected
by this setting, and [export] can force the export by specifying
force=1.
Example: Disabling 'products' and 'inventory' table export
Put the following in catalog.cfg:
NoExportExternal yes NoExport products inventory
Interchange 5.9.0:
Source: lib/Vend/Config.pm
Line 3013 (context shows lines 3013-3030)
sub parse_boolean {
my($item,$settings) = @_;
my(@setting) = grep /\S/, split /[\s,]+/, $settings;
my $c;
if(defined $C) {
$c = $C->{$item} || {};
}
else {
no strict 'refs';
$c = ${"Global::$item"} || {};
}
for (@setting) {
$c->{$_} = 1;
}
return $c;
}