2019-04-29 22:57:21 +02:00
|
|
|
# Generates a header file for converting between Windows timezone names to tzdb names
|
|
|
|
# using CLDR data.
|
|
|
|
# Usage: powershell -File gen_win_tzname_data.ps1 > win_tzname_data.h
|
|
|
|
|
|
|
|
write-output "/* This file was generated using gen_win_tzname_data.ps1 */"
|
|
|
|
$xdoc = new-object System.Xml.XmlDocument
|
2021-04-01 23:01:19 +02:00
|
|
|
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
|
2020-04-30 01:21:44 +02:00
|
|
|
$xdoc.load("https://raw.githubusercontent.com/unicode-org/cldr/master/common/supplemental/windowsZones.xml")
|
2019-04-29 22:57:21 +02:00
|
|
|
$nodes = $xdoc.SelectNodes("//mapZone[@territory='001']") # use default territory (001)
|
|
|
|
foreach ($node in $nodes) {
|
|
|
|
write-output ('{L"'+ $node.other + '","'+ $node.type+'"},')
|
|
|
|
}
|