diff options
author | Andrew Gaffney <agaffney@gentoo.org> | 2007-01-28 02:42:54 +0000 |
---|---|---|
committer | Andrew Gaffney <agaffney@gentoo.org> | 2007-01-28 02:42:54 +0000 |
commit | 41d6f87f1097941d9c56436c3d78ea0877668a7a (patch) | |
tree | 3115c4e438a817c69f02aa95465d371b8e7c71a1 /src | |
parent | profile default progress_callback in GLISCreen and call it if not handled in ... (diff) | |
download | gli-41d6f87f1097941d9c56436c3d78ea0877668a7a.tar.gz gli-41d6f87f1097941d9c56436c3d78ea0877668a7a.tar.bz2 gli-41d6f87f1097941d9c56436c3d78ea0877668a7a.zip |
change way GLIScreen is imported
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/gli/branches/overhaul@1656 f8877401-5920-0410-a79b-8e2d7e04ca0d
Diffstat (limited to 'src')
-rw-r--r-- | src/fe/gtk/Bootloader.py | 4 | ||||
-rw-r--r-- | src/fe/gtk/ClientConfig.py | 4 | ||||
-rw-r--r-- | src/fe/gtk/Daemons.py | 4 | ||||
-rw-r--r-- | src/fe/gtk/ExtraPackages.py | 4 | ||||
-rw-r--r-- | src/fe/gtk/InstallMode.py | 4 | ||||
-rw-r--r-- | src/fe/gtk/InstallSummary.py | 4 | ||||
-rw-r--r-- | src/fe/gtk/Kernel.py | 4 | ||||
-rw-r--r-- | src/fe/gtk/LocalMounts.py | 4 | ||||
-rw-r--r-- | src/fe/gtk/MakeDotConf.py | 4 | ||||
-rw-r--r-- | src/fe/gtk/NetworkMounts.py | 4 | ||||
-rw-r--r-- | src/fe/gtk/Networking.py | 4 | ||||
-rw-r--r-- | src/fe/gtk/OtherSettings.py | 4 | ||||
-rw-r--r-- | src/fe/gtk/Partition.py | 4 | ||||
-rw-r--r-- | src/fe/gtk/PortageTree.py | 4 | ||||
-rw-r--r-- | src/fe/gtk/RcDotConf.py | 4 | ||||
-rw-r--r-- | src/fe/gtk/Stage.py | 4 | ||||
-rw-r--r-- | src/fe/gtk/StartupServices.py | 4 | ||||
-rw-r--r-- | src/fe/gtk/Template.py | 4 | ||||
-rw-r--r-- | src/fe/gtk/Timezone.py | 4 | ||||
-rw-r--r-- | src/fe/gtk/Users.py | 4 |
20 files changed, 40 insertions, 40 deletions
diff --git a/src/fe/gtk/Bootloader.py b/src/fe/gtk/Bootloader.py index d7bed72..926b4e3 100644 --- a/src/fe/gtk/Bootloader.py +++ b/src/fe/gtk/Bootloader.py @@ -5,9 +5,9 @@ import gtk import gobject -import GLIScreen +from GLIScreen import * -class Panel(GLIScreen.GLIScreen): +class Panel(GLIScreen): title = "Bootloader" active_selection = None diff --git a/src/fe/gtk/ClientConfig.py b/src/fe/gtk/ClientConfig.py index a567672..7832920 100644 --- a/src/fe/gtk/ClientConfig.py +++ b/src/fe/gtk/ClientConfig.py @@ -4,11 +4,11 @@ # of which can be found in the main directory of this project. import gtk -import GLIScreen +from GLIScreen import * import GLIUtility from gettext import gettext as _ -class Panel(GLIScreen.GLIScreen): +class Panel(GLIScreen): title = _("Pre-install Configuration") _helptext = """ diff --git a/src/fe/gtk/Daemons.py b/src/fe/gtk/Daemons.py index c072b6d..21a3f7f 100644 --- a/src/fe/gtk/Daemons.py +++ b/src/fe/gtk/Daemons.py @@ -4,9 +4,9 @@ # of which can be found in the main directory of this project. import gtk -import GLIScreen +from GLIScreen import * -class Panel(GLIScreen.GLIScreen): +class Panel(GLIScreen): title = "Daemons" active_selection_cron = None diff --git a/src/fe/gtk/ExtraPackages.py b/src/fe/gtk/ExtraPackages.py index 0633f31..98a42d4 100644 --- a/src/fe/gtk/ExtraPackages.py +++ b/src/fe/gtk/ExtraPackages.py @@ -4,11 +4,11 @@ # of which can be found in the main directory of this project. import gtk, gobject, copy -import GLIScreen +from GLIScreen import * from Widgets import Widgets import GLIUtility -class Panel(GLIScreen.GLIScreen): +class Panel(GLIScreen): """ The extrapackages section of the installer. diff --git a/src/fe/gtk/InstallMode.py b/src/fe/gtk/InstallMode.py index f1d8408..32c6546 100644 --- a/src/fe/gtk/InstallMode.py +++ b/src/fe/gtk/InstallMode.py @@ -4,10 +4,10 @@ # of which can be found in the main directory of this project. import gtk -import GLIScreen +from GLIScreen import * from gettext import gettext as _ -class Panel(GLIScreen.GLIScreen): +class Panel(GLIScreen): title = _("Welcome to the Gentoo Linux Installer") _helptext = """ diff --git a/src/fe/gtk/InstallSummary.py b/src/fe/gtk/InstallSummary.py index fc04748..61f1b3f 100644 --- a/src/fe/gtk/InstallSummary.py +++ b/src/fe/gtk/InstallSummary.py @@ -4,10 +4,10 @@ # of which can be found in the main directory of this project. import gtk -import GLIScreen +from GLIScreen import * from Widgets import Widgets -class Panel(GLIScreen.GLIScreen): +class Panel(GLIScreen): """ The summary of all installation options. diff --git a/src/fe/gtk/Kernel.py b/src/fe/gtk/Kernel.py index d72622a..38dcbad 100644 --- a/src/fe/gtk/Kernel.py +++ b/src/fe/gtk/Kernel.py @@ -4,10 +4,10 @@ # of which can be found in the main directory of this project. import gtk -import GLIScreen +from GLIScreen import * import URIBrowser -class Panel(GLIScreen.GLIScreen): +class Panel(GLIScreen): title = "Kernel Sources" active_selection = None diff --git a/src/fe/gtk/LocalMounts.py b/src/fe/gtk/LocalMounts.py index 6112346..e532eea 100644 --- a/src/fe/gtk/LocalMounts.py +++ b/src/fe/gtk/LocalMounts.py @@ -4,13 +4,13 @@ # of which can be found in the main directory of this project. import gtk, gobject -import GLIScreen +from GLIScreen import * import Widgets import commands, string import copy from ProgressDialog import * -class Panel(GLIScreen.GLIScreen): +class Panel(GLIScreen): title = "Local Mounts" columns = [] diff --git a/src/fe/gtk/MakeDotConf.py b/src/fe/gtk/MakeDotConf.py index 4d9d908..ca41625 100644 --- a/src/fe/gtk/MakeDotConf.py +++ b/src/fe/gtk/MakeDotConf.py @@ -4,12 +4,12 @@ # of which can be found in the main directory of this project. import gtk -import GLIScreen +from GLIScreen import * import commands import gobject import GLIUtility -class Panel(GLIScreen.GLIScreen): +class Panel(GLIScreen): title = "make.conf" make_conf_values = {} diff --git a/src/fe/gtk/NetworkMounts.py b/src/fe/gtk/NetworkMounts.py index fee06d0..48a4966 100644 --- a/src/fe/gtk/NetworkMounts.py +++ b/src/fe/gtk/NetworkMounts.py @@ -4,14 +4,14 @@ # of which can be found in the main directory of this project. import gtk, gobject -import GLIScreen +from GLIScreen import * import GLIUtility import Widgets import commands, string import copy from ProgressDialog import * -class Panel(GLIScreen.GLIScreen): +class Panel(GLIScreen): title = "Network Mounts" columns = [] diff --git a/src/fe/gtk/Networking.py b/src/fe/gtk/Networking.py index 8e1024f..c8a7196 100644 --- a/src/fe/gtk/Networking.py +++ b/src/fe/gtk/Networking.py @@ -6,14 +6,14 @@ import gtk,gobject import os import re -import GLIScreen +from GLIScreen import * import GLIUtility import commands, string import copy #import subprocess from Widgets import Widgets -class Panel(GLIScreen.GLIScreen): +class Panel(GLIScreen): """ The Networking section of the installer. diff --git a/src/fe/gtk/OtherSettings.py b/src/fe/gtk/OtherSettings.py index 77c49cf..206e0ad 100644 --- a/src/fe/gtk/OtherSettings.py +++ b/src/fe/gtk/OtherSettings.py @@ -5,11 +5,11 @@ import gtk import os -import GLIScreen +from GLIScreen import * import GLIUtility from Widgets import Widgets -class Panel(GLIScreen.GLIScreen): +class Panel(GLIScreen): """ Other settings for an install. diff --git a/src/fe/gtk/Partition.py b/src/fe/gtk/Partition.py index ac6fb0d..8cb192c 100644 --- a/src/fe/gtk/Partition.py +++ b/src/fe/gtk/Partition.py @@ -4,7 +4,7 @@ # of which can be found in the main directory of this project. import gtk -import GLIScreen +from GLIScreen import * import Partitioning from GLIException import * import re @@ -12,7 +12,7 @@ import PartitionButton import PartProperties from gettext import gettext as _ -class Panel(GLIScreen.GLIScreen): +class Panel(GLIScreen): title = _("Partitioning") part_buttons = {} diff --git a/src/fe/gtk/PortageTree.py b/src/fe/gtk/PortageTree.py index 571c0c4..c9cb8c3 100644 --- a/src/fe/gtk/PortageTree.py +++ b/src/fe/gtk/PortageTree.py @@ -4,12 +4,12 @@ # of which can be found in the main directory of this project. import gtk -import GLIScreen +from GLIScreen import * import GLIUtility import URIBrowser from ProgressDialog import * -class Panel(GLIScreen.GLIScreen): +class Panel(GLIScreen): title = "Portage Tree" active_selection = None diff --git a/src/fe/gtk/RcDotConf.py b/src/fe/gtk/RcDotConf.py index 274aeca..06116d3 100644 --- a/src/fe/gtk/RcDotConf.py +++ b/src/fe/gtk/RcDotConf.py @@ -5,11 +5,11 @@ import gtk import os -import GLIScreen +from GLIScreen import * import GLIUtility from Widgets import Widgets -class Panel(GLIScreen.GLIScreen): +class Panel(GLIScreen): """ The make.conf section of the installer. diff --git a/src/fe/gtk/Stage.py b/src/fe/gtk/Stage.py index 7a3f433..ea2e27f 100644 --- a/src/fe/gtk/Stage.py +++ b/src/fe/gtk/Stage.py @@ -4,12 +4,12 @@ # of which can be found in the main directory of this project. import gtk -import GLIScreen +from GLIScreen import * import GLIUtility import URIBrowser from ProgressDialog import * -class Panel(GLIScreen.GLIScreen): +class Panel(GLIScreen): title = "Stage Selection" _helptext = """ diff --git a/src/fe/gtk/StartupServices.py b/src/fe/gtk/StartupServices.py index 6979559..73fdd22 100644 --- a/src/fe/gtk/StartupServices.py +++ b/src/fe/gtk/StartupServices.py @@ -5,10 +5,10 @@ import gtk import gobject -import GLIScreen +from GLIScreen import * from gettext import gettext as _ -class Panel(GLIScreen.GLIScreen): +class Panel(GLIScreen): title = _("Startup Services") _helptext = """ diff --git a/src/fe/gtk/Template.py b/src/fe/gtk/Template.py index 2396f09..ea76d0e 100644 --- a/src/fe/gtk/Template.py +++ b/src/fe/gtk/Template.py @@ -4,10 +4,10 @@ # of which can be found in the main directory of this project. import gtk -import GLIScreen +from GLIScreen import * from gettext import gettext as _ -class Panel(GLIScreen.GLIScreen): +class Panel(GLIScreen): title = "Welcome to the Gentoo Linux Installer" diff --git a/src/fe/gtk/Timezone.py b/src/fe/gtk/Timezone.py index 4ecba63..dbd88b8 100644 --- a/src/fe/gtk/Timezone.py +++ b/src/fe/gtk/Timezone.py @@ -4,14 +4,14 @@ # of which can be found in the main directory of this project. import gtk -import GLIScreen +from GLIScreen import * import os import string import timezone_map_gui import zonetab from Widgets import Widgets -class Panel(GLIScreen.GLIScreen): +class Panel(GLIScreen): """ The Timezone section of the installer. diff --git a/src/fe/gtk/Users.py b/src/fe/gtk/Users.py index 6c929a9..0c853bf 100644 --- a/src/fe/gtk/Users.py +++ b/src/fe/gtk/Users.py @@ -6,11 +6,11 @@ import gtk,gobject import os import re -import GLIScreen +from GLIScreen import * from Widgets import Widgets import GLIUtility -class Panel(GLIScreen.GLIScreen): +class Panel(GLIScreen): """ The Users section of the installer. |