diff options
author | Greg Frost <gregfrost1@bigpond.com> | 2009-08-15 05:32:41 (GMT) |
---|---|---|
committer | Greg Frost <gregfrost1@bigpond.com> | 2009-08-15 05:32:41 (GMT) |
commit | 620cb6800d15e6b2b0738b6cdd29080d2685f70b (patch) | |
tree | 44e096ea99d29a83c190bc2fff49569a1b00092a /abs/core-testing/mythinstall/installsettings.cpp | |
parent | ac3fcc84dfa0692cf2b11a04d7266da47c2ff89c (diff) | |
download | linhes_pkgbuild-620cb6800d15e6b2b0738b6cdd29080d2685f70b.zip linhes_pkgbuild-620cb6800d15e6b2b0738b6cdd29080d2685f70b.tar.gz linhes_pkgbuild-620cb6800d15e6b2b0738b6cdd29080d2685f70b.tar.bz2 |
LinHES-config mythinstall: various timezone fixups
Diffstat (limited to 'abs/core-testing/mythinstall/installsettings.cpp')
-rwxr-xr-x | abs/core-testing/mythinstall/installsettings.cpp | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/abs/core-testing/mythinstall/installsettings.cpp b/abs/core-testing/mythinstall/installsettings.cpp index 10341db..7315464 100755 --- a/abs/core-testing/mythinstall/installsettings.cpp +++ b/abs/core-testing/mythinstall/installsettings.cpp @@ -41,7 +41,7 @@ #include <qsqlquery.h> #include "mv_common.h" -int run_from_installer = FALSE; +int timezone_unknown = FALSE; extern HostParms hostparm; extern DDCinfo ddcinfo; @@ -3403,8 +3403,16 @@ void pre_writesettings () hostparm.ThisHostName = "You_Fool"; } // piece togther the timezone + QString tz; QString tregion; QString tsubregion; + + tz=gContext->GetSetting("HostTimeZone"); + + cout << "tz extracted from database: " << tz << endl; + if ( tz.isEmpty() || (tz == "Unknown")) + timezone_unknown = TRUE; + tregion=gContext->GetSetting("HostTimeZoneRegion"); tsubregion=gContext->GetSetting("HostTimeZoneRegion_"+tregion); if ( tsubregion.isEmpty() ) @@ -3412,7 +3420,7 @@ void pre_writesettings () else hostparm.ThisTimeZone = tregion + "/" + tsubregion; - cout << hostparm.ThisTimeZone << endl; + cout << "hostparm.ThisTimeZone " << hostparm.ThisTimeZone << endl; // save some settings back to the datebase gContext->SaveSetting("HostMyhostname" , hostparm.ThisHostName ); gContext->SaveSetting("HostMysqlserver", hostparm.ThisDBhost ); |