[Mapbender-commits] r2253 - in branches/nimix_dev: http/javascripts resources/db/update

svn_mapbender at osgeo.org svn_mapbender at osgeo.org
Fri Mar 14 07:09:13 EDT 2008


Author: nimix
Date: 2008-03-14 07:09:13 -0400 (Fri, 14 Mar 2008)
New Revision: 2253

Modified:
   branches/nimix_dev/http/javascripts/mod_addWMSfromfilteredList_ajax.php
   branches/nimix_dev/resources/db/update/update_guis_iso.sql
   branches/nimix_dev/resources/db/update/update_guis_utf8.sql
Log:
addwms url input field

Modified: branches/nimix_dev/http/javascripts/mod_addWMSfromfilteredList_ajax.php
===================================================================
--- branches/nimix_dev/http/javascripts/mod_addWMSfromfilteredList_ajax.php	2008-03-14 11:07:58 UTC (rev 2252)
+++ branches/nimix_dev/http/javascripts/mod_addWMSfromfilteredList_ajax.php	2008-03-14 11:09:13 UTC (rev 2253)
@@ -25,7 +25,6 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset='<?php echo CHARSET;?>'>
 <title>Add WMS from Filtered Catalog</title>
-<link rel="stylesheet" type="text/css" href="../css/administration_alloc.css">
 <STYLE TYPE="text/css">
 <!--
 body{
@@ -51,6 +50,13 @@
 ?>
 <script type="text/javascript">
 <!--
+//set defaults of element vars
+try{if(option_all){}}catch(e){option_all='1';};
+try{if(option_group){}}catch(e){option_all='1';};
+try{if(option_gui){}}catch(e){option_all='1';};
+try{if(option_db){}}catch(e){option_all='1';};
+try{if(capabilitiesInput){}}catch(e){capabilitiesInput='0';};
+
 var global_source = "capabilities";  // "capabilities" || "db"
 var phpUrl = "../php/mod_addWMSfromfilteredList_server.php";
 
@@ -61,7 +67,7 @@
 }
 
 function mod_addWMSfromfilteredList(pointer_name,version){
-
+//TODO: load active
 	var load = false;
 	var conjunctionCharacter = window.opener.mb_getConjunctionCharacter(pointer_name);
 	
@@ -76,6 +82,11 @@
 	}
 }
 
+function mod_addWmsfromURL(){
+	cap = document.getElementById("CapURL").value;
+	window.opener.mod_addWMS_load(cap);
+}
+
 // -----------------  Retrieve data --------------------
 
 function setSource(sourceValue) {
@@ -183,22 +194,43 @@
 }
 
 function setButtons() {
-	if (typeof(option_all) != "undefined" && option_all == '0') {
+	//if only one is active load list imidiately
+	if(parseInt(option_all)+parseInt(option_group)
+		+parseInt(option_gui)+parseInt(option_db)===1){
+		var child;
+		if(option_all=='1')
+			child = document.getElementById("button_all"); 
+		else if(option_group=='1')
+			child = document.getElementById("button_group");
+		else if(option_gui=='1')
+			child = document.getElementById("button_gui");
+		else
+			child = document.getElementById("button_db");
+		
+		child.onclick();
+		child.parentNode.removeChild(child);
+	}
+	
+	if (option_all == '0') {
 		var child = document.getElementById("button_all"); 
 		child.parentNode.removeChild(child);
 	}
-	if (typeof(option_group) != "undefined" && option_group == '0') {
+	if (option_group == '0') {
 		var child = document.getElementById("button_group");
 		child.parentNode.removeChild(child);
 	}
-	if (typeof(option_gui) != "undefined" && option_gui == '0') {
+	if (option_gui == '0') {
 		var child = document.getElementById("button_gui");
 		child.parentNode.removeChild(child);
 	}
-	if (typeof(option_db) != "undefined" && option_db == '0') {
+	if (option_db == '0') {
 		var child = document.getElementById("button_db");
 		child.parentNode.removeChild(child);
 	}
+	if (capabilitiesInput == '0') {
+		var child = document.getElementById("capabilitiesForm");
+		child.parentNode.removeChild(child);
+	}
 }
 
 function displayGroups (groupArray) {
@@ -254,6 +286,16 @@
 </head>
 <body onLoad="window.focus();setButtons();">
 
+<form name='addURLForm' id="capabilitiesForm">
+	<table border='0' cellpadding='3'  rules='rows'>
+		<tr>
+			<td>Capabilities - URL:</td>
+			<td><input type="text" id="CapURL" name="CapURL"/></td>
+			<td><input type="button" value="Hinzuf&uuml;gen" onclick="mod_addWmsfromURL();"></td>
+		</tr>
+	</table>
+</form>
+
 <form name='addWMSForm'>
 	<table border='0' cellpadding='3'  rules='rows'>
 		<tr>

Modified: branches/nimix_dev/resources/db/update/update_guis_iso.sql
===================================================================
--- branches/nimix_dev/resources/db/update/update_guis_iso.sql	2008-03-14 11:07:58 UTC (rev 2252)
+++ branches/nimix_dev/resources/db/update/update_guis_iso.sql	2008-03-14 11:09:13 UTC (rev 2253)
@@ -73,6 +73,7 @@
 INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES ('gui', 'addWMSfromfilteredList_ajax', 'selectWmsText', 'Please select a WMS:', 'a text asking the user to select a WMS', 'var');
 INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES ('gui', 'addWMSfromfilteredList_ajax', 'wmsAbstractText', 'WMS abstract', 'table header for WMS abstract', 'var');
 INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES ('gui', 'addWMSfromfilteredList_ajax', 'wmsNameText', 'WMS name', 'table header for WMS name', 'var');
+INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES ('gui', 'addWMSfromfilteredList_ajax', 'capabilitiesInput', '0', 'additional Input field for custom WMS', 'var');
 INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES ('gui', 'body', 'css_class_bg', 'body{ background-color: #ffffff; }', 'to define the color of the body', 'text/css');
 INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES ('gui', 'body', 'css_file_body', '../css/mapbender.css', 'file/css', 'file/css');
 INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES ('gui', 'copyright', 'mod_copyright_text', 'mapbender.org', 'define a copyright text which should be displayed', 'var');
@@ -211,6 +212,7 @@
 INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES ('gui1', 'addWMSfromfilteredList_ajax', 'selectWmsText', 'Please select a WMS:', 'a text asking the user to select a WMS', 'var');
 INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES ('gui1', 'addWMSfromfilteredList_ajax', 'wmsAbstractText', 'WMS abstract', 'table header for WMS abstract', 'var');
 INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES ('gui1', 'addWMSfromfilteredList_ajax', 'wmsNameText', 'WMS name', 'table header for WMS name', 'var');
+INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES ('gui1', 'addWMSfromfilteredList_ajax', 'capabilitiesInput', '0', 'additional Input field for custom WMS', 'var');
 INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES ('gui1', 'body', 'css_class_bg', 'body{ background-color: #ffffff; }', 'to define the color of the body', 'text/css');
 INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES ('gui1', 'body', 'css_file_body', '../css/mapbender.css', 'file/css', 'file/css');
 INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES ('gui1', 'copyright', 'mod_copyright_text', 'mapbender.org', 'define a copyright text which should be displayed', 'var');
@@ -320,6 +322,7 @@
 INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES ('gui2', 'addWMSfromfilteredList_ajax', 'selectWmsText', 'Please select a WMS:', 'a text asking the user to select a WMS', 'var');
 INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES ('gui2', 'addWMSfromfilteredList_ajax', 'wmsAbstractText', 'WMS abstract', 'table header for WMS abstract', 'var');
 INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES ('gui2', 'addWMSfromfilteredList_ajax', 'wmsNameText', 'WMS name', 'table header for WMS name', 'var');
+INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES ('gui2', 'addWMSfromfilteredList_ajax', 'capabilitiesInput', '0', 'additional Input field for custom WMS', 'var');
 INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES ('gui2', 'body', 'css_class_bg', 'body{background-color: #FEF8D4;}', 'to define the color of the body', 'text/css');
 INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES ('gui2', 'body', 'css_file_body', '../css/mapbender.css', 'file/css', 'file/css');
 INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES ('gui2', 'copyright', 'mod_copyright_text', 'mapbender.org', 'define a copyright text which should be displayed', 'var');
@@ -588,7 +591,7 @@
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin1','editGUI_WMS',2,1,'edit the elements of the gui','a','','href="../php/mod_editGuiWms.php?sessionID"'' target="AdminFrame"',10,90,200,20,0,'font-family: Arial, Helvetica, sans-serif; font-size : 12px; text-decoration : none; color: #808080;','EDIT GUI-WMS','a','','','','AdminFrame','http://www.mapbender.org/index.php/Edit_GUI_WMS');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin1','editGroup',2,1,'edit group','a','','href = "../php/mod_editGroup.php?sessionID" target = "AdminFrame" ',10,510,200,20,0,'font-family: Arial, Helvetica, sans-serif; font-size : 12px; text-decoration : none; color: #808080;','EDIT GROUP','a','','','','AdminFrame','http://www.mapbender.org/index.php/user');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin1','editUser',2,1,'save, edit, delete user','a','','href = "../php/mod_editUser.php?sessionID" target="AdminFrame"',10,330,200,20,0,'font-family: Arial, Helvetica, sans-serif; font-size : 12px; text-decoration : none; color: #808080;','EDIT USER','a','','','','AdminFrame','http://www.mapbender.org/index.php/user');
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin1','exportGUI',2,1,'export gui, create SQLL','a','','href = "../php/mod_exportGUI.php?sessionID" target = "AdminFrame" ',10,310,200,20,0,'font-family: Arial, Helvetica, sans-serif; font-size : 12px; text-decoration : none; color: #808080;','EXPORT GUI','a','','','','AdminFrame','http://www.mapbender.org/index.php/Oberfläche_exportieren_%28SQL%29');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin1','exportGUI',2,1,'export gui, create SQLL','a','','href = "../php/mod_exportGUI.php?sessionID" target = "AdminFrame" ',10,310,200,20,0,'font-family: Arial, Helvetica, sans-serif; font-size : 12px; text-decoration : none; color: #808080;','EXPORT GUI','a','','','','AdminFrame','http://www.mapbender.org/index.php/Oberfl�che_exportieren_%28SQL%29');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin1','filteredGoup_filteredUser',2,1,'allocate the groups of this admin to user where the admin is owner','a','','href = "../php/mod_filteredGroup_filteredUser.php?sessionID&e_id_css=filteredGoup_filteredUser" target = "AdminFrame" ',10,590,200,20,0,'font-family: Arial, Helvetica, sans-serif; font-size : 12px; text-decoration : none; color: #808080;','myGROUP -> myUSER ','a','','','','AdminFrame','http://www.mapbender.org/index.php/user');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin1','filteredGroup_Gui',2,1,'allocate groups of this admin to guis','a','','href = "../php/mod_filteredGroup_Gui.php?sessionID&e_id_css=filteredGroup_Gui" target = "AdminFrame" ',10,750,200,20,0,'font-family: Arial, Helvetica, sans-serif; font-size : 12px; text-decoration : none; color: #808080;','myGROUP -> GUI','a','','','','AdminFrame','http://www.mapbender.org/index.php/user');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin1','filteredGroup_User',2,1,'allocate groups of this admin to user','a','','href = "../php/mod_filteredGroup_User.php?sessionID&e_id_css=filteredGroup_User" target = "AdminFrame" ',10,690,200,20,0,'font-family: Arial, Helvetica, sans-serif; font-size : 12px; text-decoration : none; color: #808080;','myGROUP -> USER','a','','','','AdminFrame','http://www.mapbender.org/index.php/user');
@@ -611,7 +614,7 @@
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin1','loadWMS',2,1,'load capabilities in a gui','a','','href = "../php/mod_loadCapabilities.php?sessionID" target="AdminFrame"',10,30,200,20,0,'font-family: Arial, Helvetica, sans-serif; font-size : 12px; text-decoration : none; color: #808080;','LOAD WMS','a','','','','AdminFrame','http://www.mapbender.org/index.php/Add_new_maps_to_Mapbender');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin1','loadWMSList',2,1,'load wms from a list','a','','href = "../php/mod_loadCapabilitiesList.php?sessionID" target="AdminFrame"',10,50,200,20,0,'font-family: Arial, Helvetica, sans-serif; font-size : 12px; text-decoration : none; color: #808080;','LOAD myWMS','a','','','','AdminFrame','http://www.mapbender.org/index.php/Add_new_maps_to_Mapbender');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin1','logout',2,1,'Logout','img','../img/button_gray/logout_off.png','onClick="window.location.href=''../php/mod_logout.php?sessionID''" border=''0'' onmouseover=''this.src="../img/button_gray/logout_over.png"'' onmouseout=''this.src="../img/button_gray/logout_off.png"'' title="Logout"',180,2,24,24,1,'','','img','','','','','http://www.mapbender.org/index.php/logout');
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin1','myGUIlist',2,1,'go back to your GUI list','img','../img/button_gray/home_off.png','onClick="mod_home_init()" border=''0'' onmouseover=''this.src="../img/button_gray/home_over.png"'' onmouseout=''this.src="../img/button_gray/home_off.png"'' title="move back to your GUI list / zurück zur GUI Liste"',150,2,24,24,1,'','','img','mod_home.php','','','','http://www.mapbender.org/index.php/MyGUIlist');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin1','myGUIlist',2,1,'go back to your GUI list','img','../img/button_gray/home_off.png','onClick="mod_home_init()" border=''0'' onmouseover=''this.src="../img/button_gray/home_over.png"'' onmouseout=''this.src="../img/button_gray/home_off.png"'' title="move back to your GUI list / zur�ck zur GUI Liste"',150,2,24,24,1,'','','img','mod_home.php','','','','http://www.mapbender.org/index.php/MyGUIlist');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin1','newGui',2,1,'create a new gui','a','','href = "../php/mod_newGui.php?sessionID" target = "AdminFrame" ',10,130,200,20,NULL ,'font-family: Arial, Helvetica, sans-serif; font-size : 12px; text-decoration : none;color: #808080;','NEW GUI','a','','','','AdminFrame','http://www.mapbender.org/index.php/newGUI');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin1','orphanWMS',2,1,'display orphaned WMS','a','','href = "../php/mod_orphanWMS.php?sessionID&&elementID=orphanWMS" target = "AdminFrame"',10,930,200,20,5,'font-family: Arial, Helvetica, sans-serif; font-size : 12px; text-decoration : none; color: #808080;','ORPHAN WMS','a','','','','AdminFrame','http://www.mapbender.org/index.php/OrphanWMS');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin1','owsproxy',2,1,'secure services','a','','href="../php/mod_owsproxy_conf.php?sessionID"'' target="AdminFrame"',10,910,200,20,1,'font-family: Arial, Helvetica, sans-serif; font-size : 12px; text-decoration : none; color: #808080;','OWSPROXY','a','','','','AdminFrame','');
@@ -656,30 +659,30 @@
 Delete from gui_element where fkey_gui_id ='admin2_de';
 
 
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','AdminFrame',2,1,'Bereich für Administrationsmodule','iframe','','frameborder = "0"',200,20,800,800,0,'','','iframe','','','','','');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','AdminFrame',2,1,'Bereich f�r Administrationsmodule','iframe','','frameborder = "0"',200,20,800,800,0,'','','iframe','','','','','');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','CreateTreeGDE',2,1,'Ordnerbaum konfigurieren','a','','href = "../php/nestedSets.php?sessionID" target = "AdminFrame" ',8,280,190,20,5,'','Ordnerbaum konfigurieren','a','','','','AdminFrame','http://www.mapbender.org/index.php/ConfTreeGde');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','body',1,1,'Navigation','body','','onload=''mod_adminNavigation_init()''',0,0,180,20,0,'','','','mod_adminNavigation.js','','','','');
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','deleteWMS',2,1,'!Vollständig löschen!','a','','href = "../php/mod_deleteWMS.php?sessionID" target = "AdminFrame" ',8,100,190,20,5,'','!Vollständig löschen!','a','','','','AdminFrame','http://www.mapbender.org/index.php/DeleteWMS');
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','delete_filteredGui',2,1,'GUI löschen','a','','href = "../php/mod_deleteFilteredGUI.php?sessionID" target = "AdminFrame" ',110,240,80,20,5,'','GUI löschen','a','','','','AdminFrame','http://www.mapbender.org/index.php/DeleteGUI');
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','editElements',2,1,'Oberflächenelemente editieren','a','','href = "../php/mod_editElements.php?sessionID" target = "AdminFrame" ',8,260,190,20,5,'','GUI-Elemente editieren','a','','','','AdminFrame','http://www.mapbender.org/index.php/Edit_GUI_Elements');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','deleteWMS',2,1,'!Vollst�ndig l�schen!','a','','href = "../php/mod_deleteWMS.php?sessionID" target = "AdminFrame" ',8,100,190,20,5,'','!Vollst�ndig l�schen!','a','','','','AdminFrame','http://www.mapbender.org/index.php/DeleteWMS');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','delete_filteredGui',2,1,'GUI l�schen','a','','href = "../php/mod_deleteFilteredGUI.php?sessionID" target = "AdminFrame" ',110,240,80,20,5,'','GUI l�schen','a','','','','AdminFrame','http://www.mapbender.org/index.php/DeleteGUI');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','editElements',2,1,'Oberfl�chenelemente editieren','a','','href = "../php/mod_editElements.php?sessionID" target = "AdminFrame" ',8,260,190,20,5,'','GUI-Elemente editieren','a','','','','AdminFrame','http://www.mapbender.org/index.php/Edit_GUI_Elements');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','editFilteredGroup',2,1,'Gruppe anlegen und editieren','a','','href = "../php/mod_editFilteredGroup.php?sessionID" target = "AdminFrame" ',8,400,190,20,10,'','Gruppe anlegen und editieren','a','','','','AdminFrame','http://www.mapbender.org/index.php/user');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','editFilteredUser',2,1,'Benutzer anlegen und editieren','a','','href = "../php/mod_editFilteredUser.php?sessionID" target="AdminFrame"',8,380,190,20,10,'','Benutzer anlegen und editieren','a','','','','AdminFrame','http://www.mapbender.org/index.php/user');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','editGUI_WMS',2,1,'WMS GUI Einstellungen','a','','href="../php/mod_editGuiWms.php?sessionID"'' target="AdminFrame"',8,180,190,20,5,'','WMS GUI Einstellungen','a','','','','AdminFrame','http://www.mapbender.org/index.php/Edit_GUI_WMS');
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','exportGUI',2,1,'Oberfläche (GUI) exportieren, SQL erzeugen','a','','href = "../php/mod_exportGUI.php?sessionID" target = "AdminFrame" ',8,300,190,20,10,'','GUI exportieren (SQL)','a','','','','AdminFrame','http://www.mapbender.org/index.php/Oberfläche_exportieren_%28SQL%29');
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','filteredGoup_filteredUser',2,1,'Gruppe mit Benutzern bestücken','a','','href = "../php/mod_filteredGroup_filteredUser.php?sessionID&e_id_css=filteredGoup_filteredUser" target = "AdminFrame" ',8,440,190,20,10,'','Gruppe mit Benutzern bestücken ','a','','','','AdminFrame','http://www.mapbender.org/index.php/user');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','exportGUI',2,1,'Oberfl�che (GUI) exportieren, SQL erzeugen','a','','href = "../php/mod_exportGUI.php?sessionID" target = "AdminFrame" ',8,300,190,20,10,'','GUI exportieren (SQL)','a','','','','AdminFrame','http://www.mapbender.org/index.php/Oberfl�che_exportieren_%28SQL%29');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','filteredGoup_filteredUser',2,1,'Gruppe mit Benutzern best�cken','a','','href = "../php/mod_filteredGroup_filteredUser.php?sessionID&e_id_css=filteredGoup_filteredUser" target = "AdminFrame" ',8,440,190,20,10,'','Gruppe mit Benutzern best�cken ','a','','','','AdminFrame','http://www.mapbender.org/index.php/user');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','filteredGroup_filteredGui',2,1,'Einzelner Gruppe mehrere Oberflaechen zuordnen','a','','href = "../php/mod_filteredGroup_filteredGui.php?sessionID&e_id_css=filteredGroup_filteredGui" target = "AdminFrame" ',8,570,190,25,10,'','Einzelner Gruppe mehrere <br>GUIs zuordnen','a','','','','AdminFrame','http://www.mapbender.org/index.php/user');
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','filteredGui_filteredGroup',2,1,'Einzelner Oberfläche mehrere Gruppen zuordnen','a','','href = "../php/mod_filteredGui_filteredGroup.php?sessionID&e_id_css=filteredGui_filteredGroup" target = "AdminFrame" ',8,605,190,25,10,'','Einzelner GUI mehrere<br> Gruppen zuordnen','a','','','','AdminFrame','http://www.mapbender.org/index.php/user');
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','filteredGui_filteredUser',2,1,'Oberfläche mehreren Benutzer zuordnen ','a','','href = "../php/mod_filteredGui_filteredUser.php?sessionID&e_id_css=filteredGui_filteredUser" target = "AdminFrame" ',8,535,190,25,10,'','GUI mehreren Benutzern <br> zuordnen','a','','','','AdminFrame','http://www.mapbender.org/index.php/user');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','filteredGui_filteredGroup',2,1,'Einzelner Oberfl�che mehrere Gruppen zuordnen','a','','href = "../php/mod_filteredGui_filteredGroup.php?sessionID&e_id_css=filteredGui_filteredGroup" target = "AdminFrame" ',8,605,190,25,10,'','Einzelner GUI mehrere<br> Gruppen zuordnen','a','','','','AdminFrame','http://www.mapbender.org/index.php/user');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','filteredGui_filteredUser',2,1,'Oberfl�che mehreren Benutzer zuordnen ','a','','href = "../php/mod_filteredGui_filteredUser.php?sessionID&e_id_css=filteredGui_filteredUser" target = "AdminFrame" ',8,535,190,25,10,'','GUI mehreren Benutzern <br> zuordnen','a','','','','AdminFrame','http://www.mapbender.org/index.php/user');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','filteredUser_filteredGroup',2,1,'Benutzer in Gruppen eintragen','a','','href = "../php/mod_filteredUser_filteredGroup.php?sessionID&e_id_css=filteredUser_filteredGroup" target = "AdminFrame" ',8,420,190,20,10,'','Benutzer in Gruppen eintragen','a','','','','AdminFrame','http://www.mapbender.org/index.php/user');
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','filteredUser_filteredGui',2,1,'Einem Nutzer Zugriff auf mehrere Oberflächen erteilen','a','','href = "../php/mod_filteredUser_filteredGui.php?sessionID&e_id_css=filteredUser_filteredGui" target = "AdminFrame" ',8,500,190,25,10,'','Einem Nutzer Zugriff auf <br> mehrere GUIs erteilen','a','','','','AdminFrame','http://www.mapbender.org/index.php/user');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','filteredUser_filteredGui',2,1,'Einem Nutzer Zugriff auf mehrere Oberfl�chen erteilen','a','','href = "../php/mod_filteredUser_filteredGui.php?sessionID&e_id_css=filteredUser_filteredGui" target = "AdminFrame" ',8,500,190,25,10,'','Einem Nutzer Zugriff auf <br> mehrere GUIs erteilen','a','','','','AdminFrame','http://www.mapbender.org/index.php/user');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','gui_owner',2,1,'GUI editieren Benutzer zuordnen','a','','href = "../php/mod_gui_owner.php?sessionID" target = "AdminFrame" ',8,640,190,20,10,'','GUI editieren Benutzer zuordnen','a','','','','AdminFrame','http://www.mapbender.org/index.php/user');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','help',2,1,'button help','img','../img/button_gray/help_off.png','onmouseover = "mb_regButton(''init_help'')" title="help"',210,2,24,24,1,'','','','mod_help.php','../extensions/wz_jsgraphics.js','','jsGraphics','http://www.mapbender.org');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','layout_0',3,1,'Hintergrund WMS Verwaltung Rahmen','div','','',3,35,193,90,1,'','','div','','','','','');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','layout_1',3,1,'Hintergrund WMS Management','div','','',5,37,193,86,2,'',' WMS Verwaltung','div','','','','','');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','layout_1a',3,1,'Hintergrund WMS Zuordnung Rahmen','div','','',3,135,193,70,1,'','','div','','','','','');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','layout_1b',3,1,'Hintergrund WMS Zuordnung','div','','',5,137,193,66,2,'',' WMS Zuordnung','div','','','','','');
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','layout_1c',3,1,'Hintergrund Oberflächenverwaltung Rahmen','div','','',3,215,193,130,1,'','','div','','','','','');
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','layout_1d',3,1,'Hintergrund Oberflächenverwaltung','div','','',5,217,193,126,2,'',' GUI-Verwaltung','div','','','','','');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','layout_1c',3,1,'Hintergrund Oberfl�chenverwaltung Rahmen','div','','',3,215,193,130,1,'','','div','','','','','');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','layout_1d',3,1,'Hintergrund Oberfl�chenverwaltung','div','','',5,217,193,126,2,'',' GUI-Verwaltung','div','','','','','');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','layout_2',3,1,'Hintergrund Benutzerverwaltung Rahmen','div','','',3,355,193,110,1,'','','div','','','','','');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','layout_3',3,1,'Hintergrund Benutzerverwaltung','div','','',5,357,193,106,2,'',' Benutzerverwaltung','div','','','','','');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','layout_4',3,1,'Hintergrund Benutzerzugriff erteilen Rahmen','div','','',3,475,193,200,1,'','','div','','','','','');
@@ -687,7 +690,7 @@
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','loadWMS',2,1,'Capabilities hochladen','a','','href = "../php/mod_loadCapabilities.php?sessionID" target="AdminFrame"',8,60,190,20,5,'','Capabilities hochladen','a','','','','AdminFrame','http://www.mapbender.org/index.php/Add_new_maps_to_Mapbender');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','loadWMSList',2,1,'WMS in GUI einbinden','a','','href = "../php/mod_loadCapabilitiesList.php?sessionID" target="AdminFrame"',8,160,190,20,5,'','WMS in GUI einbinden','a','','','','AdminFrame','http://www.mapbender.org/index.php/Add_new_maps_to_Mapbender');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','logout',2,1,'Logout','img','../img/button_gray/logout_off.png','onClick="window.location.href=''../php/mod_logout.php?sessionID''" border=''0'' onmouseover=''this.src="../img/button_gray/logout_over.png"'' onmouseout=''this.src="../img/button_gray/logout_off.png"'' title="Logout"',180,2,24,24,2,'','','img','','','','','http://www.mapbender.org/index.php/logout');
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','myGUIlist',2,1,'Zurück zur eigenen GUI Liste','img','../img/button_gray/home_off.png','onClick="mod_home_init()" border=''0'' onmouseover=''this.src="../img/button_gray/home_over.png"'' onmouseout=''this.src="../img/button_gray/home_off.png"'' title="move back to your GUI list / zurück zur GUI Liste"',150,2,24,24,2,'','','img','mod_home.php','','','','http://www.mapbender.org/index.php/MyGUIlist');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','myGUIlist',2,1,'Zur�ck zur eigenen GUI Liste','img','../img/button_gray/home_off.png','onClick="mod_home_init()" border=''0'' onmouseover=''this.src="../img/button_gray/home_over.png"'' onmouseout=''this.src="../img/button_gray/home_off.png"'' title="move back to your GUI list / zur�ck zur GUI Liste"',150,2,24,24,2,'','','img','mod_home.php','','','','http://www.mapbender.org/index.php/MyGUIlist');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','newGui',2,1,'GUI erzeugen','a','','href = "../php/mod_newGui.php?sessionID" target = "AdminFrame" ',8,240,85,20,5,'','GUI erzeugen','a','','','','AdminFrame','http://www.mapbender.org/index.php/newGUI');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','rename_copy_Gui',2,1,'GUI umbenennen/ kopieren','a','','href = "../php/mod_renameGUI.php?sessionID" target = "AdminFrame" ',8,320,190,20,10,'','GUI umbenennen/kopieren','a','','','','AdminFrame','');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','showLoggedUser',2,1,'Anzeige des eingeloggten Benutzers','iframe','../php/mod_showLoggedUser.php?sessionID','frameborder="0" scrolling=''no''',1,1,200,30,1,'background-color:lightgrey;','','iframe','','','','','');
@@ -718,7 +721,7 @@
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_en','editFilteredGroup',2,1,'Create and edit group','a','','href = "../php/mod_editFilteredGroup.php?sessionID" target = "AdminFrame" ',8,400,190,20,10,'','Create and edit group','a','','','','AdminFrame','http://www.mapbender.org/index.php/user');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_en','editFilteredUser',2,1,'Create and edit user','a','','href = "../php/mod_editFilteredUser.php?sessionID" target="AdminFrame"',8,380,190,20,10,'','Create and edit user','a','','','','AdminFrame','http://www.mapbender.org/index.php/user');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_en','editGUI_WMS',2,1,'WMS GUI settings','a','','href="../php/mod_editGuiWms.php?sessionID"'' target="AdminFrame"',8,180,190,20,5,'','WMS GUI settings','a','','','','AdminFrame','http://www.mapbender.org/index.php/Edit_GUI_WMS');
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_en','exportGUI',2,1,'export GUI, create SQL','a','','href = "../php/mod_exportGUI.php?sessionID" target = "AdminFrame" ',8,300,190,20,10,'','Export GUI (SQL)','a','','','','AdminFrame','http://www.mapbender.org/index.php/Oberfläche_exportieren_%28SQL%29');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_en','exportGUI',2,1,'export GUI, create SQL','a','','href = "../php/mod_exportGUI.php?sessionID" target = "AdminFrame" ',8,300,190,20,10,'','Export GUI (SQL)','a','','','','AdminFrame','http://www.mapbender.org/index.php/Oberfl�che_exportieren_%28SQL%29');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_en','filteredGoup_filteredUser',2,1,'Add several users to one group','a','','href = "../php/mod_filteredGroup_filteredUser.php?sessionID&e_id_css=filteredGoup_filteredUser" target = "AdminFrame" ',8,440,190,20,10,'','Add several users to one group ','a','','','','AdminFrame','http://www.mapbender.org/index.php/user');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_en','filteredGroup_filteredGui',2,1,'Allow one group access to several GUIs','a','','href = "../php/mod_filteredGroup_filteredGui.php?sessionID&e_id_css=filteredGroup_filteredGui" target = "AdminFrame" ',8,570,190,25,10,'','Allow one group access to <br> several GUIs','a','','','','AdminFrame','http://www.mapbender.org/index.php/user');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_en','filteredGui_filteredGroup',2,1,'Allow several groups access to one GUI','a','','href = "../php/mod_filteredGui_filteredGroup.php?sessionID&e_id_css=filteredGui_filteredGroup" target = "AdminFrame" ',8,605,190,25,10,'','Allow several groups access <br> to one GUI','a','','','','AdminFrame','http://www.mapbender.org/index.php/user');
@@ -740,7 +743,7 @@
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_en','loadWMS',2,1,'Load Capabilities','a','','href = "../php/mod_loadCapabilities.php?sessionID" target="AdminFrame"',8,60,190,20,5,'','Load Capabilities','a','','','','AdminFrame','http://www.mapbender.org/index.php/Add_new_maps_to_Mapbender');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_en','loadWMSList',2,1,'Link WMS into GUI','a','','href = "../php/mod_loadCapabilitiesList.php?sessionID" target="AdminFrame"',8,160,190,20,5,'','Link WMS into GUI','a','','','','AdminFrame','http://www.mapbender.org/index.php/Add_new_maps_to_Mapbender');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_en','logout',2,1,'Logout','img','../img/button_gray/logout_off.png','onClick="window.location.href=''../php/mod_logout.php?sessionID''" border=''0'' onmouseover=''this.src="../img/button_gray/logout_over.png"'' onmouseout=''this.src="../img/button_gray/logout_off.png"'' title="Logout"',180,2,24,24,2,'','','img','','','','','http://www.mapbender.org/index.php/logout');
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_en','myGUIlist',2,1,'go back to your GUI list','img','../img/button_gray/home_off.png','onClick="mod_home_init()" border=''0'' onmouseover=''this.src="../img/button_gray/home_over.png"'' onmouseout=''this.src="../img/button_gray/home_off.png"'' title="move back to your GUI list / zurück zur GUI Liste"',150,2,24,24,2,'','','img','mod_home.php','','','','');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_en','myGUIlist',2,1,'go back to your GUI list','img','../img/button_gray/home_off.png','onClick="mod_home_init()" border=''0'' onmouseover=''this.src="../img/button_gray/home_over.png"'' onmouseout=''this.src="../img/button_gray/home_off.png"'' title="move back to your GUI list / zur�ck zur GUI Liste"',150,2,24,24,2,'','','img','mod_home.php','','','','');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_en','newGui',2,1,'Create new GUI','a','','href = "../php/mod_newGui.php?sessionID" target = "AdminFrame" ',8,240,110,20,5,'','Create new GUI','a','','','','AdminFrame','http://www.mapbender.org/index.php/newGUI');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_en','rename_copy_Gui',2,1,'Rename/ copy GUI','a','','href = "../php/mod_renameGUI.php?sessionID" target = "AdminFrame" ',8,320,190,20,10,'','Rename / copy GUI','a','','','','AdminFrame','');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_en','showLoggedUser',2,1,'Logged User:','iframe','../php/mod_showLoggedUser.php?sessionID','frameborder="0" scrolling=''no''',1,1,200,30,1,'background-color:lightgrey;','','iframe','','','','','');
@@ -763,19 +766,19 @@
 Delete from gui_element where fkey_gui_id ='admin_de_services';
 
 
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','AdminFrame',2,1,'Bereich für Administrationsmodule','iframe','','frameborder = "0"',210,25,800,800,12,'','','iframe','','','','','');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','AdminFrame',2,1,'Bereich f�r Administrationsmodule','iframe','','frameborder = "0"',210,25,800,800,12,'','','iframe','','','','','');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','CreateTreeGDE',2,1,'Ordnerbaum konfigurieren','a','','href = "../php/nestedSets.php?sessionID" target = "AdminFrame" ',10,516,200,20,5,'','Ordnerbaum konfigurieren','a','','','','AdminFrame','');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','EditWMSMetadata',2,1,'edit the metadata of wms','a','','href = "../php/mod_editWMS_Metadata.php?show_wms_list=true&sessionID" target="AdminFrame"',10,275,200,20,5,'','WMS Metadaten','a','','','','AdminFrame','http://www.mapbender.org/index.php/Edit_WMS_Metadata');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','body',1,1,'Navigation','body','','onload=''mod_adminNavigation_init()''',NULL ,NULL ,NULL ,NULL ,NULL ,'','','','mod_adminNavigation.js','','','','');
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','deleteWFS',2,1,'WFS löschen','a','','href = "../php/mod_deleteWFS.php?sessionID" target = "AdminFrame" ',10,393,200,20,5,'','WFS löschen','a','','','','AdminFrame','http://www.mapbender.org/index.php/DeleteWFS');
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','deleteWMS',2,1,'!Vollständig löschen!','a','','href = "../php/mod_deleteWMS.php?sessionID" target = "AdminFrame" ',10,100,200,20,5,'','WMS löschen!','a','','','','AdminFrame','http://www.mapbender.org/index.php/DeleteWMS');
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','delete_filteredGui',2,1,'GUI löschen','a','','href = "../php/mod_deleteFilteredGUI.php?sessionID" target = "AdminFrame" ',10,471,200,20,5,'','GUI löschen','a','','','','AdminFrame','http://www.mapbender.org/index.php/DeleteGUI');
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','editElements',2,1,'Oberflächenelemente editieren','a','','href = "../php/mod_editElements.php?sessionID" target = "AdminFrame" ',10,491,200,25,5,'','GUI editieren','a','','','','AdminFrame','http://www.mapbender.org/index.php/Edit_GUI_Elements');
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','editGUI_WMS',2,1,'WMS GUI Einstellungen','a','','href="../php/mod_editGuiWms.php?sessionID"'' target="AdminFrame"',10,218,200,20,5,'','WMS Einstellungen ändern','a','','','','AdminFrame','http://www.mapbender.org/index.php/Edit_GUI_WMS');
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','exportGUI',2,1,'GUI exportieren, SQL erzeugen','a','','href = "../php/mod_exportGUI.php?sessionID" target = "AdminFrame" ',10,536,200,25,10,'x','GUI exportieren (SQL)','a','','','','AdminFrame','http://www.mapbender.org/index.php/Oberfläche_exportieren_%28SQL%29');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','deleteWFS',2,1,'WFS l�schen','a','','href = "../php/mod_deleteWFS.php?sessionID" target = "AdminFrame" ',10,393,200,20,5,'','WFS l�schen','a','','','','AdminFrame','http://www.mapbender.org/index.php/DeleteWFS');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','deleteWMS',2,1,'!Vollst�ndig l�schen!','a','','href = "../php/mod_deleteWMS.php?sessionID" target = "AdminFrame" ',10,100,200,20,5,'','WMS l�schen!','a','','','','AdminFrame','http://www.mapbender.org/index.php/DeleteWMS');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','delete_filteredGui',2,1,'GUI l�schen','a','','href = "../php/mod_deleteFilteredGUI.php?sessionID" target = "AdminFrame" ',10,471,200,20,5,'','GUI l�schen','a','','','','AdminFrame','http://www.mapbender.org/index.php/DeleteGUI');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','editElements',2,1,'Oberfl�chenelemente editieren','a','','href = "../php/mod_editElements.php?sessionID" target = "AdminFrame" ',10,491,200,25,5,'','GUI editieren','a','','','','AdminFrame','http://www.mapbender.org/index.php/Edit_GUI_Elements');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','editGUI_WMS',2,1,'WMS GUI Einstellungen','a','','href="../php/mod_editGuiWms.php?sessionID"'' target="AdminFrame"',10,218,200,20,5,'','WMS Einstellungen �ndern','a','','','','AdminFrame','http://www.mapbender.org/index.php/Edit_GUI_WMS');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','exportGUI',2,1,'GUI exportieren, SQL erzeugen','a','','href = "../php/mod_exportGUI.php?sessionID" target = "AdminFrame" ',10,536,200,25,10,'x','GUI exportieren (SQL)','a','','','','AdminFrame','http://www.mapbender.org/index.php/Oberfl�che_exportieren_%28SQL%29');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','filteredWms_layer_topic',2,1,'allocate topics to layers of wms of this user','a','','href = "../php/mod_filteredWms_layer_topic.php?sessionID&e_id_css=filteredWms_layer_topic" target = "AdminFrame" ',10,295,200,20,5,'','Kategoriezuordnung','a','','','','AdminFrame','http://www.mapbender.org/index.php/Topic_/_Category');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','headline_Configure_WMS_Access',3,1,'Hintergrund WMS Zuordnung','div','','',1,175,210,63,2,'','WMS Zuordnung','div','','','','','');
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','headline_GUI_Management',3,1,'Oberflächenverwaltung','div','','',1,428,210,153,2,'','GUI Verwaltung','div','','','','','');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','headline_GUI_Management',3,1,'Oberfl�chenverwaltung','div','','',1,428,210,153,2,'','GUI Verwaltung','div','','','','','');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','headline_Metadata',3,1,'Metadateneditor Caption','div','','',1,252,210,63,2,'','Metadaten','div','','','','','');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','headline_WFS_Management',3,1,'WFS Verwaltung','div','','',1,330,210,82,2,'','WFS Verwaltung','div','','','','','');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','headline_WMS_Management',3,1,'Dienstverwaltung Beschriftung','div','','',0,37,210,123,2,'','WMS Verwaltung','div','','','','','');
@@ -784,10 +787,10 @@
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','loadWMS',2,1,'Capabilities hochladen','a','','href = "../php/mod_loadCapabilities.php?sessionID" target="AdminFrame"',10,60,200,20,5,'','WMS laden','a','','','','AdminFrame','http://www.mapbender.org/index.php/Add_new_maps_to_Mapbender');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','loadWMSList',2,1,'WMS in GUI einbinden','a','','href = "../php/mod_loadCapabilitiesList.php?sessionID" target="AdminFrame"',10,198,200,20,5,'','WMS einbinden','a','','','','AdminFrame','http://www.mapbender.org/index.php/Add_new_maps_to_Mapbender');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','logout',2,1,'Logout','img','../img/button_gray/logout_off.png','onClick="window.location.href=''../php/mod_logout.php?sessionID''" border=''0'' onmouseover=''this.src="../img/button_gray/logout_over.png"'' onmouseout=''this.src="../img/button_gray/logout_off.png"'' title="Logout"',180,2,24,24,2,'','','img','','','','','http://www.mapbender.org/index.php/logout');
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','myGUIlist',2,1,'Zurück zur eigenen GUI Liste','img','../img/button_gray/home_off.png','onClick="mod_home_init()" border=''0'' onmouseover=''this.src="../img/button_gray/home_over.png"'' onmouseout=''this.src="../img/button_gray/home_off.png"'' title="move back to your GUI list / zurück zur GUI Liste"',150,2,24,24,2,'','','img','mod_home.php','','','','http://www.mapbender.org/index.php/MyGUIlist');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','myGUIlist',2,1,'Zur�ck zur eigenen GUI Liste','img','../img/button_gray/home_off.png','onClick="mod_home_init()" border=''0'' onmouseover=''this.src="../img/button_gray/home_over.png"'' onmouseout=''this.src="../img/button_gray/home_off.png"'' title="move back to your GUI list / zur�ck zur GUI Liste"',150,2,24,24,2,'','','img','mod_home.php','','','','http://www.mapbender.org/index.php/MyGUIlist');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','newGui',2,1,'GUI erzeugen','a','','href = "../php/mod_newGui.php?sessionID" target = "AdminFrame" ',10,451,200,20,5,'','GUI erzeugen','a','','','','AdminFrame','http://www.mapbender.org/index.php/newGUI');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','orphanWMS',2,1,'display orphaned WMS','a','','href = "../php/mod_orphanWMS.php?sessionID" 
-target = "AdminFrame"',10,120,200,20,5,'','WMS ohne Zuordung löschen','a','','','','AdminFrame','http://www.mapbender.org/index.php/OrphanWMS');
+target = "AdminFrame"',10,120,200,20,5,'','WMS ohne Zuordung l�schen','a','','','','AdminFrame','http://www.mapbender.org/index.php/OrphanWMS');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','owsproxy',2,1,'secure services','a','','href="../php/mod_owsproxy_conf.php?sessionID"'' target="AdminFrame"',10,140,200,20,10,'','OWSPROXY','a','','','','AdminFrame','http://www.mapbender.org/index.php/Owsproxy');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','rename_copy_Gui',2,1,'GUI umbenennen/ kopieren','a','','href = "../php/mod_renameGUI.php?sessionID" target = "AdminFrame" ',10,561,200,20,10,'','GUI umbenennen/kopieren','a','','','','AdminFrame','http://www.mapbender.org/index.php/RenameGUI');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','showLoggedUser',2,1,'Anzeige des eingeloggten Benutzers','iframe','../php/mod_showLoggedUser.php?sessionID','frameborder="0" scrolling=''no''',1,1,200,30,1,'background-color:lightgrey;','','iframe','','','','','');
@@ -815,7 +818,7 @@
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_en_services','delete_filteredGui',2,1,'Delete GUI','a','','href = "../php/mod_deleteFilteredGUI.php?sessionID" target = "AdminFrame" ',10,471,200,20,5,'','Delete GUI','a','','','','AdminFrame','http://www.mapbender.org/index.php/DeleteGUI');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_en_services','editElements',2,1,'Edit GUI Elements','a','','href = "../php/mod_editElements.php?sessionID" target = "AdminFrame" ',10,491,200,20,5,'','Edit GUI Elements','a','','','','AdminFrame','http://www.mapbender.org/index.php/Edit_GUI_Elements');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_en_services','editGUI_WMS',2,1,'WMS GUI settings','a','','href="../php/mod_editGuiWms.php?sessionID"'' target="AdminFrame"',10,218,200,20,5,'','WMS GUI settings','a','','','','AdminFrame','http://www.mapbender.org/index.php/Edit_GUI_WMS');
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_en_services','exportGUI',2,1,'Export GUI (SQL), create SQL','a','','href = "../php/mod_exportGUI.php?sessionID" target = "AdminFrame" ',10,533,200,20,10,'x','Export GUI (SQL)','a','','','','AdminFrame','http://www.mapbender.org/index.php/Oberfläche_exportieren_%28SQL%29');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_en_services','exportGUI',2,1,'Export GUI (SQL), create SQL','a','','href = "../php/mod_exportGUI.php?sessionID" target = "AdminFrame" ',10,533,200,20,10,'x','Export GUI (SQL)','a','','','','AdminFrame','http://www.mapbender.org/index.php/Oberfl�che_exportieren_%28SQL%29');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_en_services','filteredWms_layer_topic',2,1,'allocate topics to layers of wms of this user','a','','href = "../php/mod_filteredWms_layer_topic.php?sessionID&e_id_css=filteredWms_layer_topic" target = "AdminFrame" ',10,295,200,20,5,'','Allocate topics','a','','','','AdminFrame','http://www.mapbender.org/index.php/Topic_/_Category');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_en_services','headline_Configure_WMS_Access',3,1,'WMS Assignment','div','','',1,175,210,63,2,'','WMS Assignment','div','','','','','');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_en_services','headline_GUI_Management',3,1,'GUI Management','div','','',1,428,210,148,2,'','GUI Management','div','','','','','');
@@ -827,7 +830,7 @@
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_en_services','loadWMS',2,1,'load Capabilities','a','','href = "../php/mod_loadCapabilities.php?sessionID" target="AdminFrame"',10,60,200,20,5,'','Load Capabilities','a','','','','AdminFrame','http://www.mapbender.org/index.php/Add_new_maps_to_Mapbender');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_en_services','loadWMSList',2,1,'assign WMS to a GUI','a','','href = "../php/mod_loadCapabilitiesList.php?sessionID" target="AdminFrame"',10,198,200,20,5,'','Assign WMS to a GUI','a','','','','AdminFrame','http://www.mapbender.org/index.php/Add_new_maps_to_Mapbender');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_en_services','logout',2,1,'Logout','img','../img/button_gray/logout_off.png','onClick="window.location.href=''../php/mod_logout.php?sessionID''" border=''0'' onmouseover=''this.src="../img/button_gray/logout_over.png"'' onmouseout=''this.src="../img/button_gray/logout_off.png"'' title="Logout"',180,2,24,24,2,'','','img','','','','','http://www.mapbender.org/index.php/logout');
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_en_services','myGUIlist',2,1,'back to GUI list','img','../img/button_gray/home_off.png','onClick="mod_home_init()" border=''0'' onmouseover=''this.src="../img/button_gray/home_over.png"'' onmouseout=''this.src="../img/button_gray/home_off.png"'' title="move back to your GUI list / zurück zur GUI Liste"',150,2,24,24,2,'','','img','mod_home.php','','','','http://www.mapbender.org/index.php/MyGUIlist');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_en_services','myGUIlist',2,1,'back to GUI list','img','../img/button_gray/home_off.png','onClick="mod_home_init()" border=''0'' onmouseover=''this.src="../img/button_gray/home_over.png"'' onmouseout=''this.src="../img/button_gray/home_off.png"'' title="move back to your GUI list / zur�ck zur GUI Liste"',150,2,24,24,2,'','','img','mod_home.php','','','','http://www.mapbender.org/index.php/MyGUIlist');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_en_services','newGui',2,1,'New GUI','a','','href = "../php/mod_newGui.php?sessionID" target = "AdminFrame" ',10,451,200,20,5,'','New GUI','a','','','','AdminFrame','http://www.mapbender.org/index.php/newGUI');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_en_services','orphanWMS',2,1,'Delete orphaned WMS','a','','href = "../php/mod_orphanWMS.php?sessionID" 
 target = "AdminFrame"',10,120,200,20,5,'','Delete orphaned WMS','a','','','','AdminFrame','http://www.mapbender.org/index.php/OrphanWMS');

