[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
Re: [PATCH] Add more windows to the rescue interface class (#498014).
- From: David Lehman <dlehman redhat com>
- To: Discussion of Development and Customization of the Red Hat Linux Installer <anaconda-devel-list redhat com>
- Subject: Re: [PATCH] Add more windows to the rescue interface class (#498014).
- Date: Tue, 28 Apr 2009 12:21:01 -0500
On Tue, 2009-04-28 at 10:21 -0400, Chris Lumens wrote:
> ---
> rescue.py | 15 +++++++++++++++
> 1 files changed, 15 insertions(+), 0 deletions(-)
>
Looks good.
> diff --git a/rescue.py b/rescue.py
> index 707f3be..533dde1 100644
> --- a/rescue.py
> +++ b/rescue.py
> @@ -48,6 +48,12 @@ class RescueInterface:
> def progressWindow(self, title, text, total):
> return ProgressWindow(self.screen, title, text, total)
>
> + def detailedMessageWindow(self, title, text, longText=None, type="ok",
> + default=None, custom_icon=None,
> + custom_buttons=[]):
> + return self.messageWindow(title, text, type, default, custom_icon,
> + custom_buttons)
> +
> def messageWindow(self, title, text, type = "ok", default = None,
> custom_icon=None, custom_buttons=[]):
> if type == "ok":
> @@ -95,6 +101,15 @@ class RescueInterface:
> w.pop()
> return (passphrase, isglobal)
>
> + def shutdown (self):
> + pass
> +
> + def suspend(self):
> + pass
> +
> + def resume(self):
> + pass
> +
> def __init__(self, screen):
> self.screen = screen
>
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]