From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1QjfqS-0002KC-Qx for garchives@archives.gentoo.org; Wed, 20 Jul 2011 23:06:25 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A61F021C0BE; Wed, 20 Jul 2011 23:05:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 7937321C0A7 for ; Wed, 20 Jul 2011 23:05:57 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EF0652AC102 for ; Wed, 20 Jul 2011 23:05:56 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 3275480056 for ; Wed, 20 Jul 2011 23:05:56 +0000 (UTC) From: "Wiktor W Brodlo" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Wiktor W Brodlo" Message-ID: <68c93fa367e2a5d29d5a27d78caa9c5a8da881c6.wiktor@gentoo> Subject: [gentoo-commits] proj/anaconda:master commit in: /, iw/ X-VCS-Repository: proj/anaconda X-VCS-Files: dispatch.py gui.py installclass.py iw/welcome_gui.py X-VCS-Directories: / iw/ X-VCS-Committer: wiktor X-VCS-Committer-Name: Wiktor W Brodlo X-VCS-Revision: 68c93fa367e2a5d29d5a27d78caa9c5a8da881c6 Date: Wed, 20 Jul 2011 23:05:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 7506ad66ac194bcf22cd1e8b402d3574 commit: 68c93fa367e2a5d29d5a27d78caa9c5a8da881c6 Author: wiktor w brodlo brodlo net> AuthorDate: Wed Jul 20 22:54:39 2011 +0000 Commit: Wiktor W Brodlo brodlo net> CommitDate: Wed Jul 20 22:54:39 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/anaconda.git;= a=3Dcommit;h=3D68c93fa3 Installing Necessary System Tools welcome screen --- dispatch.py | 1 + gui.py | 1 + installclass.py | 1 + iw/welcome_gui.py | 7 ++++++- 4 files changed, 9 insertions(+), 1 deletions(-) diff --git a/dispatch.py b/dispatch.py index ed08b2e..3463346 100644 --- a/dispatch.py +++ b/dispatch.py @@ -115,6 +115,7 @@ installSteps =3D [ ("accounts", ), =20 # Installing Necessary System Tools + ("systoolswelcome", systools, ), ("systools", ), =20 # Configuring the Bootloader diff --git a/gui.py b/gui.py index ee8e109..e9d0286 100755 --- a/gui.py +++ b/gui.py @@ -98,6 +98,7 @@ stepToClass =3D { "accounts" : ("account_gui", "AccountWindow"), =20 # Installing Necessary System Tools + "systoolswelcome" : ("welcome_gui", "WelcomeWindow"), "systools" : ("systools_gui", "SystoolsWindow"), =20 # Configuring the Bootloader diff --git a/installclass.py b/installclass.py index 95cbfcf..a3e93f1 100644 --- a/installclass.py +++ b/installclass.py @@ -122,6 +122,7 @@ class BaseInstallClass(object): "accounts", =20 # Installing Necessary System Tools + "systoolswelcome",=20 "systools", =20 # Configuring the Bootloader diff --git a/iw/welcome_gui.py b/iw/welcome_gui.py index 397c686..2adb51e 100644 --- a/iw/welcome_gui.py +++ b/iw/welcome_gui.py @@ -76,11 +76,16 @@ class WelcomeWindow (InstallWindow): installer will just copy the LiveDVD kernel to= your \ new system."), 7) - =20 + =20 def configuresystem(self, anaconda): self.setWindow(_("Configuring your System"), _("In this chapter you will only have to set your= root \ password as the rest is figured out automatica= lly ;-)"), 8) + =20 + def systools(self, anaconda): + self.setWindow(_("Installing Necessary System Tools"), + _("In this chapter we help you choose and install= some important tools. "), + 9) def getNext(self): return None