diff options
author | wiktor w brodlo <wiktor@brodlo.net> | 2011-07-20 22:58:14 +0000 |
---|---|---|
committer | wiktor w brodlo <wiktor@brodlo.net> | 2011-07-20 22:58:14 +0000 |
commit | 5b1fb60b2e846e68d1f8f3c753c85539f9dc2a08 (patch) | |
tree | 6c3e72fb855904bf34ce9bdba52b225690da5efe | |
parent | Installing Necessary System Tools welcome screen (diff) | |
download | anaconda-5b1fb60b2e846e68d1f8f3c753c85539f9dc2a08.tar.gz anaconda-5b1fb60b2e846e68d1f8f3c753c85539f9dc2a08.tar.bz2 anaconda-5b1fb60b2e846e68d1f8f3c753c85539f9dc2a08.zip |
Configuring the Bootloader welcome screen
-rw-r--r-- | dispatch.py | 1 | ||||
-rwxr-xr-x | gui.py | 1 | ||||
-rw-r--r-- | installclass.py | 1 | ||||
-rw-r--r-- | iw/welcome_gui.py | 8 |
4 files changed, 10 insertions, 1 deletions
diff --git a/dispatch.py b/dispatch.py index 3463346..eb1f1c3 100644 --- a/dispatch.py +++ b/dispatch.py @@ -119,6 +119,7 @@ installSteps = [ ("systools", ), # Configuring the Bootloader + ("bootloaderwelcome", bootloader, ), ("upgbootloader", ), ("bootloadersetup", bootloaderSetupChoices, ), ("bootloader", ), @@ -102,6 +102,7 @@ stepToClass = { "systools" : ("systools_gui", "SystoolsWindow"), # Configuring the Bootloader + "bootloaderwelcome": ("welcome_gui", "WelcomeWindow"), "bootloader": ("bootloader_main_gui", "MainBootloaderWindow"), "upgbootloader": ("upgrade_bootloader_gui", "UpgradeBootloaderWindow"), diff --git a/installclass.py b/installclass.py index a3e93f1..e779276 100644 --- a/installclass.py +++ b/installclass.py @@ -126,6 +126,7 @@ class BaseInstallClass(object): "systools", # Configuring the Bootloader + "bootloaderwelcome", "bootloadersetup", "bootloader", diff --git a/iw/welcome_gui.py b/iw/welcome_gui.py index 2adb51e..b0cb77c 100644 --- a/iw/welcome_gui.py +++ b/iw/welcome_gui.py @@ -85,7 +85,13 @@ class WelcomeWindow (InstallWindow): def systools(self, anaconda): self.setWindow(_("Installing Necessary System Tools"), - _("In this chapter we help you choose and install some important tools. "), + _("In this chapter we help you choose and install some important tools."), 9) + + def bootloader(self, anaconda): + self.setWindow(_("Configuring the Bootloader"), + _("In this chapter you'll be able configure the GRUB \ + bootloader."), + 10) def getNext(self): return None |