summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2001-08-07 15:42:06 +0000
committerMatt Wilson <msw@redhat.com>2001-08-07 15:42:06 +0000
commitaa17c6c33af7e2695aba75928762a81898f5865d (patch)
treecc6ce4b4344077846b183720a670b74e5c91da0e
parent457d6e95e7af9abfddf9abd9d5fd5232a40a8778 (diff)
downloadanaconda-aa17c6c33af7e2695aba75928762a81898f5865d.tar.gz
anaconda-aa17c6c33af7e2695aba75928762a81898f5865d.tar.xz
anaconda-aa17c6c33af7e2695aba75928762a81898f5865d.zip
copyright
-rw-r--r--iw/checklist.py16
-rw-r--r--iw/confirm_gui.py13
-rw-r--r--iw/congrats_gui.py13
-rw-r--r--iw/dependencies_gui.py13
-rw-r--r--iw/examine_gui.py14
-rw-r--r--iw/fdisk_gui.py13
-rw-r--r--iw/firewall_gui.py13
-rw-r--r--iw/installpath_gui.py17
-rw-r--r--iw/iw_gui.py13
-rw-r--r--iw/language_gui.py13
-rw-r--r--iw/language_support_gui.py21
-rw-r--r--iw/mouse_gui.py17
-rw-r--r--iw/package_gui.py26
-rw-r--r--iw/progress_gui.py13
-rw-r--r--iw/silo_gui.py13
-rw-r--r--iw/timezone_gui.py17
-rw-r--r--iw/welcome_gui.py13
17 files changed, 239 insertions, 19 deletions
diff --git a/iw/checklist.py b/iw/checklist.py
index 1744c3936..c68e83a70 100644
--- a/iw/checklist.py
+++ b/iw/checklist.py
@@ -1,3 +1,19 @@
+#
+# checklist.py: A class (derived from GtkCList) that provides a list of
+# checkbox / text string pairs
+#
+# Brent Fox <bfox@redhat.com>
+#
+# Copyright 2001 Red Hat, Inc.
+#
+# This software may be freely redistributed under the terms of the GNU
+# library public license.
+#
+# You should have received a copy of the GNU Library Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+#
+
from gtk import *
import GTK
diff --git a/iw/confirm_gui.py b/iw/confirm_gui.py
index 95c62527c..501dba162 100644
--- a/iw/confirm_gui.py
+++ b/iw/confirm_gui.py
@@ -1,3 +1,16 @@
+#
+# confirm_gui.py: install/upgrade point of no return screen.
+#
+# Copyright 2001 Red Hat, Inc.
+#
+# This software may be freely redistributed under the terms of the GNU
+# library public license.
+#
+# You should have received a copy of the GNU Library Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+#
+
from gtk import *
from iw_gui import *
from translate import _, N_
diff --git a/iw/congrats_gui.py b/iw/congrats_gui.py
index 720ef331e..f1ea749d8 100644
--- a/iw/congrats_gui.py
+++ b/iw/congrats_gui.py
@@ -1,3 +1,16 @@
+#
+# congrats_gui.py: install/upgrade complete screen.
+#
+# Copyright 2001 Red Hat, Inc.
+#
+# This software may be freely redistributed under the terms of the GNU
+# library public license.
+#
+# You should have received a copy of the GNU Library Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+#
+
from gtk import *
from gnome.ui import *
from iw_gui import *
diff --git a/iw/dependencies_gui.py b/iw/dependencies_gui.py
index 2ba309025..abf510e2e 100644
--- a/iw/dependencies_gui.py
+++ b/iw/dependencies_gui.py
@@ -1,3 +1,16 @@
+#
+# dependencies_gui.py: screen to allow resolution of unresolved dependencies.
+#
+# Copyright 2001 Red Hat, Inc.
+#
+# This software may be freely redistributed under the terms of the GNU
+# library public license.
+#
+# You should have received a copy of the GNU Library Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+#
+
from iw_gui import *
from gtk import *
from translate import _, N_
diff --git a/iw/examine_gui.py b/iw/examine_gui.py
index 4e88761e5..0107f383d 100644
--- a/iw/examine_gui.py
+++ b/iw/examine_gui.py
@@ -1,4 +1,16 @@
-
+#
+# examine_gui.py: dialog to allow selection of a RHL installation to upgrade
+# and if the user wishes to select individual packages.
+#
+# Copyright 2001 Red Hat, Inc.
+#
+# This software may be freely redistributed under the terms of the GNU
+# library public license.
+#
+# You should have received a copy of the GNU Library Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+#
from gtk import *
from iw_gui import *
diff --git a/iw/fdisk_gui.py b/iw/fdisk_gui.py
index 0b046027f..5c2b0e96a 100644
--- a/iw/fdisk_gui.py
+++ b/iw/fdisk_gui.py
@@ -1,3 +1,16 @@
+#
+# fdisk_gui.py: interface that allows the user to run util-linux fdisk.
+#
+# Copyright 2001 Red Hat, Inc.
+#
+# This software may be freely redistributed under the terms of the GNU
+# library public license.
+#
+# You should have received a copy of the GNU Library Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+#
+
from gtk import *
from iw_gui import *
from gnome.zvt import *
diff --git a/iw/firewall_gui.py b/iw/firewall_gui.py
index 68164bf2d..181c1c0f8 100644
--- a/iw/firewall_gui.py
+++ b/iw/firewall_gui.py
@@ -1,3 +1,16 @@
+#
+# firewall_gui.py: firewall setup screen
+#
+# Copyright 2001 Red Hat, Inc.
+#
+# This software may be freely redistributed under the terms of the GNU
+# library public license.
+#
+# You should have received a copy of the GNU Library Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+#
+
from gtk import *
from gnome.ui import *
from iw_gui import *
diff --git a/iw/installpath_gui.py b/iw/installpath_gui.py
index 0d676a64d..2a603a87d 100644
--- a/iw/installpath_gui.py
+++ b/iw/installpath_gui.py
@@ -1,8 +1,21 @@
-from gtk import *
-from translate import _, N_
+#
+# installpath_gui.py: screen for selecting which installclass to use.
+#
+# Copyright 2001 Red Hat, Inc.
+#
+# This software may be freely redistributed under the terms of the GNU
+# library public license.
+#
+# You should have received a copy of the GNU Library Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+#
+
import installclass
+from gtk import *
from iw_gui import InstallWindow
from flags import flags
+from translate import _, N_
UPGRADE = 0
INSTALL = 1
diff --git a/iw/iw_gui.py b/iw/iw_gui.py
index f63820cca..72c6694a7 100644
--- a/iw/iw_gui.py
+++ b/iw/iw_gui.py
@@ -1,3 +1,16 @@
+#
+# iw_gui.py: install window base class
+#
+# Copyright 2001 Red Hat, Inc.
+#
+# This software may be freely redistributed under the terms of the GNU
+# library public license.
+#
+# You should have received a copy of the GNU Library Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+#
+
from translate import _
class InstallWindow:
diff --git a/iw/language_gui.py b/iw/language_gui.py
index 5dad11ee9..c0028e756 100644
--- a/iw/language_gui.py
+++ b/iw/language_gui.py
@@ -1,3 +1,16 @@
+#
+# langauge_gui.py: installtime language selection.
+#
+# Copyright 2001 Red Hat, Inc.
+#
+# This software may be freely redistributed under the terms of the GNU
+# library public license.
+#
+# You should have received a copy of the GNU Library Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+#
+
from gtk import *
from iw_gui import *
from translate import _, N_
diff --git a/iw/language_support_gui.py b/iw/language_support_gui.py
index be89cee6c..8381f023f 100644
--- a/iw/language_support_gui.py
+++ b/iw/language_support_gui.py
@@ -1,12 +1,23 @@
+#
+# langauge_support_gui.py: dialog for selection of which languages to support.
+#
+# Copyright 2001 Red Hat, Inc.
+#
+# This software may be freely redistributed under the terms of the GNU
+# library public license.
+#
+# You should have received a copy of the GNU Library Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+#
+
+import gdkpixbuf
+import checklist
from gtk import *
from iw_gui import *
-from translate import _, N_
-from xpms_gui import CHECKBOX_ON_XPM
-from xpms_gui import CHECKBOX_OFF_XPM
-import gdkpixbuf
from gnome.ui import *
from flags import flags
-import checklist
+from translate import _, N_
class LanguageSupportWindow (InstallWindow):
windowTitle = _("Additional Language Support")
diff --git a/iw/mouse_gui.py b/iw/mouse_gui.py
index c8aa7dff8..0673e8a71 100644
--- a/iw/mouse_gui.py
+++ b/iw/mouse_gui.py
@@ -1,10 +1,21 @@
-from gtk import *
+#
+# mouse_gui.py: gui mouse configuration.
+#
+# Copyright 2001 Red Hat, Inc.
+#
+# This software may be freely redistributed under the terms of the GNU
+# library public license.
+#
+# You should have received a copy of the GNU Library Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+#
-# must replace with explcit form so update disks will work
+import tree
+from gtk import *
from iw_gui import *
from string import *
from re import *
-import tree
from translate import _, N_
from flags import flags
diff --git a/iw/package_gui.py b/iw/package_gui.py
index f193f6b18..54f6f2b80 100644
--- a/iw/package_gui.py
+++ b/iw/package_gui.py
@@ -1,16 +1,30 @@
+#
+# package_gui.py: package group and individual package selection screens
+#
+# Copyright 2001 Red Hat, Inc.
+#
+# This software may be freely redistributed under the terms of the GNU
+# library public license.
+#
+# You should have received a copy of the GNU Library Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+#
+
+import rpm
+import gui
+import string
+import sys
+import checklist
+import gdkpixbuf
from gtk import *
from gnome.ui import *
from iw_gui import *
from string import *
from thread import *
from examine_gui import *
-import rpm
-import gui
-import string
-import sys
from translate import _, N_
-import checklist
-import gdkpixbuf
+
def queryUpgradeContinue(intf):
rc = intf.messageWindow(_("Proceed with upgrade?"),
diff --git a/iw/progress_gui.py b/iw/progress_gui.py
index 151936c05..ef98c19de 100644
--- a/iw/progress_gui.py
+++ b/iw/progress_gui.py
@@ -1,3 +1,16 @@
+#
+# progress_gui.py: install/upgrade progress window setup.
+#
+# Copyright 2001 Red Hat, Inc.
+#
+# This software may be freely redistributed under the terms of the GNU
+# library public license.
+#
+# You should have received a copy of the GNU Library Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+#
+
import string
import rpm
import os
diff --git a/iw/silo_gui.py b/iw/silo_gui.py
index bf1578b62..583f1180d 100644
--- a/iw/silo_gui.py
+++ b/iw/silo_gui.py
@@ -1,3 +1,16 @@
+#
+# silo_gui.py: SILO configuration -- THIS FILE IS DEPRECIATED.
+#
+# Copyright 2001 Red Hat, Inc.
+#
+# This software may be freely redistributed under the terms of the GNU
+# library public license.
+#
+# You should have received a copy of the GNU Library Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+#
+
# must replace with explcit form so update disks will work
from iw_gui import *
diff --git a/iw/timezone_gui.py b/iw/timezone_gui.py
index 274700379..ec2329b33 100644
--- a/iw/timezone_gui.py
+++ b/iw/timezone_gui.py
@@ -1,9 +1,22 @@
+#
+# timezone_gui.py: gui timezone selection.
+#
+# Copyright 2001 Red Hat, Inc.
+#
+# This software may be freely redistributed under the terms of the GNU
+# library public license.
+#
+# You should have received a copy of the GNU Library Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+#
+
+import string
+import iutil
from gtk import *
from iw_gui import *
-import string
from gnome.ui import GnomeCanvas
from translate import _
-import iutil
import timezonemap
diff --git a/iw/welcome_gui.py b/iw/welcome_gui.py
index b2f631f44..e16493e08 100644
--- a/iw/welcome_gui.py
+++ b/iw/welcome_gui.py
@@ -1,3 +1,16 @@
+#
+# welcome_gui.py: gui welcome screen.
+#
+# Copyright 2001 Red Hat, Inc.
+#
+# This software may be freely redistributed under the terms of the GNU
+# library public license.
+#
+# You should have received a copy of the GNU Library Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+#
+
from gtk import *
from gnome.ui import *
from iw_gui import *