History of Confusion in the use of 'timezone'
Version 2 | Current version | |
---|---|---|
During the discussions on whether we should be using time zone or if timezone was acceptable, a few interesting miss uses of timezone came to light. XML Schema Part 2: Datatypes Second Edition3.2.7.3 Timezones defines as a fixed minute accurate offset with no provision to identify the daylight saving element. Pythondatetime.timezone also defines timezone as a fixed offset Moment Timezone - javascript libraryCode available on github tzdata-javascripttzdata-javascript is a JavaScript library that enables the usage of multiple timezones on the same webpage without the assistance of the user. It is another source of tz data in the browser, but data format sems rather large. It does use second accuracy, but may suffer from problems on windows when using times outsdie the current year. | During the discussions on whether we should be using time zone or if timezone was acceptable, a few interesting miss uses of timezone came to light. XML Schema Part 2: Datatypes Second Edition3.2.7.3 Timezones defines as a fixed minute accurate offset with no provision to identify the daylight saving element. Pythondatetime.timezone also defines timezone as a fixed offset JavaTimeZone class seems to be restriced to minute accuracy, but RawOffset allows millisecond accuracy. SimpleTimeZone elements seem to allow for a DST schedule, but there is no provision for anything more than a single set of values as far as I can see. Investigating ways to identify users timezoneMoment Timezone - javascript libraryCode available on github tzdata-javascripttzdata-javascript is a JavaScript library that enables the usage of multiple timezones on the same webpage without the assistance of the user. It is another source of tz data in the browser, but data format sems rather large. It does use second accuracy, but may suffer from problems on windows when using times outsdie the current year. |