summaryrefslogtreecommitdiffstats
path: root/partIntfHelpers.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2002-05-31 06:12:31 +0000
committerMike Fulbright <msf@redhat.com>2002-05-31 06:12:31 +0000
commit0b883b7275210e4392d6205c9719aa8c7ad30c2c (patch)
tree49fdf160c8608766380a79dc44c80e562cb3ba58 /partIntfHelpers.py
parent8afde99af96ce8cb5ded6fb919eec60caa5ff237 (diff)
downloadanaconda-0b883b7275210e4392d6205c9719aa8c7ad30c2c.tar.gz
anaconda-0b883b7275210e4392d6205c9719aa8c7ad30c2c.tar.xz
anaconda-0b883b7275210e4392d6205c9719aa8c7ad30c2c.zip
remove unused code, try fixing dialog to meet style guide
Diffstat (limited to 'partIntfHelpers.py')
-rw-r--r--partIntfHelpers.py25
1 files changed, 10 insertions, 15 deletions
diff --git a/partIntfHelpers.py b/partIntfHelpers.py
index b58863249..3e0051709 100644
--- a/partIntfHelpers.py
+++ b/partIntfHelpers.py
@@ -134,7 +134,11 @@ def doDeletePartitionByRequest(intf, requestlist, partition):
return 0
# see if device is in our partition requests, remove
- request = requestlist.getRequestByDeviceName(device)
+ if type(partition) == type("RAID"):
+ request = requestlist.getRequestByID(device)
+ else:
+ request = requestlist.getRequestByDeviceName(device)
+
if request:
if request.getProtected():
intf.messageWindow(_("Unable To Remove"),
@@ -284,16 +288,6 @@ def checkForSwapNoMatch(intf, diskset, partitions):
partedUtils.set_partition_file_system_type(part,
request.fstype)
-def queryFormatPreExisting(intf):
- """Ensure the user intends to format a pre-existing partition."""
- rc = intf.messageWindow(_("Format?"),
- _("You have chosen to format a pre-existing "
- "partition. This will destroy all data "
- "that was previously on it.\n\n"
- "Are you sure you want to do this?"),
- type = "yesno", default = "no")
- return rc
-
def queryNoFormatPreExisting(intf):
"""Ensure the user wants to use a partition without formatting."""
txt = _("You have chosen to use a pre-existing "
@@ -303,11 +297,12 @@ def queryNoFormatPreExisting(intf):
"do not cause problems with this installation of Linux. "
"However, if this partition contains files that you need "
"to keep, such as a users home directories, then you should "
- "continue without formatting this partition. \n\n"
- "Are you sure you want to continue without formatting "
- "the partition ?")
+ "continue without formatting this partition.")
+# "\n\nAre you sure you want to continue without formatting "
+# "the partition ?")
- rc = intf.messageWindow(_("Format?"), txt, type = "yesno", default = "no")
+# rc = intf.messageWindow(_("Format?"), txt, type = "yesno", default = "no")
+ rc = intf.messageWindow(_("Format?"), txt, type = "custom", custom_buttons=["gtk-cancel", _("Do Not Format")])
return rc
def partitionSanityErrors(intf, errors):