summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2006-05-16 16:01:32 +0000
committerChris Lumens <clumens@redhat.com>2006-05-16 16:01:32 +0000
commitfd56e446dba2a7abbd09981ecdcf63098fb46fd7 (patch)
tree52b21730aedff8286961c3c8cbcfd4c558c11768 /iw
parent46d4b5a1a19b3fcd72826ec36906e2402569eb73 (diff)
downloadanaconda-fd56e446dba2a7abbd09981ecdcf63098fb46fd7.tar.gz
anaconda-fd56e446dba2a7abbd09981ecdcf63098fb46fd7.tar.xz
anaconda-fd56e446dba2a7abbd09981ecdcf63098fb46fd7.zip
Remove help-related methods, classes, and variables since that stuff has
been disabled for months and it's never coming back. Also remove this stuff from the glade file as well.
Diffstat (limited to 'iw')
-rw-r--r--iw/account_gui.py1
-rw-r--r--iw/autopart_type.py1
-rw-r--r--iw/bootloader_advanced_gui.py1
-rw-r--r--iw/bootloader_main_gui.py1
-rw-r--r--iw/confirm_gui.py2
-rw-r--r--iw/congrats_gui.py4
-rw-r--r--iw/examine_gui.py1
-rw-r--r--iw/iw_gui.py4
-rw-r--r--iw/language_gui.py1
-rw-r--r--iw/mouse_gui.py1
-rw-r--r--iw/network_gui.py1
-rw-r--r--iw/partition_gui.py1
-rw-r--r--iw/partmethod_gui.py3
-rw-r--r--iw/progress_gui.py3
-rw-r--r--iw/timezone_gui.py1
-rw-r--r--iw/upgrade_bootloader_gui.py1
-rw-r--r--iw/upgrade_migratefs_gui.py1
-rw-r--r--iw/upgrade_swap_gui.py1
-rw-r--r--iw/welcome_gui.py1
-rw-r--r--iw/zfcp_gui.py1
-rw-r--r--iw/zipl_gui.py1
21 files changed, 0 insertions, 32 deletions
diff --git a/iw/account_gui.py b/iw/account_gui.py
index 152b5236a..a7f46b7a4 100644
--- a/iw/account_gui.py
+++ b/iw/account_gui.py
@@ -23,7 +23,6 @@ from flags import flags
class AccountWindow (InstallWindow):
windowTitle = N_("Set Root Password")
- htmlTag = ("accts")
def getNext (self):
def passwordError():
diff --git a/iw/autopart_type.py b/iw/autopart_type.py
index 52b0d6110..b1d90c4e1 100644
--- a/iw/autopart_type.py
+++ b/iw/autopart_type.py
@@ -31,7 +31,6 @@ class PartitionTypeWindow(InstallWindow):
InstallWindow.__init__(self, ics)
ics.setTitle("Automatic Partitioning")
ics.setNextEnabled(True)
- ics.readHTML("autopart")
def getNext(self):
active = self.combo.get_active_iter()
diff --git a/iw/bootloader_advanced_gui.py b/iw/bootloader_advanced_gui.py
index 2b81b1396..1ad5362dd 100644
--- a/iw/bootloader_advanced_gui.py
+++ b/iw/bootloader_advanced_gui.py
@@ -25,7 +25,6 @@ from bootlocwidget import BootloaderLocationWidget
class AdvancedBootloaderWindow(InstallWindow):
windowTitle = N_("Advanced Boot Loader Configuration")
- htmlTag = "advbootloader"
def __init__(self, ics):
InstallWindow.__init__(self, ics)
diff --git a/iw/bootloader_main_gui.py b/iw/bootloader_main_gui.py
index c6b37b73d..862dfd25f 100644
--- a/iw/bootloader_main_gui.py
+++ b/iw/bootloader_main_gui.py
@@ -28,7 +28,6 @@ from blpasswidget import BootloaderPasswordWidget
class MainBootloaderWindow(InstallWindow):
windowTitle = N_("Boot Loader Configuration")
- htmlTag = "bootloader"
def __init__(self, ics):
InstallWindow.__init__(self, ics)
diff --git a/iw/confirm_gui.py b/iw/confirm_gui.py
index db1d0d29d..74c6a29e9 100644
--- a/iw/confirm_gui.py
+++ b/iw/confirm_gui.py
@@ -72,7 +72,6 @@ class ConfirmWindow (InstallWindow):
class InstallConfirmWindow (ConfirmWindow):
windowTitle = N_("About to Install")
- htmlTag = "aboutinstall"
def getScreen(self, anaconda):
self.anaconda = anaconda
@@ -87,7 +86,6 @@ class InstallConfirmWindow (ConfirmWindow):
class UpgradeConfirmWindow (ConfirmWindow):
windowTitle = N_("About to Upgrade")
- htmlTag = "aboutupgrade"
def getScreen(self, anaconda):
self.anaconda = anaconda
diff --git a/iw/congrats_gui.py b/iw/congrats_gui.py
index 70265f085..3cf9ffbbc 100644
--- a/iw/congrats_gui.py
+++ b/iw/congrats_gui.py
@@ -27,8 +27,6 @@ class CongratulationWindow (InstallWindow):
InstallWindow.__init__(self, ics)
ics.setPrevEnabled(False)
- ics.setHelpButtonEnabled(False)
- ics.setHelpEnabled(False)
# force buttonbar on in case release notes viewer is running
ics.cw.mainxml.get_widget("buttonBar").set_sensitive(True)
@@ -45,8 +43,6 @@ class CongratulationWindow (InstallWindow):
# CongratulationWindow tag=NA
def getScreen (self, anaconda):
- self.ics.setHelpEnabled (False)
-
hbox = gtk.HBox (False, 5)
pix = gui.readImageFromFile ("done.png")
diff --git a/iw/examine_gui.py b/iw/examine_gui.py
index 82df5add6..d17644d6c 100644
--- a/iw/examine_gui.py
+++ b/iw/examine_gui.py
@@ -29,7 +29,6 @@ REINSTALL_STR = "reinstall"
class UpgradeExamineWindow (InstallWindow):
windowTitle = N_("Upgrade Examine")
- htmlTag = "upgradeexamine"
def getNext (self):
if self.doupgrade:
diff --git a/iw/iw_gui.py b/iw/iw_gui.py
index b4dc4e280..41d3eb9e8 100644
--- a/iw/iw_gui.py
+++ b/iw/iw_gui.py
@@ -15,15 +15,11 @@ from rhpl.translate import _
class InstallWindow:
- htmlTag = None
windowTitle = None
def __init__ (self,ics):
self.ics = ics
- if self.htmlTag:
- ics.readHTML (self.htmlTag)
-
if self.windowTitle:
ics.setTitle (_(self.windowTitle))
diff --git a/iw/language_gui.py b/iw/language_gui.py
index 33f541a10..34a6c4a9e 100644
--- a/iw/language_gui.py
+++ b/iw/language_gui.py
@@ -22,7 +22,6 @@ from gui import setupTreeViewFixupIdleHandler
class LanguageWindow (InstallWindow):
windowTitle = N_("Language Selection")
- htmlTag = "lang"
def __init__ (self, ics):
InstallWindow.__init__ (self, ics)
diff --git a/iw/mouse_gui.py b/iw/mouse_gui.py
index 608c154c4..5fb768cf2 100644
--- a/iw/mouse_gui.py
+++ b/iw/mouse_gui.py
@@ -22,7 +22,6 @@ from flags import flags
class MouseWindow(InstallWindow):
windowTitle = N_("Mouse Configuration")
- htmlTag = "mouse"
def getNext(self):
self.mouse.setMouse(self.currentMouse,self.emulate3.get_active())
diff --git a/iw/network_gui.py b/iw/network_gui.py
index e2ae6711e..25b731197 100644
--- a/iw/network_gui.py
+++ b/iw/network_gui.py
@@ -33,7 +33,6 @@ global_option_labels = [_("_Gateway"), _("_Primary DNS"),
class NetworkWindow(InstallWindow):
windowTitle = N_("Network Configuration")
- htmlTag = "netconf"
def __init__(self, ics):
InstallWindow.__init__(self, ics)
diff --git a/iw/partition_gui.py b/iw/partition_gui.py
index 24f54cc66..ff9cd500f 100644
--- a/iw/partition_gui.py
+++ b/iw/partition_gui.py
@@ -541,7 +541,6 @@ class PartitionWindow(InstallWindow):
InstallWindow.__init__(self, ics)
ics.setTitle(_("Partitioning"))
ics.setNextEnabled(True)
- ics.readHTML("partition")
self.parent = ics.getICW().window
def quit(self):
diff --git a/iw/partmethod_gui.py b/iw/partmethod_gui.py
index d7805a1fa..e23f7ff74 100644
--- a/iw/partmethod_gui.py
+++ b/iw/partmethod_gui.py
@@ -34,9 +34,6 @@ class PartitionMethodWindow(InstallWindow):
return None
def getScreen (self, partitions, instclass):
-
- self.ics.readHTML("howpartition")
-
self.partitions = partitions
box = gtk.VBox (False)
diff --git a/iw/progress_gui.py b/iw/progress_gui.py
index 30ae897e4..7828ab56c 100644
--- a/iw/progress_gui.py
+++ b/iw/progress_gui.py
@@ -53,7 +53,6 @@ def size_string (size):
class InstallProgressWindow (InstallWindow):
windowTitle = N_("Installing Packages")
- htmlTag = "installing"
def __init__ (self, ics):
InstallWindow.__init__ (self, ics)
@@ -61,8 +60,6 @@ class InstallProgressWindow (InstallWindow):
ics.setPrevEnabled (False)
ics.setNextEnabled (False)
- ics.setHelpButtonEnabled (False)
-
self.numComplete = 0
self.sizeComplete = 0
self.filesComplete = 0
diff --git a/iw/timezone_gui.py b/iw/timezone_gui.py
index 75528be49..5deea8c75 100644
--- a/iw/timezone_gui.py
+++ b/iw/timezone_gui.py
@@ -59,7 +59,6 @@ class TimezoneWindow(InstallWindow):
ics.setTitle(_("Time Zone Selection"))
ics.setNextEnabled(1)
- ics.readHTML("timezone")
def custom_widget_handler(self, xml, function_name, widget_name, str1, str2,
int1, int2):
diff --git a/iw/upgrade_bootloader_gui.py b/iw/upgrade_bootloader_gui.py
index 328905330..ae0ff569a 100644
--- a/iw/upgrade_bootloader_gui.py
+++ b/iw/upgrade_bootloader_gui.py
@@ -25,7 +25,6 @@ import checkbootloader
class UpgradeBootloaderWindow (InstallWindow):
windowTitle = N_("Upgrade Boot Loader Configuration")
- htmlTag = "bl-upgrade"
def getPrev(self):
pass
diff --git a/iw/upgrade_migratefs_gui.py b/iw/upgrade_migratefs_gui.py
index d39fd1173..00c31d698 100644
--- a/iw/upgrade_migratefs_gui.py
+++ b/iw/upgrade_migratefs_gui.py
@@ -26,7 +26,6 @@ import gtk
class UpgradeMigrateFSWindow (InstallWindow):
windowTitle = N_("Migrate File Systems")
- htmlTag = "upmigfs"
def getNext (self):
for entry in self.migent:
diff --git a/iw/upgrade_swap_gui.py b/iw/upgrade_swap_gui.py
index 6ae86e04e..ca53464f6 100644
--- a/iw/upgrade_swap_gui.py
+++ b/iw/upgrade_swap_gui.py
@@ -27,7 +27,6 @@ from rhpl.translate import _, N_
class UpgradeSwapWindow (InstallWindow):
windowTitle = N_("Upgrade Swap Partition")
- htmlTag = "upswapfile"
def getNext (self):
#-If the user doesn't need to add swap, we don't do anything
diff --git a/iw/welcome_gui.py b/iw/welcome_gui.py
index 019c7744b..261617773 100644
--- a/iw/welcome_gui.py
+++ b/iw/welcome_gui.py
@@ -19,7 +19,6 @@ from rhpl.translate import _, N_
class WelcomeWindow (InstallWindow):
windowTitle = "" #N_("Welcome")
- htmlTag = "wel"
def __init__ (self, ics):
InstallWindow.__init__ (self, ics)
diff --git a/iw/zfcp_gui.py b/iw/zfcp_gui.py
index 15d81c499..756ea8678 100644
--- a/iw/zfcp_gui.py
+++ b/iw/zfcp_gui.py
@@ -22,7 +22,6 @@ import copy
class ZFCPWindow(InstallWindow):
windowTitle = N_("ZFCP Configuration")
- htmlTag = "fcpdevices"
def __init__(self, ics):
InstallWindow.__init__(self, ics)
diff --git a/iw/zipl_gui.py b/iw/zipl_gui.py
index 90f46baef..aa2c70b85 100644
--- a/iw/zipl_gui.py
+++ b/iw/zipl_gui.py
@@ -25,7 +25,6 @@ class ZiplWindow (InstallWindow):
def __init__ (self, ics):
InstallWindow.__init__ (self, ics)
self.ics.setTitle ("z/IPL")
- self.ics.readHTML ("zipl-s390")
self.ics.windowTitle = N_("z/IPL Boot Loader Configuration")
def getPrev (self):