Modified: branches/nimix_dev/resources/db/update/update_guis_utf8.sql
===================================================================
--- branches/nimix_dev/resources/db/update/update_guis_utf8.sql	2008-03-14 11:07:58 UTC (rev 2252)
+++ branches/nimix_dev/resources/db/update/update_guis_utf8.sql	2008-03-14 11:09:13 UTC (rev 2253)
@@ -74,6 +74,7 @@
 INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES ('gui', 'addWMSfromfilteredList_ajax', 'selectWmsText', 'Please select a WMS:', 'a text asking the user to select a WMS', 'var');
 INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES ('gui', 'addWMSfromfilteredList_ajax', 'wmsAbstractText', 'WMS abstract', 'table header for WMS abstract', 'var');
 INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES ('gui', 'addWMSfromfilteredList_ajax', 'wmsNameText', 'WMS name', 'table header for WMS name', 'var');
+INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES ('gui', 'addWMSfromfilteredList_ajax', 'capabilitiesInput', '0', 'additional Input field for custom WMS', 'var');
 INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES ('gui', 'body', 'css_class_bg', 'body{ background-color: #ffffff; }', 'to define the color of the body', 'text/css');
 INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES ('gui', 'body', 'css_file_body', '../css/mapbender.css', 'file/css', 'file/css');
 INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES ('gui', 'copyright', 'mod_copyright_text', 'mapbender.org', 'define a copyright text which should be displayed', 'var');
