summaryrefslogtreecommitdiffstats
path: root/gui.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-08-27 05:34:17 +0000
committerMatt Wilson <msw@redhat.com>1999-08-27 05:34:17 +0000
commit797e45b30bc6a7cbfc835cf9743f3edf3b90e030 (patch)
treecb5bd60455d6eb9944c81e1464e607c9e18e4ee8 /gui.py
parent9f6f7872ec592151cc9843e8797d25d779db77be (diff)
downloadanaconda-797e45b30bc6a7cbfc835cf9743f3edf3b90e030.tar.gz
anaconda-797e45b30bc6a7cbfc835cf9743f3edf3b90e030.tar.xz
anaconda-797e45b30bc6a7cbfc835cf9743f3edf3b90e030.zip
i18n changes, small debugging changes
Diffstat (limited to 'gui.py')
-rwxr-xr-xgui.py15
1 files changed, 9 insertions, 6 deletions
diff --git a/gui.py b/gui.py
index 59c06454d..1e7184388 100755
--- a/gui.py
+++ b/gui.py
@@ -1,3 +1,10 @@
+print "GUI mode init..."
+
+import gettext
+
+cat = gettext.Catalog ("anaconda", "/usr/share/locale")
+_ = cat.gettext
+
from gtk import *
from gnome.ui import *
from gnome.xmhtml import *
@@ -31,10 +38,6 @@ import rpm
from thread import *
from threading import *
import time
-import gettext
-
-cat = gettext.Catalog ("anaconda", "/usr/share/locale")
-_ = cat.gettext
class WaitWindow:
def __init__(self, title, text):
@@ -103,6 +106,8 @@ class InstallInterface:
gtkThread = GtkMainThread ()
gtkThread.start ()
+ print "GUI mode run"
+
commonSteps = [LanguageWindow, KeyboardWindow, MouseWindow,
WelcomeWindow, InstallPathWindow]
@@ -111,8 +116,6 @@ class InstallInterface:
self.icw.start ()
self.finishedTODO.wait ()
- todo.setLiloLocation("hda")
-
class InstallControlWindow (Thread):
def instantiateWindow (self, windowClass):