[Mapbender-commits] r7866 - branches/2.7/resources/db/pgsql/UTF-8/update trunk/mapbender/resources/db/pgsql/UTF-8/update

svn_mapbender at osgeo.org svn_mapbender at osgeo.org
Wed Jun 15 07:32:32 EDT 2011


Author: verenadiewald
Date: 2011-06-15 04:32:32 -0700 (Wed, 15 Jun 2011)
New Revision: 7866

Modified:
   branches/2.7/resources/db/pgsql/UTF-8/update/update_2.7.1_to_2.7.2_pgsql_UTF-8.sql
   trunk/mapbender/resources/db/pgsql/UTF-8/update/update_2.7.1_to_2.7.2_pgsql_UTF-8.sql
Log:
set width and height of body element to NULL for Gui admin2_de, otherwise this gui is not displayed correctly in IE8, see also http://trac.osgeo.org/mapbender/ticket/836

Modified: branches/2.7/resources/db/pgsql/UTF-8/update/update_2.7.1_to_2.7.2_pgsql_UTF-8.sql
===================================================================
--- branches/2.7/resources/db/pgsql/UTF-8/update/update_2.7.1_to_2.7.2_pgsql_UTF-8.sql	2011-06-15 07:52:20 UTC (rev 7865)
+++ branches/2.7/resources/db/pgsql/UTF-8/update/update_2.7.1_to_2.7.2_pgsql_UTF-8.sql	2011-06-15 11:32:32 UTC (rev 7866)
@@ -22,8 +22,8 @@
 -- replace too many ' in definition
 UPDATE gui_element set e_attributes = replace(e_attributes,'''"','"') where e_id IN ('updateWMSs','owsproxy','editGUI_WMS');
 
--- set width and height of body element to 0 for Gui admin2_de, otherwise this gui is not displayed correctly in IE8
-UPDATE gui_element set e_width = 0, e_height = 0
+-- set width and height of body element to NULL for Gui admin2_de, otherwise this gui is not displayed correctly in IE8
+UPDATE gui_element set e_width = NULL, e_height = NULL
 where fkey_gui_id = 'admin2_de' and e_id ='body' ;
 
 -- delete old entries from old treeConfiguration

Modified: trunk/mapbender/resources/db/pgsql/UTF-8/update/update_2.7.1_to_2.7.2_pgsql_UTF-8.sql
===================================================================
--- trunk/mapbender/resources/db/pgsql/UTF-8/update/update_2.7.1_to_2.7.2_pgsql_UTF-8.sql	2011-06-15 07:52:20 UTC (rev 7865)
+++ trunk/mapbender/resources/db/pgsql/UTF-8/update/update_2.7.1_to_2.7.2_pgsql_UTF-8.sql	2011-06-15 11:32:32 UTC (rev 7866)
@@ -43,10 +43,8 @@
 
 UPDATE gui_element SET e_target = 'filteredGui_user_collection,filteredGui_group_collection,filteredGui_filteredGroup_collection,gui_owner_collection,allowPublishMetadata_collection' WHERE fkey_gui_id = 'Administration_DE' AND e_id = 'menu_auth'; 
 
-
-
--- set width and height of body element to 0 for Gui admin2_de, otherwise this gui is not displayed correctly in IE8
-UPDATE gui_element set e_width = 0, e_height = 0
+-- set width and height of body element to NULL for Gui admin2_de, otherwise this gui is not displayed correctly in IE8
+UPDATE gui_element set e_width = NULL, e_height = NULL
 where fkey_gui_id = 'admin2_de' and e_id ='body' ;
 
 -- delete old entries from old treeConfiguration



More information about the Mapbender_commits mailing list