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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
|
from snack import *
from constants_text import *
from translate import _
from log import *
import os
import isys
import iutil
from flags import flags
class LanguageWindow:
def __call__(self, screen, textInterface, instLanguage):
languages = instLanguage.available ()
haveKon = os.access ("/sbin/continue", os.X_OK)
if "Japanese" in languages and not haveKon:
languages.remove("Japanese")
current = instLanguage.getCurrent()
height = min((screen.height - 16, len(languages)))
buttons = [TEXT_OK_BUTTON, TEXT_BACK_BUTTON]
translated = []
for lang in languages:
translated.append (_(lang))
(button, choice) = \
ListboxChoiceWindow(screen, _("Language Selection"),
_("What language would you like to use during the "
"installation process?"), translated,
buttons, width = 30, default = _(current), scroll = 1,
height = height, help = "lang")
if button == TEXT_BACK_CHECK:
return INSTALL_BACK
choice = languages[choice]
if (flags.setupFilesystems and
choice == "Japanese" and not isys.isPsudoTTY(0)):
# we're not running KON yet, lets fire it up
os.environ["ANACONDAARGS"] = (os.environ["ANACONDAARGS"] +
" --lang ja_JP.eucJP")
os.environ["TERM"] = "kon"
os.environ["LANG"] = "ja_JP.eucJP"
os.environ["LC_ALL"] = "ja_JP.eucJP"
os.environ["LC_NUMERIC"] = "C"
if os.access("/tmp/updates/anaconda", os.X_OK):
prog = "/tmp/updates/anaconda"
else:
prog = "/usr/bin/anaconda"
args = [ "kon", "-e", prog ]
screen.finish()
os.execv ("/sbin/loader", args)
instLanguage.setRuntimeLanguage(choice)
if not flags.serial:
map = instLanguage.getFontMap(choice)
font = instLanguage.getFontFile(choice)
if map != "None":
if os.access("/bin/consolechars", os.X_OK):
iutil.execWithRedirect ("/bin/consolechars",
["/bin/consolechars", "-f", font, "-m", map])
else:
try:
isys.loadFont(map)
except SystemError, (errno, msg):
log("Could not load font %s: %s" % (font, msg))
elif os.access("/bin/consolechars", os.X_OK):
# test and reconfig
iutil.execWithRedirect ("/bin/consolechars",
["/bin/consolechars", "-d", "-m", "iso01"])
textInterface.drawFrame()
return INSTALL_OK
class LanguageSupportWindow:
def __call__(self, screen, language):
# in reconfig skip
if flags.reconfig:
ButtonChoiceWindow(screen, "test", "nooping langsupport")
return INSTALL_NOOP
# should already be sorted
ct = CheckboxTree(height = 8, scroll = 1)
for lang in language.getAllSupported():
ct.append(lang, lang, 0)
for lang in language.getSupported ():
ct.setEntryValue(lang, 1)
current = language.getDefault()
ct.setCurrent(current)
ct.setEntryValue(current, 1)
bb = ButtonBar (screen, (TEXT_OK_BUTTON, (_("Select All"), "all"), (_("Reset"), "reset"), TEXT_BACK_BUTTON))
message = (_("Choose the languages to be installed:"))
width = len(message)
tb = Textbox (width, 2, message)
g = GridFormHelp (screen, _("Language Support"), "langsupport", 1, 4)
g.add (tb, 0, 0, (0, 0, 0, 0), anchorLeft = 1)
g.add (ct, 0, 1, (0, 0, 0, 1))
g.add (bb, 0, 3, growx = 1)
while 1:
result = g.run()
rc = bb.buttonPressed (result)
if rc == TEXT_BACK_CHECK:
screen.popWindow()
return INSTALL_BACK
if rc == "all":
for lang in language.getAllSupported():
ct.setEntryValue(lang, 1)
if rc == "reset":
for lang in language.getAllSupported():
if lang == current:
ct.setEntryValue(lang, 1)
else:
ct.setEntryValue(lang, 0)
if rc == TEXT_OK_CHECK or result == TEXT_F12_CHECK:
# --If they selected all langs, then set language.setSupported to
# None. This installs all langs
if ct.getSelection() == []:
ButtonChoiceWindow(screen, _("Invalid Choice"),
_("You must select at least one language to install."),
buttons = [ TEXT_OK_BUTTON ], width = 40)
else:
# we may need to reset the default language
language.setSupported (ct.getSelection())
default = language.getDefault()
if default not in ct.getSelection():
language.setDefault(None)
screen.popWindow()
return INSTALL_OK
class LanguageDefaultWindow:
def __call__(self,screen, language):
langs = language.getSupported ()
current = language.getDefault()
if not langs or len(langs) <= 1:
language.setDefault(current)
return INSTALL_NOOP
langs.sort()
height = min((screen.height - 16, len(langs)))
buttons = [TEXT_OK_BUTTON, TEXT_BACK_BUTTON]
(button, choice) = ListboxChoiceWindow(screen, _("Default Language"),
_("Choose the default language: "), langs,
buttons, width = 30, default = current, scroll = 1,
height = height, help = "langdefault")
if (button == TEXT_BACK_CHECK):
return INSTALL_BACK
language.setDefault (langs[choice])
return INSTALL_OK
|