summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2001-07-09 02:25:41 +0000
committerMatt Wilson <msw@redhat.com>2001-07-09 02:25:41 +0000
commit773ebb98d7daef8a1dad3b53cd0fa4c2fb2a2850 (patch)
tree10b20521d063b557e0eeda8a7919f2d65a1dffa9
parent0b3b2c9d15c0434fdd15bcef8c2dd0d7d5c1635c (diff)
more copyright notices
-rw-r--r--textw/__init__.py0
-rw-r--r--textw/bootloader_text.py17
-rw-r--r--textw/confirm_text.py13
-rw-r--r--textw/constants_text.py13
-rw-r--r--textw/installpath_text.py13
-rw-r--r--textw/keyboard_text.py17
-rw-r--r--textw/language_text.py21
-rw-r--r--textw/mouse_text.py13
-rw-r--r--textw/network_text.py13
-rw-r--r--textw/packages_text.py14
-rw-r--r--textw/progress_text.py13
-rw-r--r--textw/silo_text.py19
-rw-r--r--textw/statusline_text.py15
-rw-r--r--textw/timezone_text.py13
-rw-r--r--textw/upgrade_text.py23
-rw-r--r--textw/userauth_text.py13
-rw-r--r--textw/welcome_text.py13
-rw-r--r--textw/xconfig_text.py16
18 files changed, 237 insertions, 22 deletions
diff --git a/textw/__init__.py b/textw/__init__.py
deleted file mode 100644
index e69de29bb..000000000
--- a/textw/__init__.py
+++ /dev/null
diff --git a/textw/bootloader_text.py b/textw/bootloader_text.py
index a7c0fb637..dcda0702d 100644
--- a/textw/bootloader_text.py
+++ b/textw/bootloader_text.py
@@ -1,4 +1,16 @@
-#import gettext
+#
+# bootloader_text.py: text mode bootloader 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.
+#
+
from snack import *
from constants_text import *
from translate import _
@@ -9,9 +21,6 @@ import iutil
#if iutil.getArch() == 'i386':
# import edd
-#cat = gettext.Catalog ("anaconda", "/usr/share/locale")
-#_ = cat.gettext
-
class BootloaderChoiceWindow:
def __call__(self, screen, dispatch, bl, fsset, diskSet):
diff --git a/textw/confirm_text.py b/textw/confirm_text.py
index 026e4b93d..7a792321e 100644
--- a/textw/confirm_text.py
+++ b/textw/confirm_text.py
@@ -1,3 +1,16 @@
+#
+# confirm_text.py: text mode install/upgrade confirmation window
+#
+# 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 snack import *
from constants_text import *
from translate import _
diff --git a/textw/constants_text.py b/textw/constants_text.py
index 7176a6aa3..d9d0a914d 100644
--- a/textw/constants_text.py
+++ b/textw/constants_text.py
@@ -1,3 +1,16 @@
+#
+# constants_text.py: text mode constants
+#
+# 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 N_
INSTALL_OK = 0
diff --git a/textw/installpath_text.py b/textw/installpath_text.py
index d99754cab..7a7bedc29 100644
--- a/textw/installpath_text.py
+++ b/textw/installpath_text.py
@@ -1,3 +1,16 @@
+#
+# installpath_text: text mode installation type selection dialog
+#
+# 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 snack import *
from constants_text import *
from translate import _
diff --git a/textw/keyboard_text.py b/textw/keyboard_text.py
index 19bb12e1f..dc9d3bf86 100644
--- a/textw/keyboard_text.py
+++ b/textw/keyboard_text.py
@@ -1,8 +1,21 @@
+#
+# keyboard_text: text mode keyboard setup dialogs
+#
+# 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 isys
+import iutil
from snack import *
from constants_text import *
from translate import _
-import isys
-import iutil
from log import *
from flags import flags
diff --git a/textw/language_text.py b/textw/language_text.py
index 2cab8e51a..056e7346c 100644
--- a/textw/language_text.py
+++ b/textw/language_text.py
@@ -1,10 +1,23 @@
-from snack import *
-from constants_text import *
-from translate import _
-from log import *
+#
+# language_text.py: text mode language selection dialog
+#
+# 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 os
import isys
import iutil
+from snack import *
+from constants_text import *
+from log import *
+from translate import _
from flags import flags
class LanguageWindow:
diff --git a/textw/mouse_text.py b/textw/mouse_text.py
index 4e4f36a2f..97280324b 100644
--- a/textw/mouse_text.py
+++ b/textw/mouse_text.py
@@ -1,3 +1,16 @@
+#
+# mouse_text.py: text mode mouse selection dialog
+#
+# 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 snack import *
from constants_text import *
from translate import _
diff --git a/textw/network_text.py b/textw/network_text.py
index 20c93dee8..8c17fb054 100644
--- a/textw/network_text.py
+++ b/textw/network_text.py
@@ -1,3 +1,16 @@
+#
+# network_text.py: text mode network configuration dialogs
+#
+# 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 iutil
import os
import isys
diff --git a/textw/packages_text.py b/textw/packages_text.py
index 750daad6d..11b5f2a22 100644
--- a/textw/packages_text.py
+++ b/textw/packages_text.py
@@ -1,5 +1,17 @@
+#
+# packages_text.py: text mode package selection dialog
+#
+# 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 gettext
from snack import *
from constants_text import *
from translate import _
diff --git a/textw/progress_text.py b/textw/progress_text.py
index 76f6481cd..8916e97e9 100644
--- a/textw/progress_text.py
+++ b/textw/progress_text.py
@@ -1,3 +1,16 @@
+#
+# progress_text.py: text mode install/upgrade progress dialog
+#
+# 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
from constants import *
from snack import *
diff --git a/textw/silo_text.py b/textw/silo_text.py
index b232423d4..3f8c68a92 100644
--- a/textw/silo_text.py
+++ b/textw/silo_text.py
@@ -1,12 +1,23 @@
-#import gettext
+#
+# silo_text.py: text mode silo setup dialog
+#
+# 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.
+#
+
+# XXX THIS FILE IS DEPRECATED
+
import iutil
from snack import *
from constants_text import *
from translate import _
-#cat = gettext.Catalog ("anaconda", "/usr/share/locale")
-#_ = cat.gettext
-
class SiloAppendWindow:
def __call__(self, screen, todo):
diff --git a/textw/statusline_text.py b/textw/statusline_text.py
index 8c73d5e68..1be747064 100644
--- a/textw/statusline_text.py
+++ b/textw/statusline_text.py
@@ -1,3 +1,18 @@
+#
+# statusline_text.py: text mode status line management functions
+#
+# 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.
+#
+
+# XXX this file appears to be unused.
+
import string
import copy
diff --git a/textw/timezone_text.py b/textw/timezone_text.py
index 89104948b..c79e36d58 100644
--- a/textw/timezone_text.py
+++ b/textw/timezone_text.py
@@ -1,3 +1,16 @@
+#
+# timezone_text.py: text mode timezone selection dialog
+#
+# 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
import os
diff --git a/textw/upgrade_text.py b/textw/upgrade_text.py
index 5edc6805f..7670247a5 100644
--- a/textw/upgrade_text.py
+++ b/textw/upgrade_text.py
@@ -1,13 +1,26 @@
-from snack import *
-from translate import _
+#
+# upgrade_text.py: text mode upgrade dialogs
+#
+# 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 isys
import iutil
-from log import log
-from flags import flags
+import upgrade
from constants_text import *
+from snack import *
from fsset import *
-import upgrade
+from log import log
+from flags import flags
+from translate import _
class UpgradeMigrateFSWindow:
def __call__ (self, screen, partitions):
diff --git a/textw/userauth_text.py b/textw/userauth_text.py
index 40da698a3..bb9400f92 100644
--- a/textw/userauth_text.py
+++ b/textw/userauth_text.py
@@ -1,3 +1,16 @@
+#
+# userauth_text.py: text mode authentication setup dialogs
+#
+# 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 snack import *
from constants_text import *
from translate import _
diff --git a/textw/welcome_text.py b/textw/welcome_text.py
index 1c3c447ec..34a1a547b 100644
--- a/textw/welcome_text.py
+++ b/textw/welcome_text.py
@@ -1,3 +1,16 @@
+#
+# welcome_text.py: text mode welcome window
+#
+# 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 snack import *
from constants_text import *
from translate import _
diff --git a/textw/xconfig_text.py b/textw/xconfig_text.py
index 4edc5017f..629ba8c3d 100644
--- a/textw/xconfig_text.py
+++ b/textw/xconfig_text.py
@@ -1,9 +1,21 @@
+#
+# xconfig_text.py: text mode X Windows System setup dialogs
+#
+# 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 monitor import isValidSyncRange
from constants_text import *
from snack import *
from translate import _
-from monitor import isValidSyncRange
-
class XCustomWindow: