if ( $cgiHash{'print'} eq 'spectree' ) {
print "<div class='header'>Available Settings</div>\n";
parseSetAndSpec( $cgiHash{'configFile'} );
- print
"<div class='ancestorInfo' align='center'>specifications loaded from $specfileName</div>";
+
+
print_registers($specfile);
}
print "<div class='header'>Selected Settings</div>\n";
parseSetAndSpec( $cgiHash{'configFile'} );
buildAncestry($setfileName);
-# assignFieldColors();#obsolete
- $settree = $ancestryTree; # not so elegant
- print "<div class='ancestorInfo' align='center'>";
- print "inherit settings from:<br>";
- print "<table>";
- for my $ancestor (@ancestryList) {
- print "<tr class=fileLevel".$fileLevelHash{$ancestor}."><td>$ancestor</td></tr>";
- }
- print "</table>";
+ # assignFieldColors();#obsolete
+
+ $settree = $ancestryTree; # not so elegant
+ print "<table><tr>";
+ print "<td>";
+ print_ancestorInfo();
+ print "</td>";
+ print "<td style='border-right:1px solid #000000'><br></td>";
+ print "<td>";
+
+ print "<div align='center'>you are editing<br><table><tr class='fileLevel'><td>$setfileName</td></tr></table></div>";
+ print "</td>";
+ print "</tr></table>";
- print "</div>";
print_registers($setfile);
}
del( $cgiHash{'register'}, "" ); # delete existing register from setfile
copyDefaultRegister( $cgiHash{'register'} );
}
+ if ( $cgiHash{'action'} eq 'createFile' ) {
+ createFile($cgiHash{'configFile'},$cgiHash{'specFile'});
+ }
}
#################### SUBLAND ######################
+
+sub createFile {
+ my $configFileName=$_[0];
+
+ my $specFileName=$_[1]; #config file is based on this specification!
+ my $configFile= $confDir."/".$configFileName;
+ my $specFile=$specDir."/".$specFileName;
+
+ my $configTree = XML::LibXML->createDocument;
+ my $specTree = $parser->parse_file($specFile);
+
+ my $configMaps = $configTree->createElementNS( "", "MAPS" );
+ $configTree->setDocumentElement( $configMaps );
+
+ my $specMaps = $specTree->findnodes("/MAPS")->shift();
+
+ my $mapsType = $specMaps->findvalue("./\@type");
+
+ $configMaps->setAttribute("type",$mapsType);
+ $configMaps->setAttribute("specDbFile",$specFileName);
+
+
+ open( SCHREIBEN, "> $configFile" )
+ or print "could not open file $configFile for writing: $!\n";
+
+ print SCHREIBEN $configTree->toString();
+ close SCHREIBEN;
+
+}
+
+sub print_ancestorInfo {
+ print "<div class='ancestorInfo' align='center'>";
+ if (@ancestryList) {
+ print "inherit settings from:<br>";
+ print "<table>";
+ for my $ancestor (@ancestryList) {
+ print "<tr class=fileLevel"
+ . $fileLevelHash{$ancestor}
+ . "><td>$ancestor</td></tr>";
+ }
+ print "</table>";
+ }
+ print "</div>";
+}
+
sub prepare_text {
my $t = $_[0];
chomp $t;
$ancestryTree = $xmltree;
}
-
- my $counter=1;
- for my $file (reverse(@ancestryList)){
- $fileLevelHash{$file}=$counter;
- if ($counter < 6) {
+
+ my $counter = 1;
+ for my $file ( reverse(@ancestryList) ) {
+ $fileLevelHash{$file} = $counter;
+ if ( $counter < 6 ) {
$counter++;
}
}
close SCHREIBEN;
}
-sub print_fileSelection {
+sub print_fileSelector{
+
+ my $configFile = $_[0];
+ opendir( DIR, $confDir ) or die $!;
- my $configFile = $_[0];
+ print '<select name="fileSelectionDropdown" id="fileSelector" >';
- print "<table>";
- print "<tr>";
- print "<td>select config file:<td>";
- print "</tr>";
+ print "<option value='...'>...</option>";
+ my @xmlfiles;
+ while ( my $file = readdir(DIR) ) {
- print "<tr>";
+ # Use a regular expression to ignore files beginning with a period
+ next if ( $file =~ m/^\./ );
- print "<td>";
- opendir( DIR, $confDir ) or die $!;
+ if ( $file =~ m/\.xml$/ ) {
+ push( @xmlfiles, $file );
+ }
+ }
+ for my $file ( sort @xmlfiles ) {
+ print '<option value="' . $file . '"';
+ if ( $file eq $configFile ) {
+ print ' selected ';
+ }
+ print '>' . $file . '</option>';
+ }
+ closedir(DIR);
- print '<select name="fileSelectionDropdown" id="fileSelector" >';
+ print '</select>';
+}
+
+sub print_specSelector{
+
+ my $configFile = $_[0];
+ opendir( DIR, $specDir ) or die $!;
+
+ print '<select name="specSelectionDropdown" id="specSelector" >';
- print "<option value='...'>...</option>";
my @xmlfiles;
while ( my $file = readdir(DIR) ) {
closedir(DIR);
print '</select>';
+}
+sub print_fileSelection {
+
+ my $configFile = $_[0];
+
+ print "<table>";
+ print "<tr><td>";
+ print "<table>";
+ print "<tr>";
+ print "<td>select config file:<td>";
+ print "</tr>";
+
+ print "<tr>";
+
+ print "<td>";
+ print_fileSelector($configFile);
print "</td>";
print "<td>";
print "</table>";
+ print "</td>";
+
+ print "<td style='border-right:1px solid #000000'><br></td>";
+
+ print "<td>";
print "<table>";
- print "<tr><td>";
- print "selected config file: $configFile";
+ print "<tr><td colspan=2>";
+ print "create new config file:";
print "</td></tr>";
+
+ print "<tr><td>";
+ print "<input type='text' value='' id='newFileName'>";
+ print "</td><td>";
+ print_specSelector();
+ print "</td><td>";
+ print
+"<input type='button' onclick='createFile()' value='create file' class='stdbutton'>";
+ print "</td></tr>";
+
print "</table>";
+ print "</td>";
+ print "</tr></table>";
}
sub changeAncestor {
# "#CCFFCC", "#CCFFFF", "#CCCCFF", "#FFCCFF",
# "#FFCCCC", "#FFFFCC", "#FFFFFF"
# );
-#
+#
# my @ancestryWithChild;
# push(@ancestryWithChild,@ancestryList);
# push(@ancestryWithChild,$setfileName);
-#
+#
# my $index=0;
# for my $fileName (reverse(@ancestryWithChild)){
# $fieldColorHash{$fileName}= $fieldColors[$index];
# $index++;
# }
# }
-#
+#
#}
sub print_registers {
$readOnlyFlag = 1;
}
- print "<tr class='fileLevel".$fileLevelHash{$isHeritageFrom}."'>";
+ print "<tr class='fileLevel" . $fileLevelHash{$isHeritageFrom} . "'>";
print "<td width=120 title=\"$fieldDescr\"";
print ">$fieldName</td>";
print "<td> = </td>";
}
}
+function selectedSpecFile(){
+if(document.getElementById("specSelector")){
+var e = document.getElementById("specSelector");
+return e.options[e.selectedIndex].text;}
+else {
+ return "";
+}
+}
+
+function newFileName(){
+if(document.getElementById("newFileName")){
+ var fileName = document.getElementById("newFileName").value;
+ var patt = /\.xml/i;
+ if(patt.test(fileName)){
+ return fileName;
+ } else {
+ return fileName+".xml";
+ }
+} else {
+ return "";
+}
+}
var visHash= new Object();
function reloadSpecTree(){
-getdata('$me?print=spectree&configFile='+selectedConfigFile(),'roterBereich',false);
+var file_ = encodeURIComponent(selectedConfigFile());
+getdata('$me?print=spectree&configFile='+file_,'roterBereich',false);
for (var key in visHash) {
if(visHash[key]==true){
showElement(key);
}
function reloadSetTree(){
-getdata('$me?print=settree&configFile='+selectedConfigFile(),'blauerBereich',false);
+var file_ = encodeURIComponent(selectedConfigFile());
+getdata('$me?print=settree&configFile='+file_,'blauerBereich',false);
for (var key in visHash) {
if(visHash[key]==true){
showElement(key);
function loadFile(){
debugOutput("load data from "+selectedConfigFile());
+visHash = new Object();
reloadSpecTree();
reloadSetTree();
reloadFileSelection();
}
+function createFile(){
+ debugOutput("NewFileName: "+newFileName());
+ var configFile_ = encodeURIComponent(newFileName());
+ var specFile_ = encodeURIComponent(selectedSpecFile());
+ getdata("$me?action=createFile&configFile="+configFile_+"&specFile="+specFile_,"debug",false);
+ getdata('$me?print=fileSelection&configFile='+configFile_,'fileSelection',false);
+ loadFile();
+
+}
+
function reloadFileSelection(){
var file_ = encodeURIComponent(selectedConfigFile());
getdata('$me?print=fileSelection&configFile='+file_,'fileSelection',false);