[Mapbender-commits] r6810 - trunk/mapbender/resources/db/pgsql/UTF-8/update

svn_mapbender at osgeo.org svn_mapbender at osgeo.org
Wed Aug 25 14:57:18 EDT 2010


Author: astrid_emde
Date: 2010-08-25 18:57:18 +0000 (Wed, 25 Aug 2010)
New Revision: 6810

Modified:
   trunk/mapbender/resources/db/pgsql/UTF-8/update/update_2.6.1_to_2.7rc1_pgsql_UTF-8.sql
Log:
added coordsLookup to application gui in a new tab. still needs i18n

Modified: trunk/mapbender/resources/db/pgsql/UTF-8/update/update_2.6.1_to_2.7rc1_pgsql_UTF-8.sql
===================================================================
--- trunk/mapbender/resources/db/pgsql/UTF-8/update/update_2.6.1_to_2.7rc1_pgsql_UTF-8.sql	2010-08-25 18:44:18 UTC (rev 6809)
+++ trunk/mapbender/resources/db/pgsql/UTF-8/update/update_2.6.1_to_2.7rc1_pgsql_UTF-8.sql	2010-08-25 18:57:18 UTC (rev 6810)
@@ -2669,5 +2669,30 @@
 WITH (
   OIDS=FALSE
 );
-ALTER TABLE datalink_md_topic_category OWNER TO postgres;
 
+--
+-- add new zoomto coords to gui as a new tab
+--
+
+
+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 ('gui','coordsLookup',
+10,1,'','Coordinate lookup','div','','',1,1,NULL ,NULL ,NULL ,
+'z-index:9999;visibility:hidden','','div','mod_coordsLookup.js','',
+'mapframe1','','http://www.mapbender.org/coordsLookup');
+INSERT INTO gui_element_vars (fkey_gui_id, fkey_e_id, var_name,
+var_value, context, var_type) VALUES ('gui', 'coordsLookup',
+'perimeters', '[50,200,1000,10000]', '' ,'var');
+INSERT INTO gui_element_vars (fkey_gui_id, fkey_e_id, var_name,
+var_value, context, var_type) VALUES('gui', 'coordsLookup',
+'projections', '[''EPSG:4326'',''EPSG:31467'',''EPSG:31468'',''EPSG:31469'',''EPSG:25832'',''EPSG:25833'']', 
+'' ,'var');
+INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES('gui', 'tabs', 'tab_frameHeight[7]', '240', '' ,'var');
+INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name, var_value, context, var_type) VALUES('gui', 'tabs', 'tab_ids[7]', 'coordsLookup', '' ,'php_var');
+
+
+
+
+



More information about the Mapbender_commits mailing list