[Mapbender-commits] r2664 - branches/testbaudson_dev/core

svn_mapbender at osgeo.org svn_mapbender at osgeo.org
Thu Jul 17 08:03:27 EDT 2008


Author: christoph
Date: 2008-07-17 08:03:26 -0400 (Thu, 17 Jul 2008)
New Revision: 2664

Modified:
   branches/testbaudson_dev/core/globalSettings.php
   branches/testbaudson_dev/core/system.php
Log:


Modified: branches/testbaudson_dev/core/globalSettings.php
===================================================================
--- branches/testbaudson_dev/core/globalSettings.php	2008-07-15 09:38:01 UTC (rev 2663)
+++ branches/testbaudson_dev/core/globalSettings.php	2008-07-17 12:03:26 UTC (rev 2664)
@@ -23,23 +23,23 @@
 // database wrapper
 //
 if(SYS_DBTYPE=="mysql") {
-	require_once(dirname(__FILE__) . "/../http/php/database-mysql.php"); 
+	require_once(dirname(__FILE__) . "/../lib/database-mysql.php"); 
 }
 else {
-	require_once(dirname(__FILE__) . "/../http/php/database-pgsql.php"); 
+	require_once(dirname(__FILE__) . "/../lib/database-pgsql.php"); 
 }
 
 
 //
 // class for error handling
 //
-require_once(dirname(__FILE__)."/../http/classes/class_exception.php");
+require_once(dirname(__FILE__)."/../lib/exception.php");
 
 //
 // I18n wrapper function, gettext
 //
 require_once(dirname(__FILE__) . "/../core/i18n.php");
-require_once(dirname(__FILE__) . "/../http/classes/class_locale.php");
+require_once(dirname(__FILE__) . "/../lib/locale.php");
 $localeObj = new Mb_locale($_SESSION["mb_lang"]);
 
 

Modified: branches/testbaudson_dev/core/system.php
===================================================================
--- branches/testbaudson_dev/core/system.php	2008-07-15 09:38:01 UTC (rev 2663)
+++ branches/testbaudson_dev/core/system.php	2008-07-17 12:03:26 UTC (rev 2664)
@@ -20,16 +20,18 @@
 # mapbender version
 #
 define("MB_VERSION_NUMBER", "2.5.0");
-define("MB_VERSION_APPENDIX", "RC4");
-define("MB_RELEASE_DATE", mktime(0,0,0,7,8,2008));//h, min,sec,month,day,year
+define("MB_VERSION_APPENDIX", "RC2");
+define("MB_RELEASE_DATE", mktime(0,0,0,4,21,2008));//h, min,sec,month,day,year
 
 #
 # constants from map.js
 #
 define("MB_RESOLUTION", "28.35");
 define("MB_FEATURE_COUNT", "100");
-
+define("MB_SECURITY_PROXY", "http://wms1.ccgis.de/mapbender/tools/security_proxy.php?mb_ows_security_proxy=");
 #
 # available log levels 
 #
 define("LOG_LEVEL_LIST", "off,error,warning,notice,all");
+
+define("ZOOM_MOUSEWHEEL", "1.1");
\ No newline at end of file



More information about the Mapbender_commits mailing list