# in copy merge trees from xml2ini.pl
# or put it in the common.pm
+# correct size in tooltip
+
+# build ancestry without ancestry tree outside
+
# DONE
# do not include wrong type, different specfile
require Common;
-sub initPage {
-
- print <<EOF;
-<HTML>
-<HEAD>
-<title>JTAG Editor</title>
-<link href="../layout/styles.css" rel="stylesheet" type="text/css"/>
-<link href="../layout/jtageditor.css" rel="stylesheet" type="text/css"/>
-EOF
- printJavaScripts();
- print <<EOF;
-</HEAD>
-<BODY onload='reloadFileSelection()'>
-<h2>JTAG Configuration File Editor</h2>
-<div id="debug">
-debug text
-</div>
-<div id="fileSelection">
-
-Current File: unknown
-</div>
-
-<div id="roterBereich">
-empty
-</div>
-<div id="blauerBereich">
-empty
-</div>
-
-
-</BODY>
-</HTML>
-EOF
-}
my %cgiHash = &read_input;
my $confDir = '../config';
my $specDir = '../specs';
+# end of global variables
+
if ( $cgiHash{'print'} eq 'fileSelection' ) {
print "<div class='header'>File Selection</div>";
print_fileSelection( $cgiHash{'configFile'} );
}
-
sub parseConfigAndSpec {
parseConfig( $_[0] );
$specFileName = $configTree->findvalue("/MAPS/\@specDbFile");
print "</div>";
}
+sub initPage {
+ print <<EOF;
+<HTML>
+<HEAD>
+<title>JTAG Editor</title>
+<link href="../layout/styles.css" rel="stylesheet" type="text/css"/>
+<link href="../layout/jtageditor.css" rel="stylesheet" type="text/css"/>
+EOF
+ printJavaScripts();
+ print <<EOF;
+</HEAD>
+<BODY onload='reloadFileSelection()'>
+<h2>JTAG Configuration File Editor</h2>
+<div id="debug">
+debug text
+</div>
+<div id="fileSelection">
+
+Current File: unknown
+</div>
+
+<div id="roterBereich">
+empty
+</div>
+<div id="blauerBereich">
+empty
+</div>
+
+
+</BODY>
+</HTML>
+EOF
+
+}
###############################
## general xml tools
###############################
-sub mergeTrees
-{ # give me two trees, tree1 overwrites everything in tree0 and will consequently be integrated in tree0
+sub mergeTrees { # give me two trees, tree1 overwrites everything in tree0 and will consequently be integrated in tree0
my $tree0 = $_[0];
my $tree1 = $_[1];
}
}
-
sub changeAncestor {
my $ancestorFileName = $_[0];
my $xmltree = $configTree;
return $t;
}
-
-
sub save {
my $registerName = $_[0];
}
-
-
sub read_input {
my $buffer;
my @pairs;