]> git.pld-linux.org Git - packages/anaconda.git/blame - anaconda-timezone.patch
- new url
[packages/anaconda.git] / anaconda-timezone.patch
CommitLineData
c2f22095
AM
1diff -ur anaconda-11.2.0.24.org/iw/timezone_gui.py anaconda-11.2.0.24/iw/timezone_gui.py
2--- anaconda-11.2.0.24.org/iw/timezone_gui.py 2007-01-30 19:54:05.000000000 +0100
3+++ anaconda-11.2.0.24/iw/timezone_gui.py 2007-02-20 18:36:25.274623000 +0100
4@@ -43,7 +43,7 @@
dd9587f1
ER
5 gtk.glade.set_custom_handler(self.custom_widget_handler)
6
7 # Set the default now. We'll fix it for real in getScreen.
8- self.default = "America/New_York"
c2f22095 9+ self.default = "Europe/Warsaw"
dd9587f1
ER
10
11 self.zonetab = zonetab.ZoneTab()
12
c2f22095 13@@ -99,7 +99,7 @@
dd9587f1
ER
14 asUTC = 0
15
16 if (string.find(self.default, "UTC") != -1):
17- self.default = "America/New_York"
c2f22095 18+ self.default = "Europe/Warsaw"
dd9587f1
ER
19
20 # Now fix the default we set when we made the timezone map widget.
21 self.tz.setCurrent(self.zonetab.findEntryByTZ(self.default))
c2f22095
AM
22@@ -126,7 +126,7 @@
23 if tz.lat >= latmin and tz.lat <= latmax and tz.long >= longmin and tz.long <= longmax:
dd9587f1
ER
24 return True
25 elif user_data.currentEntry == None:
26- if model.get_value(iter, 1) == "America/New_York":
c2f22095 27+ if model.get_value(iter, 1) == "Europe/Warsaw":
dd9587f1
ER
28 return True
29 else:
30 return False
c2f22095
AM
31@@ -151,7 +151,7 @@
32 weight=pango.WEIGHT_BOLD)
33 self.markers[entry.tz] = marker
dd9587f1 34
c2f22095
AM
35- if entry.tz == "America/New_York":
36+ if entry.tz == "Europe/Warsaw":
37 # In case the /etc/sysconfig/clock is messed up, use New
38 # York as the default.
39 self.fallbackEntry = entry
40diff -ur anaconda-11.2.0.24.org/timezone.py anaconda-11.2.0.24/timezone.py
41--- anaconda-11.2.0.24.org/timezone.py 2007-01-17 23:49:50.000000000 +0100
42+++ anaconda-11.2.0.24/timezone.py 2007-02-20 19:07:07.498623000 +0100
43@@ -13,6 +13,7 @@
628ff5bd 44
c2f22095
AM
45 import shutil
46 import iutil
628ff5bd 47+import string
c2f22095
AM
48 from flags import flags
49
50 import logging
51@@ -44,12 +45,32 @@
f1c25a37
ER
52
53 f = open(instPath + "/etc/sysconfig/clock", "w")
c2f22095 54
f1c25a37 55- f.write('ZONE="%s"\n' % self.tz)
628ff5bd 56+ f.write('# Should the hardware clock be kept in Coordinated Universal Time (instead of local time).\n')
f1c25a37 57 f.write("UTC=%s\n" % bool(self.utc))
628ff5bd 58+ f.write('# true means your machine uses epoch 1980 in its hardware clock\n')
f1c25a37 59 f.write("ARC=%s\n" % bool(self.arc))
c2f22095 60-
628ff5bd 61+ f.write('# true means your machine uses epoch 1900 in its hardware clock\n')
f1c25a37 62+ f.write("SRM=false\n")
c2f22095
AM
63 f.close()
64
f1c25a37
ER
65+ # FIXME: solution for timezones like EET
66+ (area, zone) = string.split(self.tz, "/")
c2f22095 67+
f1c25a37 68+ f = open(instPath + "/etc/sysconfig/timezone", "w")
628ff5bd
ER
69+ f.write('# Time zone information.\n')
70+ f.write('# Directory containing zone information files.\n')
71+ f.write('ZONE_INFO_DIR="/usr/share/zoneinfo"\n')
f1c25a37 72+ f.write("\n");
628ff5bd
ER
73+ f.write('# Scheme you would like to use in your system.\n')
74+ f.write('ZONE_INFO_SCHEME="posix"\n')
f1c25a37 75+ f.write("\n")
628ff5bd 76+ f.write('# Area (sometimes may be empty)\n')
f1c25a37
ER
77+ f.write('ZONE_INFO_AREA="%s"\n' % area)
78+ f.write("\n")
628ff5bd 79+ f.write('# Name of the time zone for your system.\n')
f1c25a37
ER
80+ f.write('TIME_ZONE="%s"\n' % zone)
81+ f.write("\n");
c2f22095 82+
f1c25a37 83 def getTimezoneInfo(self):
c2f22095
AM
84 return (self.tz, self.utc, self.arc)
85
This page took 0.075628 seconds and 4 git commands to generate.