From 0d98fb630992023cceba0c6c5c51bff651540aec Mon Sep 17 00:00:00 2001 From: Brian Matherly Date: Sun, 13 Jan 2008 04:58:11 +0000 Subject: [PATCH] Enable the beta warning on startup. svn: r9790 --- ChangeLog | 3 +++ src/gramps_main.py | 46 ++++++++++++++++++++++++++-------------------- 2 files changed, 29 insertions(+), 20 deletions(-) diff --git a/ChangeLog b/ChangeLog index 85914ed47..1c80c7b1a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +2008-01-12 Brian Matherly + * src/gramps_main.py: Enable the beta warning on startup. + 2008-01-12 Brian Matherly * src/plugins/GVHourGlass.py: Clean up PyLint warnings. diff --git a/src/gramps_main.py b/src/gramps_main.py index f6dda2be4..80e921fc1 100644 --- a/src/gramps_main.py +++ b/src/gramps_main.py @@ -189,6 +189,31 @@ def build_user_paths(): for path in const.USER_DIRLIST: if not os.path.isdir(path): os.mkdir(path) + +def _display_welcome_message(): + """ + Display a welcome message to the user. + """ + if not Config.get(Config.BETAWARN): + from QuestionDialog import WarningDialog + WarningDialog( + _('Danger: This is unstable code!'), + _("This GRAMPS 3.0 Beta release is an early, experimental " + "peek at the future 3.0 release. This version is " + "not meant for normal usage. Use at your own risk.\n\n" + "This version may:\n" + "1) Work differently than you expect.\n" + "2) Fail to run at all\n" + "3) Crash often\n" + "4) Corrupt your data\n" + "5) Save data in a format that is incompatible with the " + "official release.\n" + "\nBACKUP your existing databases " + "before opening them with this version, and make " + "sure to export your data to XML every now and then.")) + Config.set(Config.AUTOLOAD, False) +# Config.set(Config.BETAWARN, True) + Config.set(Config.BETAWARN, Config.get(Config.BETAWARN)) #------------------------------------------------------------------------- # @@ -207,7 +232,7 @@ class Gramps: stopload = False try: build_user_paths() - self.welcome() + _display_welcome_message() except OSError, msg: ErrorDialog(_("Configuration error"), str(msg)) except Errors.GConfSchemaError, val: @@ -262,23 +287,4 @@ class Gramps: if Config.get(Config.USE_TIPS): TipOfDay.TipOfDay(self.vm.uistate) - def welcome(self): - return -# if not Config.get(Config.BETAWARN): -# from QuestionDialog import WarningDialog -# WarningDialog( -# _('Danger: This is unstable code!'), -# _("The GRAMPS 2.1 release is an early, experimental " -# "branch of the future 2.2 release. This version is " -# "not meant for normal usage. Use at your own risk.\n\n" -# "This version may:\n1) Fail to run properly\n" -# "2) Corrupt your data\n3) Cause your hair to turn " -# "pink and fall out.\n\nAny databases opened by this " -# "version will NO LONGER WORK in older versions of " -# "GRAMPS, and MAY NOT WORK in with future " -# "releases of GRAMPS. BACKUP your existing databases " -# "before opening them with this version, and make " -# "sure to export your data to XML every now and then.")) -# Config.set(Config.AUTOLOAD, False) -# Config.set(Config.BETAWARN, True)