X-Git-Url: https://jxself.org/git/?p=ssic.git;a=blobdiff_plain;f=src%2Fssic.pl;h=f87aa9e5df96af57219a219e4a3a704aa5fe0781;hp=b6876d5036ef22fe6d323c93ae656f4604f464fc;hb=4a6dbfd99444de6e7cb30934378294ac135d9c76;hpb=825af6201efe46ddc82e6c0a51410cd86612226e diff --git a/src/ssic.pl b/src/ssic.pl index b6876d5..f87aa9e 100644 --- a/src/ssic.pl +++ b/src/ssic.pl @@ -18,6 +18,7 @@ sub main "no_getopt_compat"); if (not GetOptions(\%opts, "o=s", + "D=s%", "h|help", "V|version", )) { @@ -41,12 +42,12 @@ sub main if ($#ARGV gt 0) { error(4, "Cannot specify -o with multiple files\n"); } - compile($ARGV[0], $opts{'o'}); + compile($ARGV[0], $opts{'o'}, $opts{'D'}); } else { for $input (@ARGV) { $output = $input; $output =~ s/\.[^.]+$/.html/; - compile($input, $output); + compile($input, $output, $opts{'D'}); } } } @@ -64,9 +65,10 @@ sub help usage($fh); print("Options:\n"); - print(" -o Place the output into \n"); - print(" -h, --help Display this information\n"); - print(" -V, --version Display compiler version information\n"); + print(" -D = Set the variable to \n"); + print(" -o Place the output into \n"); + print(" -h, --help Display this information\n"); + print(" -V, --version Display compiler version information\n"); } sub version @@ -99,10 +101,12 @@ sub error sub compile { - my ($input, $output) = @_; + my ($input, $output, $vars) = @_; my $input_fh; my $output_fh; my $ssi; + my $var_name; + my $var_value; if ($input eq $output) { error(4, "Input and output files are equal\n"); @@ -111,9 +115,15 @@ sub compile open($input_fh, "<", $input); open($output_fh, ">", $output); + %ENV = (); + $CGI::SSI::DEBUG = 0; $ssi = CGI::SSI->new(); + while (($var_name, $var_value) = each(%{$vars})) { + $ssi->set($var_name => $var_value); + } + print($output_fh $ssi->process(<$input_fh>)); }