Home | History | Annotate | Download | only in tools

Lines Matching refs:zones

37   """Writes the list of zones that ZoneCompactor should process."""
39 zones = []
46 zones.append(fields[2])
48 zones.append(fields[1])
49 zones.sort()
54 for zone in sorted(set(zones)):
82 path = "/time-zones/repository/releases/%s" % data_filename
133 # See http://www.iana.org/time-zones/ for more about the source of this data.
156 http.request("GET", "/time-zones")
159 m = re.compile('.*href="/time-zones/repository/releases/(tzdata20\d\d\c\.tar\.gz)".*').match(line)