diff -r 000000000000 -r 920e6ed5889b scripts/exportvym --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/scripts/exportvym Sun Jan 30 12:59:10 2005 +0000 @@ -0,0 +1,70 @@ +#!/usr/bin/perl +# +# Script to convert vym files to arbitrary formats +# Using xml stylesheets +# +# written by Uwe Drechsel +# + +my $version="0.1"; +my $PARSER="xsltproc"; +my $OUTDIR=""; +my $INPUTDIR=""; +my $XSL="vym2html.xsl"; + + +use Getopt::Long; +GetOptions ( + "o=s" => \$opt_outdir, + "x=s"=> \$opt_xst, + "h!" => \$opt_usage ) || usage (); + + + +if ($opt_usage) { + $0 =~ s#.*/##g; + print <