}
parseConfigAndSpec( $cgiHash{'configFile'} );
-
-
-## obsolete
-# buildAncestry( $configFileName, "" )
-# ; #arg1: target file, # arg2: recursion parent target file
-#
-# $configTree = $ancestryTree; # not so elegant
-## now use:
-
integrateAncestry();
print_ancestorInfo();
--- /dev/null
+#!/usr/bin/perl -w
+#print "Content-type: text/html\n\n";
+
+
+my $me = "testgui.pl";
+
+use strict;
+use warnings;
+use XML::LibXML;
+use POSIX;
+use CGI ':standard';
+use Cwd;
+use CGI::Carp qw(fatalsToBrowser);
+use HTML::Entities;
+require Common;
+require xmlOperations;
+
+my $here = getcwd();
+
+my $q = CGI->new;
+
+print header;
+print start_html(
+-title=>'testgui',
+-style=>{'src'=>'../layout/styles.css'}
+);
+
+print h2("testgui");
+print "<p> still more to come </p>";
+
+print escapeHTML("hallo<<<>>>&&&!!"),br;
+print escapeHTML($here);
+
+chdir("./preview") or die "could not change directory!";
+system("./run -t 0.1");
+chdir($here);
+