summaryrefslogtreecommitdiffstats
path: root/gui.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2005-03-29 18:36:45 +0000
committerJeremy Katz <katzj@redhat.com>2005-03-29 18:36:45 +0000
commit3eede90004cfa9e12299aed178c652a91174a5fb (patch)
treeb988f726fee46b21d95a0154322d4755384f9b50 /gui.py
parent7ec16efcd173926d85f8a801a0af390f93dc4689 (diff)
downloadanaconda-3eede90004cfa9e12299aed178c652a91174a5fb.tar.gz
anaconda-3eede90004cfa9e12299aed178c652a91174a5fb.tar.xz
anaconda-3eede90004cfa9e12299aed178c652a91174a5fb.zip
2005-03-29 Jeremy Katz <katzj@redhat.com>
* anaconda: Remove essentially unused config file data code, product.img basically supplanted this. * Makefile: Likewise. * cmdline.py: Likewise. * gui.py: Likewise. * text.py: Likewise. * dispatch.py: Likewise. * instdata.py: Likewise. * splashscreen.py: Likewise. * iw/welcome_gui.py: Likewise. * textw/welcome_text.py: Likewise. * anaconda.conf: Remove file. * configFileData.py: Likewise. * readConfigFile.py: Likewise.
Diffstat (limited to 'gui.py')
-rwxr-xr-xgui.py17
1 files changed, 5 insertions, 12 deletions
diff --git a/gui.py b/gui.py
index 9a06de8e1..d2f414433 100755
--- a/gui.py
+++ b/gui.py
@@ -82,7 +82,7 @@ stepToClass = {
"complete" : ("congrats_gui", "CongratulationWindow"),
}
-elif iutil.getArch() == 's390':
+if iutil.getArch() == 's390':
stepToClass["bootloader"] = ("zipl_gui", "ZiplWindow")
#
@@ -738,7 +738,7 @@ class InstallInterface:
def getBootdisk (self):
return None
- def run(self, id, dispatch, configFileData):
+ def run(self, id, dispatch):
## from xkb import XKB
## kb = XKB()
@@ -768,7 +768,7 @@ class InstallInterface:
id.instLanguage.setRuntimeLanguage (lang)
id.instLanguage.setDefault (lang)
self.icw = InstallControlWindow (self, self.dispatch, lang)
- self.icw.run (self.runres, configFileData)
+ self.icw.run (self.runres)
class TextViewBrowser(gtk.TextView):
def __init__(self):
@@ -1319,8 +1319,7 @@ class InstallControlWindow:
def busyCursorPop(self):
rootPopBusyCursor()
- def run (self, runres, configFileData):
- self.configFileData = configFileData
+ def run (self, runres):
self.setup_window(runres)
gtk.main()
@@ -1392,14 +1391,8 @@ class InstallControlState:
if self.htmlFile:
file = self.htmlFile
- if self.cw.configFileData.has_key("helptag"):
- helpTag = "-%s" % (self.cw.configFileData["helptag"],)
- else:
- helpTag = ""
-
arch = "-%s" % (iutil.getArch(),)
- tags = [ "%s%s" % (helpTag, arch), "%s" % (helpTag,),
- "%s" % (arch,), "" ]
+ tags = [ "%s" % (arch,), "" ]
found = 0
for path in self.searchPath: