Module: nagvis Branch: master Commit: 5d8e9bfafb95a2c01f8c1651db123607911ca51b URL: http://nagvis.git.sourceforge.net/git/gitweb.cgi?p=nagvis/nagvis;a=commit;h=5d8e9bfafb95a2c01f8c1651db123607911ca51b
Author: LaMi <[email protected]> Date: Fri Mar 12 18:09:28 2010 +0100 #220 Disabled geomap by default since it is unfinished at the moment --- etc/nagvis.ini.php-sample | 4 +++- share/server/core/classes/GlobalMainCfg.php | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/etc/nagvis.ini.php-sample b/etc/nagvis.ini.php-sample index 8b50c62..38d2e29 100644 --- a/etc/nagvis.ini.php-sample +++ b/etc/nagvis.ini.php-sample @@ -199,7 +199,9 @@ ; Enable/Disable map listing ;showmaps=1 ; Enable/Disable geomap listing -;showgeomap=1 +; Note: It is disabled here since it is unfinished yet and not for production +; use in current 1.5 code. +;showgeomap=0 ; Enable/Disable rotation listing ;showrotations=1 ; Enable/Disable map thumbnails diff --git a/share/server/core/classes/GlobalMainCfg.php b/share/server/core/classes/GlobalMainCfg.php index 36b832e..6ef4b8e 100644 --- a/share/server/core/classes/GlobalMainCfg.php +++ b/share/server/core/classes/GlobalMainCfg.php @@ -574,7 +574,7 @@ class GlobalMainCfg { 'match' => MATCH_BOOLEAN), 'showgeomap' => Array('must' => 0, 'editable' => 1, - 'default' => 1, + 'default' => 0, 'field_type' => 'boolean', 'match' => MATCH_BOOLEAN), 'showmapthumbs' => Array('must' => 0, ------------------------------------------------------------------------------ Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for parallel performance. See why Intel Parallel Studio got high marks during beta. http://p.sf.net/sfu/intel-sw-dev _______________________________________________ Nagvis-checkins mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/nagvis-checkins
