1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
|
#
# examine_gui.py: dialog to allow selection of a RHL installation to upgrade
#
# Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006 Red Hat, Inc.
# All rights reserved.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
import gtk
import gui
from iw_gui import *
from pixmapRadioButtonGroup_gui import pixmapRadioButtonGroup
from constants import *
import upgrade
from flags import flags
import gettext
_ = lambda x: gettext.ldgettext("anaconda", x)
UPGRADE_STR = "upgrade"
REINSTALL_STR = "reinstall"
seenExamineScreen = False
class UpgradeExamineWindow (InstallWindow):
windowTitle = N_("Upgrade Examine")
def getNext (self):
if self.doupgrade:
upgrade.setSteps(self.anaconda)
self.anaconda.upgrade = True
rootfs = self.parts[self.upgradecombo.get_active()]
self.anaconda.upgradeRoot = [(rootfs[0], rootfs[1])]
self.anaconda.rootParts = self.parts
self.anaconda.upgrade = True
else:
self.anaconda.upgrade = False
return None
def createUpgradeOption(self):
r = pixmapRadioButtonGroup()
r.addEntry(REINSTALL_STR, _("Fresh Installation"),
pixmap=gui.readImageFromFile("install.png"),
descr=_("Choose this option to install a fresh copy of %s "
"on your system. Existing software and data may "
"be overwritten depending on your configuration "
"choices.") % productName)
r.addEntry(UPGRADE_STR, _("Upgrade an Existing Installation"),
pixmap=gui.readImageFromFile("upgrade.png"),
descr=_("Choose this option if you would like to upgrade "
"your existing %s system. This option will "
"preserve the existing data on your storage "
"device(s).") % productName)
return r
def upgradeOptionsSetSensitivity(self, state):
self.uplabel.set_sensitive(state)
self.upgradecombo.set_sensitive(state)
def optionToggled(self, widget, name):
if name == UPGRADE_STR:
self.upgradeOptionsSetSensitivity(widget.get_active())
self.doupgrade = widget.get_active()
#UpgradeExamineWindow tag = "upgrade"
def getScreen (self, anaconda):
global seenExamineScreen
self.anaconda = anaconda
if not seenExamineScreen:
# this is the first time we've entered this screen
self.doupgrade = False
seenExamineScreen = True
else:
self.doupgrade = self.anaconda.upgrade
# we might get here after storage reset that obsoleted
# root device objects we had found
if not self.anaconda.rootParts:
self.anaconda.rootParts = upgrade.findExistingRoots(self.anaconda,
flags.cmdline.has_key("upgradeany"))
upgrade.setUpgradeRoot(self.anaconda)
self.parts = self.anaconda.rootParts
vbox = gtk.VBox (False, 12)
vbox.set_border_width (8)
introLabel = gtk.Label(_("At least one existing installation has been "
"detected on your system. What would you "
"like to do?"))
introLabel.set_alignment(0, 0)
vbox.pack_start(introLabel, False, False)
r = self.createUpgradeOption()
self.r = r
b = self.r.render()
if self.doupgrade:
self.r.setCurrent(UPGRADE_STR)
else:
self.r.setCurrent(REINSTALL_STR)
self.r.setToggleCallback(self.optionToggled)
vbox.pack_start(b, False)
self.root = self.parts[0]
uplabelstr = _("<b>Which %s installation would you like to upgrade?</b>") % productName
self.uplabel = gtk.Label(uplabelstr)
self.uplabel.set_use_markup(True)
self.uplabel.set_alignment(0, 0)
model = gtk.ListStore(str)
self.upgradecombo = gtk.ComboBox(model)
cell = gtk.CellRendererText()
self.upgradecombo.pack_start(cell, True)
self.upgradecombo.set_attributes(cell, markup=0)
for (dev, desc) in self.parts:
iter = model.append()
if (desc is None) or len(desc) < 1:
desc = _("Unknown Linux system")
model[iter][0] = "<small>%s <i>(installed on %s)</i></small>" %(desc, dev.path)
# hack hack hackity hack
alignment = gtk.Alignment(xalign=0.25)
alignmentBox = gtk.VBox(False, 6)
alignmentBox.pack_start(self.uplabel, False, False)
alignmentBox.pack_start(self.upgradecombo, False, False)
alignment.add(alignmentBox)
vbox.pack_start(alignment, True, True)
# set default
idx = 0
for p in self.parts:
if self.anaconda.upgradeRoot[0][0] == p[0]:
self.upgradecombo.set_active(idx)
break
idx = idx + 1
self.upgradeOptionsSetSensitivity(self.doupgrade)
return vbox
|