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
|
# Copyright 1999-2005 Gentoo Foundation
# This source code is distributed under the terms of version 2 of the GNU
# General Public License as published by the Free Software Foundation, a copy
# of which can be found in the main directory of this project.
import gtk
from GLIScreen import *
import os
import string
import timezone_map_gui
import zonetab
from Widgets import Widgets
class Panel(GLIScreen):
"""
The Timezone section of the installer.
@author: John N. Laliberte <allanonjl@gentoo.org>
@license: GPL
"""
# Attributes:
title="Timezone"
_helptext = """
<b><u>Timezone</u></b>
Pick your timezone, or pick UTC. If you dual-boot with Windows you'll want to \
choose your local timezone. If your BIOS clock is set to local time you'll \
also want to choose your local timezone.
If you choose a local timezone, you'll want to choose "local" for the clock \
setting later on in the Other Settings screen.
"""
# Operations
def __init__(self, controller):
GLIScreen.__init__(self, controller)
vert = gtk.VBox(False, 10) # This box is content so it should fill space to force title to top
horiz = gtk.HBox(False, 10)
self.zonetab2 = zonetab.ZoneTab()
self.map = timezone_map_gui.TimezoneMap(self.zonetab2)
vert.pack_start(self.map, expand=True, fill=True, padding=5)
self.add_content(vert)
self.show_all()
def activate(self):
# grab from the install profile, and if its not blank, create it
try:
loaded = self.controller.install_profile.get_time_zone()
self.map.default = loaded
except:
# this isn't a valid timezone entry, or its not set!
# print "Invalid timezone or timezone not set."
pass
self.controller.SHOW_BUTTON_BACK = False
self.controller.SHOW_BUTTON_FORWARD = True
def previous(self):
self.controller.load_screen("RootPass")
def next(self):
try:
# retrieve the current selected timezone
self.controller.install_profile.set_time_zone(None, self.map.getCurrent().tz, None)
except:
pass
# Set networkless defaults for kernel
self.controller.install_profile.set_kernel_source_pkg(None, "livecd-kernel", None)
progress = ProgressDialog(self.controller, ("set_timezone", "emerge_kernel_sources"), self.progress_callback)
progress.run()
def progress_callback(self, result, data=None):
if result == PROGRESS_DONE:
self.controller.load_screen("Networking")
else:
GLIScreen.progress_callback(self, result, data)
|