-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathtimezone.py
37 lines (30 loc) · 910 Bytes
/
timezone.py
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
# Utility for replacing the simple input field for the timezone with
# a select-field that lists the available values.
import cgi
try:
import pytz
except ImportError:
pytz = None
def tzfield(prop, name, default):
if pytz:
value = prop.plain()
if '' == value:
value = default
else:
try:
value = "Etc/GMT%+d" % int(value)
except ValueError:
pass
l = ['<select name="%s"' % name]
for zone in pytz.common_timezones:
s = ' '
if zone == value:
s = 'selected=selected '
z = cgi.escape(zone)
l.append('<option %svalue="%s">%s</option>' % (s, z, z))
l.append('</select>')
return '\n'.join(l)
else:
return prop.field()
def init(instance):
instance.registerUtil('tzfield', tzfield)