@@ -204,6 +205,7 @@
 INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES ('gui1', 'addWMSfromfilteredList_ajax', 'selectWmsText', 'Please select a WMS:', 'a text asking the user to select a WMS', 'var');
 INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES ('gui1', 'addWMSfromfilteredList_ajax', 'wmsAbstractText', 'WMS abstract', 'table header for WMS abstract', 'var');
 INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES ('gui1', 'addWMSfromfilteredList_ajax', 'wmsNameText', 'WMS name', 'table header for WMS name', 'var');
+INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES ('gui1', 'addWMSfromfilteredList_ajax', 'capabilitiesInput', '0', 'additional Input field for custom WMS', 'var');
 INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES ('gui1', 'body', 'css_class_bg', 'body{ background-color: #ffffff; }', 'to define the color of the body', 'text/css');
 INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES ('gui1', 'body', 'css_file_body', '../css/mapbender.css', 'file/css', 'file/css');
 INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES ('gui1', 'copyright', 'mod_copyright_text', 'mapbender.org', 'define a copyright text which should be displayed', 'var');
@@ -310,6 +312,7 @@
 INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES ('gui2', 'addWMSfromfilteredList_ajax', 'selectWmsText', 'Please select a WMS:', 'a text asking the user to select a WMS', 'var');
 INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES ('gui2', 'addWMSfromfilteredList_ajax', 'wmsAbstractText', 'WMS abstract', 'table header for WMS abstract', 'var');
 INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES ('gui2', 'addWMSfromfilteredList_ajax', 'wmsNameText', 'WMS name', 'table header for WMS name', 'var');
+INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES ('gui2', 'addWMSfromfilteredList_ajax', 'capabilitiesInput', '0', 'additional Input field for custom WMS', 'var');
 INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES ('gui2', 'body', 'css_class_bg', 'body{background-color: #FEF8D4;}', 'to define the color of the body', 'text/css');
 INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES ('gui2', 'body', 'css_file_body', '../css/mapbender.css', 'file/css', 'file/css');
 INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES ('gui2', 'copyright', 'mod_copyright_text', 'mapbender.org', 'define a copyright text which should be displayed', 'var');
@@ -634,25 +637,25 @@
 
 Delete from gui_element where fkey_gui_id ='admin2_de';
 
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','AdminFrame',2,1,'Bereich für Administrationsmodule','','iframe','','frameborder = "0"',200,20,980,800,NULL ,'','','iframe','','','','','');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','AdminFrame',2,1,'Bereich f�r Administrationsmodule','','iframe','','frameborder = "0"',200,20,980,800,NULL ,'','','iframe','','','','','');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','CreateTreeGDE',2,1,'Ordnerbaum konfigurieren','Create treeGDE','a','','href = "../php/nestedSets.php?sessionID" target = "AdminFrame" ',8,280,190,20,5,'','Ordnerbaum konfigurieren','a','','','','AdminFrame','http://www.mapbender.org/index.php/ConfTreeGde');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','body',1,1,'Navigation','','body','','onload=''mod_adminNavigation_init()''',0,0,180,20,0,'','','','mod_adminNavigation.js','','','','');
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','deleteWMS',2,1,'!Vollständig löschen!','Delete WMS completely','a','','href = "../php/mod_deleteWMS.php?sessionID" target = "AdminFrame" ',8,100,190,20,5,'','!Vollständig löschen!','a','','','','AdminFrame','http://www.mapbender.org/index.php/DeleteWMS');
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','delete_filteredGui',2,1,'GUI löschen','Delete GUI','a','','href = "../php/mod_deleteFilteredGUI.php?sessionID" target = "AdminFrame" ',110,240,80,20,5,'','GUI löschen','a','','','','AdminFrame','http://www.mapbender.org/index.php/DeleteGUI');
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','editElements',2,1,'Oberflächenelemente editieren','Edit GUI elements','a','','href = "../php/mod_editElements.php?sessionID" target = "AdminFrame" ',8,260,190,20,5,'','GUI-Elemente editieren','a','','','','AdminFrame','http://www.mapbender.org/index.php/Edit_GUI_Elements');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','deleteWMS',2,1,'!Vollst�ndig l�schen!','Delete WMS completely','a','','href = "../php/mod_deleteWMS.php?sessionID" target = "AdminFrame" ',8,100,190,20,5,'','!Vollst�ndig l�schen!','a','','','','AdminFrame','http://www.mapbender.org/index.php/DeleteWMS');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','delete_filteredGui',2,1,'GUI l�schen','Delete GUI','a','','href = "../php/mod_deleteFilteredGUI.php?sessionID" target = "AdminFrame" ',110,240,80,20,5,'','GUI l�schen','a','','','','AdminFrame','http://www.mapbender.org/index.php/DeleteGUI');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','editElements',2,1,'Oberfl�chenelemente editieren','Edit GUI elements','a','','href = "../php/mod_editElements.php?sessionID" target = "AdminFrame" ',8,260,190,20,5,'','GUI-Elemente editieren','a','','','','AdminFrame','http://www.mapbender.org/index.php/Edit_GUI_Elements');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','editFilteredGroup',2,1,'Gruppe anlegen und editieren','Create and edit group','a','','href = "../php/mod_editFilteredGroup.php?sessionID" target = "AdminFrame" ',8,400,190,20,10,'','Gruppe anlegen und editieren','a','','','','AdminFrame','http://www.mapbender.org/index.php/user');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','editFilteredUser',2,1,'Benutzer anlegen und editieren','Create and edit user','a','','href = "../php/mod_editFilteredUser.php?sessionID" target="AdminFrame"',8,380,190,20,10,'','Benutzer anlegen und editieren','a','','','','AdminFrame','http://www.mapbender.org/index.php/user');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','editGUI_WMS',2,1,'WMS GUI Einstellungen','WMS GUI settings','a','','href="../php/mod_editGuiWms.php?sessionID"'' target="AdminFrame"',8,180,190,20,5,'','WMS GUI Einstellungen','a','','','','AdminFrame','http://www.mapbender.org/index.php/Edit_GUI_WMS');
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','exportGUI',2,1,'Oberfläche (GUI) exportieren, SQL erzeugen','export GUI, create SQL','a','','href = "../php/mod_exportGUI.php?sessionID" target = "AdminFrame" ',8,300,190,20,10,'','GUI exportieren (SQL)','a','','','','AdminFrame','http://www.mapbender.org/index.php/Oberfl%C3%A4che_exportieren_%28SQL%29');
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','filteredGoup_filteredUser',2,1,'Gruppe mit Benutzern bestücken','Add several users to one group','a','','href = "../php/mod_filteredGroup_filteredUser.php?sessionID&e_id_css=filteredGoup_filteredUser" target = "AdminFrame" ',8,440,190,20,10,'','Gruppe mit Benutzern bestücken ','a','','','','AdminFrame','http://www.mapbender.org/index.php/user');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','exportGUI',2,1,'Oberfl�che (GUI) exportieren, SQL erzeugen','export GUI, create SQL','a','','href = "../php/mod_exportGUI.php?sessionID" target = "AdminFrame" ',8,300,190,20,10,'','GUI exportieren (SQL)','a','','','','AdminFrame','http://www.mapbender.org/index.php/Oberfl%C3%A4che_exportieren_%28SQL%29');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','filteredGoup_filteredUser',2,1,'Gruppe mit Benutzern best�cken','Add several users to one group','a','','href = "../php/mod_filteredGroup_filteredUser.php?sessionID&e_id_css=filteredGoup_filteredUser" target = "AdminFrame" ',8,440,190,20,10,'','Gruppe mit Benutzern best�cken ','a','','','','AdminFrame','http://www.mapbender.org/index.php/user');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','filteredGroup_filteredGui',2,1,'Einzelner Gruppe mehrere Oberflaechen zuordnen','Allow one group access to several GUIs','a','','href = "../php/mod_filteredGroup_filteredGui.php?sessionID&e_id_css=filteredGroup_filteredGui" target = "AdminFrame" ',8,570,190,25,10,'','Einzelner Gruppe mehrere <br>GUIs zuordnen','a','','','','AdminFrame','http://www.mapbender.org/index.php/user');
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','filteredGui_filteredGroup',2,1,'Einzelner Oberfläche mehrere Gruppen zuordnen','Allow several groups access to one GUI','a','','href = "../php/mod_filteredGui_filteredGroup.php?sessionID&e_id_css=filteredGui_filteredGroup" target = "AdminFrame" ',8,605,190,25,10,'','Einzelner GUI mehrere<br> Gruppen zuordnen','a','','','','AdminFrame','http://www.mapbender.org/index.php/user');
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','filteredGui_filteredUser',2,1,'Oberfläche mehreren Benutzer zuordnen ','Allow several users access to one GUI ','a','','href = "../php/mod_filteredGui_filteredUser.php?sessionID&e_id_css=filteredGui_filteredUser" target = "AdminFrame" ',8,535,190,25,10,'','GUI mehreren Benutzern <br> zuordnen','a','','','','AdminFrame','http://www.mapbender.org/index.php/user');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','filteredGui_filteredGroup',2,1,'Einzelner Oberfl�che mehrere Gruppen zuordnen','Allow several groups access to one GUI','a','','href = "../php/mod_filteredGui_filteredGroup.php?sessionID&e_id_css=filteredGui_filteredGroup" target = "AdminFrame" ',8,605,190,25,10,'','Einzelner GUI mehrere<br> Gruppen zuordnen','a','','','','AdminFrame','http://www.mapbender.org/index.php/user');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','filteredGui_filteredUser',2,1,'Oberfl�che mehreren Benutzer zuordnen ','Allow several users access to one GUI ','a','','href = "../php/mod_filteredGui_filteredUser.php?sessionID&e_id_css=filteredGui_filteredUser" target = "AdminFrame" ',8,535,190,25,10,'','GUI mehreren Benutzern <br> zuordnen','a','','','','AdminFrame','http://www.mapbender.org/index.php/user');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','filteredUser_filteredGroup',2,1,'Benutzer in Gruppen eintragen','Add one user to serveral groups','a','','href = "../php/mod_filteredUser_filteredGroup.php?sessionID&e_id_css=filteredUser_filteredGroup" target = "AdminFrame" ',8,420,190,20,10,'','Benutzer in Gruppen eintragen','a','','','','AdminFrame','http://www.mapbender.org/index.php/user');
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','filteredUser_filteredGui',2,1,'Einem Nutzer Zugriff auf mehrere Oberflächen erteilen','Allow one user to access several GUIs','a','','href = "../php/mod_filteredUser_filteredGui.php?sessionID&e_id_css=filteredUser_filteredGui" target = "AdminFrame" ',8,500,190,25,10,'','Einem Nutzer Zugriff auf <br> mehrere GUIs erteilen','a','','','','AdminFrame','http://www.mapbender.org/index.php/user');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','filteredUser_filteredGui',2,1,'Einem Nutzer Zugriff auf mehrere Oberfl�chen erteilen','Allow one user to access several GUIs','a','','href = "../php/mod_filteredUser_filteredGui.php?sessionID&e_id_css=filteredUser_filteredGui" target = "AdminFrame" ',8,500,190,25,10,'','Einem Nutzer Zugriff auf <br> mehrere GUIs erteilen','a','','','','AdminFrame','http://www.mapbender.org/index.php/user');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','gui_owner',2,1,'GUI editieren Benutzer zuordnen','Edit GUI assign to user','a','','href = "../php/mod_gui_owner.php?sessionID" target = "AdminFrame" ',8,640,190,20,10,'','GUI editieren Benutzer zuordnen','a','','','','AdminFrame','http://www.mapbender.org/index.php/user');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','headline_Configure_WMS_Access',3,1,'Hintergrund WMS Zuordnung','Configure WMS Access','div','','',5,137,193,66,2,'',' WMS Zuordnung','div','','','','','');
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','headline_GUI_Management',3,1,'Hintergrund Oberflächenverwaltung','GUI Management','div','','',5,217,193,126,2,'',' GUI-Verwaltung','div','','','','','');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','headline_GUI_Management',3,1,'Hintergrund Oberfl�chenverwaltung','GUI Management','div','','',5,217,193,126,2,'',' GUI-Verwaltung','div','','','','','');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','headline_User_Authorization',3,1,'Hintergrund Benutzerzugriff erteilen','Authorization ','div','','',5,477,193,196,2,'',' Benutzerzugriff erteilen','div','','','','','');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','headline_User_Management',3,1,'Hintergrund Benutzerverwaltung','User Management','div','','',5,357,193,106,2,'',' Benutzerverwaltung','div','','','','','');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','headline_WMS_Management',3,1,'Hintergrund WMS Management','WMS Management','div','','',5,37,193,86,2,'',' WMS Verwaltung','div','','','','','');
@@ -660,7 +663,7 @@
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','loadWMS',2,1,'Capabilities hochladen','Load WMS','a','','href = "../php/mod_loadCapabilities.php?sessionID" target="AdminFrame"',8,60,190,20,5,'','Capabilities hochladen','a','','','','AdminFrame','http://www.mapbender.org/index.php/Add_new_maps_to_Mapbender');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','loadWMSList',2,1,'WMS in GUI einbinden','Link WMS into GUI','a','','href = "../php/mod_loadCapabilitiesList.php?sessionID" target="AdminFrame"',8,160,190,20,5,'','WMS in GUI einbinden','a','','','','AdminFrame','http://www.mapbender.org/index.php/Add_new_maps_to_Mapbender');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','logout',2,1,'Logout','Logout','img','../img/button_gray/logout_off.png','onClick="window.location.href=''../php/mod_logout.php?sessionID''" border=''0'' onmouseover=''this.src="../img/button_gray/logout_over.png"'' onmouseout=''this.src="../img/button_gray/logout_off.png"''',180,2,24,24,2,'','','img','','','','','http://www.mapbender.org/index.php/logout');
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','myGUIlist',2,1,'Zurück zur eigenen GUI Liste','Move back to your GUI list','img','../img/button_gray/home_off.png','onClick="mod_home_init()" border=''0'' onmouseover=''this.src="../img/button_gray/home_over.png"'' onmouseout=''this.src="../img/button_gray/home_off.png"''',150,2,24,24,2,'','','img','mod_home.php','','','','http://www.mapbender.org/index.php/MyGUIlist');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','myGUIlist',2,1,'Zur�ck zur eigenen GUI Liste','Move back to your GUI list','img','../img/button_gray/home_off.png','onClick="mod_home_init()" border=''0'' onmouseover=''this.src="../img/button_gray/home_over.png"'' onmouseout=''this.src="../img/button_gray/home_off.png"''',150,2,24,24,2,'','','img','mod_home.php','','','','http://www.mapbender.org/index.php/MyGUIlist');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','newGui',2,1,'GUI erzeugen','Create new GUI','a','','href = "../php/mod_newGui.php?sessionID" target = "AdminFrame" ',8,240,85,20,5,'','GUI erzeugen','a','','','','AdminFrame','http://www.mapbender.org/index.php/newGUI');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','rename_copy_Gui',2,1,'GUI umbenennen/ kopieren','Rename / copy GUI','a','','href = "../php/mod_renameGUI.php?sessionID" target = "AdminFrame" ',8,320,190,20,10,'','GUI umbenennen/kopieren','a','','','','AdminFrame','');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin2_de','showLoggedUser',2,1,'Anzeige des eingeloggten Benutzers','','iframe','../php/mod_showLoggedUser.php?sessionID','frameborder="0" scrolling=''no''',1,1,200,30,1,'background-color:lightgrey;','','iframe','','','','','');
@@ -730,19 +733,19 @@
 
 Delete from gui_element where fkey_gui_id ='admin_de_services';
 
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','AdminFrame',2,1,'Bereich für Administrationsmodule','','iframe','','frameborder = "0"',210,25,800,800,12,'','','iframe','','','','','');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','AdminFrame',2,1,'Bereich f�r Administrationsmodule','','iframe','','frameborder = "0"',210,25,800,800,12,'','','iframe','','','','','');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','CreateTreeGDE',2,1,'Ordnerbaum konfigurieren','Create treeGDE','a','','href = "../php/nestedSets.php?sessionID" target = "AdminFrame" ',10,533,200,20,5,'','Ordnerbaum konfigurieren','a','','','','AdminFrame','');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','EditWMSMetadata',2,1,'edit the metadata of wms','edit the metadata of wms','a','','href = "../php/mod_editWMS_Metadata.php?show_wms_list=true&sessionID" target="AdminFrame"',10,275,200,20,5,'','WMS Metadaten','a','','','','AdminFrame','http://www.mapbender.org/index.php/Edit_WMS_Metadata');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','body',1,1,'Navigation','','body','','onload=''mod_adminNavigation_init()''',NULL ,NULL ,NULL ,NULL ,NULL ,'','','','mod_adminNavigation.js','','','','');
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','deleteWFS',2,1,'WFS löschen','Delete WFS','a','','href = "../php/mod_deleteWFS.php?sessionID" target = "AdminFrame" ',10,393,200,20,5,'','WFS löschen','a','','','','AdminFrame','http://www.mapbender.org/index.php/DeleteWFS');
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','deleteWMS',2,1,'!Vollständig löschen!','!Delete WMS completely!','a','','href = "../php/mod_deleteWMS.php?sessionID" target = "AdminFrame" ',10,100,200,20,5,'','WMS löschen!','a','','','','AdminFrame','http://www.mapbender.org/index.php/DeleteWMS');
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','delete_filteredGui',2,1,'GUI löschen','Delete GUI','a','','href = "../php/mod_deleteFilteredGUI.php?sessionID" target = "AdminFrame" ',10,491,200,20,5,'','GUI löschen','a','','','','AdminFrame','http://www.mapbender.org/index.php/DeleteGUI');
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','editElements',2,1,'Oberflächenelemente editieren','Edit GUI Elements','a','','href = "../php/mod_editElements.php?sessionID" target = "AdminFrame" ',10,511,200,25,5,'','GUI editieren','a','','','','AdminFrame','http://www.mapbender.org/index.php/Edit_GUI_Elements');
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','editGUI_WMS',2,1,'WMS GUI Einstellungen','WMS GUI settings','a','','href="../php/mod_editGuiWms.php?sessionID"'' target="AdminFrame"',10,218,200,20,5,'','WMS Einstellungen ändern','a','','','','AdminFrame','http://www.mapbender.org/index.php/Edit_GUI_WMS');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','deleteWFS',2,1,'WFS l�schen','Delete WFS','a','','href = "../php/mod_deleteWFS.php?sessionID" target = "AdminFrame" ',10,393,200,20,5,'','WFS l�schen','a','','','','AdminFrame','http://www.mapbender.org/index.php/DeleteWFS');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','deleteWMS',2,1,'!Vollst�ndig l�schen!','!Delete WMS completely!','a','','href = "../php/mod_deleteWMS.php?sessionID" target = "AdminFrame" ',10,100,200,20,5,'','WMS l�schen!','a','','','','AdminFrame','http://www.mapbender.org/index.php/DeleteWMS');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','delete_filteredGui',2,1,'GUI l�schen','Delete GUI','a','','href = "../php/mod_deleteFilteredGUI.php?sessionID" target = "AdminFrame" ',10,491,200,20,5,'','GUI l�schen','a','','','','AdminFrame','http://www.mapbender.org/index.php/DeleteGUI');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','editElements',2,1,'Oberfl�chenelemente editieren','Edit GUI Elements','a','','href = "../php/mod_editElements.php?sessionID" target = "AdminFrame" ',10,511,200,25,5,'','GUI editieren','a','','','','AdminFrame','http://www.mapbender.org/index.php/Edit_GUI_Elements');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','editGUI_WMS',2,1,'WMS GUI Einstellungen','WMS GUI settings','a','','href="../php/mod_editGuiWms.php?sessionID"'' target="AdminFrame"',10,218,200,20,5,'','WMS Einstellungen �ndern','a','','','','AdminFrame','http://www.mapbender.org/index.php/Edit_GUI_WMS');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','exportGUI',2,1,'GUI exportieren, SQL erzeugen','Export GUI (SQL), create SQL','a','','href = "../php/mod_exportGUI.php?sessionID" target = "AdminFrame" ',10,554,200,25,10,'x','GUI exportieren (SQL)','a','','','','AdminFrame','http://www.mapbender.org/index.php/Oberfl%C3%A4che_exportieren_%28SQL%29');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','filteredWms_layer_topic',2,1,'allocate topics to layers of wms of this user','allocate topics to layers of wms of this user','a','','href = "../php/mod_filteredWms_layer_topic.php?sessionID&e_id_css=filteredWms_layer_topic" target = "AdminFrame" ',10,295,200,20,5,'','Kategoriezuordnung','a','','','','AdminFrame','http://www.mapbender.org/index.php/Topic_/_Category');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','headline_Configure_WMS_Access',3,1,'Hintergrund WMS Zuordnung','WMS Assignment','div','','',1,175,210,63,2,'','WMS Zuordnung','div','','','','','');
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','headline_GUI_Management',3,1,'Oberflächenverwaltung','GUI Management','div','','',1,448,210,153,2,'','GUI Verwaltung','div','','','','','');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','headline_GUI_Management',3,1,'Oberfl�chenverwaltung','GUI Management','div','','',1,448,210,153,2,'','GUI Verwaltung','div','','','','','');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','headline_Metadata',3,1,'Metadateneditor Caption','Metadata','div','','',1,252,210,63,2,'','Metadaten','div','','','','','');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','headline_WFS_Management',3,1,'WFS Verwaltung','WFS Management','div','','',1,330,210,103,2,'','WFS Verwaltung','div','','','','','');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','headline_WMS_Management',3,1,'Dienstverwaltung Beschriftung','WMS Management','div','','',0,37,210,123,2,'','WMS Verwaltung','div','','','','','');
@@ -751,10 +754,10 @@
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','loadWMS',2,1,'Capabilities hochladen','Load WMS','a','','href = "../php/mod_loadCapabilities.php?sessionID" target="AdminFrame"',10,60,200,20,5,'','WMS laden','a','','','','AdminFrame','http://www.mapbender.org/index.php/Add_new_maps_to_Mapbender');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','loadWMSList',2,1,'WMS in GUI einbinden','Assign WMS to a GUI','a','','href = "../php/mod_loadCapabilitiesList.php?sessionID" target="AdminFrame"',10,198,200,20,5,'','WMS einbinden','a','','','','AdminFrame','http://www.mapbender.org/index.php/Add_new_maps_to_Mapbender');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','logout',2,1,'Logout','Logout','img','../img/button_gray/logout_off.png','onClick="window.location.href=''../php/mod_logout.php?sessionID''" border=''0'' onmouseover=''this.src="../img/button_gray/logout_over.png"'' onmouseout=''this.src="../img/button_gray/logout_off.png"''',180,2,24,24,2,'','','img','','','','','http://www.mapbender.org/index.php/logout');
-INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','myGUIlist',2,1,'Zurück zur eigenen GUI Liste','Move back to your GUI list','img','../img/button_gray/home_off.png','onClick="mod_home_init()" border=''0'' onmouseover=''this.src="../img/button_gray/home_over.png"'' onmouseout=''this.src="../img/button_gray/home_off.png"''',150,2,24,24,2,'','','img','mod_home.php','','','','http://www.mapbender.org/index.php/MyGUIlist');
+INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','myGUIlist',2,1,'Zur�ck zur eigenen GUI Liste','Move back to your GUI list','img','../img/button_gray/home_off.png','onClick="mod_home_init()" border=''0'' onmouseover=''this.src="../img/button_gray/home_over.png"'' onmouseout=''this.src="../img/button_gray/home_off.png"''',150,2,24,24,2,'','','img','mod_home.php','','','','http://www.mapbender.org/index.php/MyGUIlist');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','newGui',2,1,'GUI erzeugen','New GUI','a','','href = "../php/mod_newGui.php?sessionID" target = "AdminFrame" ',10,471,200,20,5,'','GUI erzeugen','a','','','','AdminFrame','http://www.mapbender.org/index.php/newGUI');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','orphanWMS',2,1,'display orphaned WMS','Delete orphaned WMS','a','','href = "../php/mod_orphanWMS.php?sessionID" 
-target = "AdminFrame"',10,120,200,20,5,'','WMS ohne Zuordung löschen','a','','','','AdminFrame','http://www.mapbender.org/index.php/OrphanWMS');
+target = "AdminFrame"',10,120,200,20,5,'','WMS ohne Zuordung l�schen','a','','','','AdminFrame','http://www.mapbender.org/index.php/OrphanWMS');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','owsproxy',2,1,'secure services','OWSPROXY','a','','href="../php/mod_owsproxy_conf.php?sessionID"'' target="AdminFrame"',10,140,200,20,10,'','OWSPROXY','a','','','','AdminFrame','http://www.mapbender.org/index.php/Owsproxy');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','rename_copy_Gui',2,1,'GUI umbenennen/ kopieren','Rename / copy GUI','a','','href = "../php/mod_renameGUI.php?sessionID" target = "AdminFrame" ',10,576,200,20,10,'','GUI umbenennen/kopieren','a','','','','AdminFrame','http://www.mapbender.org/index.php/RenameGUI');
 INSERT INTO gui_element (fkey_gui_id, e_id, e_pos, e_public, e_comment, e_title, e_element,e_src, e_attributes, e_left, e_top, e_width, e_height, e_z_index, e_more_styles, e_content, e_closetag, e_js_file, e_mb_mod, e_target, e_requires,e_url) VALUES ('admin_de_services','showLoggedUser',2,1,'Anzeige des eingeloggten Benutzers','','iframe','../php/mod_showLoggedUser.php?sessionID','frameborder="0" scrolling=''no''',1,1,200,30,1,'background-color:lightgrey;','','iframe','','','','','');



More information about the Mapbender_commits mailing list