summaryrefslogtreecommitdiffstats
path: root/simpleconfig.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2002-05-23 18:50:34 +0000
committerMike Fulbright <msf@redhat.com>2002-05-23 18:50:34 +0000
commitae3f4e6d5a323f594b5bd3ee6013506b5b5ac380 (patch)
treebd7a3573d016385f02208662be47774a7c82b756 /simpleconfig.py
parent9828fc34cf4402bfad440123477dd5b8334b626d (diff)
downloadanaconda-ae3f4e6d5a323f594b5bd3ee6013506b5b5ac380.tar.gz
anaconda-ae3f4e6d5a323f594b5bd3ee6013506b5b5ac380.tar.xz
anaconda-ae3f4e6d5a323f594b5bd3ee6013506b5b5ac380.zip
move mouse.py, videocard.py, simpleconfig.py and monitor.py to rhpl
Diffstat (limited to 'simpleconfig.py')
-rw-r--r--simpleconfig.py49
1 files changed, 0 insertions, 49 deletions
diff --git a/simpleconfig.py b/simpleconfig.py
deleted file mode 100644
index 0df75b6e5..000000000
--- a/simpleconfig.py
+++ /dev/null
@@ -1,49 +0,0 @@
-#
-# simpleconifg.py - representation of a simple configuration file (sh-like)
-#
-# Matt Wilson <msw@redhat.com>
-#
-# Copyright 1999-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
-
-class SimpleConfigFile:
- def __str__ (self):
- s = ""
- keys = self.info.keys ()
- keys.sort ()
- for key in keys:
- # FIXME - use proper escaping
- if type (self.info[key]) == type(""):
- s = s + key + "=\"" + self.info[key] + "\"\n"
- return s
-
- def __init__ (self):
- self.info = {}
-
- def set (self, *args):
- for (key, data) in args:
- self.info[string.upper (key)] = data
-
- def unset (self, *keys):
- for key in keys:
- key = string.upper (key)
- if self.info.has_key (key):
- del self.info[key]
-
- def get (self, key):
- key = string.upper (key)
- if self.info.has_key (key):
- return self.info[key]
- else:
- return ""
-
-