| Trees | Indices | Help |
|---|
|
|
1 # Copyright 2006 Red Hat, Inc.
2 #
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; version 2 of the License.
6 #
7 # This program is distributed in the hope that it will be useful,
8 # but WITHOUT ANY WARRANTY; without even the implied warranty of
9 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 # GNU General Public License for more details.
11 #
12 # You should have received a copy of the GNU General Public License
13 # along with this program; if not, write to the Free Software
14 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
15 #
16 # Authors:
17 # Daniel Benamy <dbenamy@redhat.com>
18
19 from up2date_client import rhnreg
20 from up2date_client import rhnregGui
21 from rhn_register_firstboot_gui_window import RhnRegisterFirstbootGuiWindow
22
23 import gtk
24 from gtk import glade
25 import gettext
26 t = gettext.translation('rhn-client-tools', fallback=True)
27 _ = t.ugettext
28 gtk.glade.bindtextdomain("rhn-client-tools")
29
30
32 runPriority=108.9
33 moduleName = _("Review Subscription")
34 windowTitle = moduleName
35 shortMessage = _("Connect to Red Hat Satellite")
36 needsparent = 1
37 needsnetwork = 1
38 noSidebar = True
39
41 RhnRegisterFirstbootGuiWindow.__init__(self)
42 rhnregGui.ReviewSubscriptionPage.__init__(self)
43 if rhnreg.registered():
44 self.skipme = True
45
47 return self.reviewSubscriptionPageVbox()
48
50 self.reviewSubscriptionPagePrepare()
51
59
60
61 childWindow = RhnReviewWindow
62
| Trees | Indices | Help |
|---|
| Generated by Epydoc 3.0.1 on Wed Mar 4 07:37:47 2020 | http://epydoc.sourceforge.net |