Gentoo Archives: gentoo-commits

From: Wiktor W Brodlo <wiktor@××××××.net>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/anaconda:master commit in: iw/
Date: Wed, 03 Aug 2011 02:52:25
Message-Id: e2f859eff0a72d315f924e8c4438d0d7e6f452ec.wiktor@gentoo
1 commit: e2f859eff0a72d315f924e8c4438d0d7e6f452ec
2 Author: wiktor w brodlo <wiktor <AT> brodlo <DOT> net>
3 AuthorDate: Wed Aug 3 02:51:09 2011 +0000
4 Commit: Wiktor W Brodlo <wiktor <AT> brodlo <DOT> net>
5 CommitDate: Wed Aug 3 02:51:09 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/anaconda.git;a=commit;h=e2f859ef
7
8 Resize timezone widget, fix the treeview in mirrorselect
9
10 ---
11 iw/mirrorselect-sync_gui.py | 4 +++-
12 iw/mirrorselect_gui.py | 4 +++-
13 iw/timezone_gui.py | 2 +-
14 3 files changed, 7 insertions(+), 3 deletions(-)
15
16 diff --git a/iw/mirrorselect-sync_gui.py b/iw/mirrorselect-sync_gui.py
17 index 9d07d53..c9bbbc4 100644
18 --- a/iw/mirrorselect-sync_gui.py
19 +++ b/iw/mirrorselect-sync_gui.py
20 @@ -39,7 +39,9 @@ class MirrorselectSyncWindow(InstallWindow):
21 def getNext(self):
22 for button in self.buttons:
23 if button.get_property("active"):
24 - self.anaconda.mirrors_sync.append(button.get_property("label"))
25 + # For while the treeview is broken
26 + #self.anaconda.mirrors_sync.append(button.get_property("label"))
27 + self.anaconda.mirrors_sync.append("rsync://rsync.gentoo.org/gentoo-portage")
28 return None
29
30 def getScreen(self, anaconda):
31
32 diff --git a/iw/mirrorselect_gui.py b/iw/mirrorselect_gui.py
33 index d5aa6f5..64d536f 100644
34 --- a/iw/mirrorselect_gui.py
35 +++ b/iw/mirrorselect_gui.py
36 @@ -42,7 +42,9 @@ class MirrorselectWindow(InstallWindow):
37 def getNext(self):
38 for button in self.buttons:
39 if button.get_property("active"):
40 - self.anaconda.mirrors.append(button.get_property("label"))
41 + # For while the treeview is broken
42 + #self.anaconda.mirrors.append(button.get_property("label"))
43 + self.anaconda.mirrors.append("http://mirrors.kernel.org/gentoo/")
44 return None
45
46 def getScreen(self, anaconda):
47
48 diff --git a/iw/timezone_gui.py b/iw/timezone_gui.py
49 index bfe8029..0e96069 100644
50 --- a/iw/timezone_gui.py
51 +++ b/iw/timezone_gui.py
52 @@ -80,7 +80,7 @@ class TimezoneWindow(InstallWindow):
53 ratio = float(p_w)/p_h
54 screen_x, screen_y = self.ics.cw.window.get_size()
55 screen_x -= 80
56 - screen_y -= 200
57 + screen_y -= 300
58 p_w -= 80
59
60 if screen_x < p_w: