Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
Makefile | H A D | 15-Oct-2015 | 24.4 KiB | 667 | 334 | |
Makefile.inc | H A D | 15-Oct-2015 | 953 | 38 | 32 | |
NEWS | H A D | 15-Oct-2015 | 104.9 KiB | 3,296 | 1,943 | |
README | H A D | 15-Oct-2015 | 2.6 KiB | 62 | 46 | |
Theory | H A D | 15-Oct-2015 | 34.4 KiB | 791 | 631 | |
asctime.c | H A D | 15-Oct-2015 | 4.4 KiB | 143 | 71 | |
checktab.awk | H A D | 15-Oct-2015 | 5.2 KiB | 225 | 201 | |
ctime.3 | H A D | 15-Oct-2015 | 12.7 KiB | 538 | 537 | |
difftime.c | H A D | 15-Oct-2015 | 1.7 KiB | 70 | 34 | |
getdate.3 | H A D | 06-Dec-2013 | 7.2 KiB | 235 | 234 | |
getdate.c | H A D | 15-Oct-2015 | 7.5 KiB | 271 | 137 | |
leapseconds.awk | H A D | 15-Oct-2015 | 2.2 KiB | 67 | 60 | |
localtime.c | H A D | 15-Oct-2015 | 55.5 KiB | 2,348 | 1,767 | |
offtime.3 | H A D | 15-Nov-2012 | 1.5 KiB | 76 | 75 | |
private.h | H A D | 15-Oct-2015 | 14.5 KiB | 599 | 430 | |
strftime.3 | H A D | 06-Dec-2013 | 8.6 KiB | 269 | 268 | |
strftime.c | H A D | 15-Oct-2015 | 17.6 KiB | 682 | 476 | |
strptime.3 | H A D | 15-Oct-2015 | 8.4 KiB | 346 | 345 | |
strptime.c | H A D | 15-Oct-2015 | 16.2 KiB | 711 | 523 | |
time2posix.3 | H A D | 15-Oct-2015 | 4.1 KiB | 155 | 154 | |
tz-art.htm | H A D | 15-Oct-2015 | 22 KiB | 514 | 501 | |
tz-link.htm | H A D | 15-Oct-2015 | 38.8 KiB | 793 | 792 | |
tzcode2netbsd | H A D | 15-Oct-2015 | 772 | 33 | 18 | |
tzfile.5 | H A D | 15-Oct-2015 | 5.1 KiB | 163 | 162 | |
tzselect.8 | H A D | 15-Oct-2015 | 2.9 KiB | 117 | 111 | |
tzselect.ksh | H A D | 15-Oct-2015 | 14.8 KiB | 559 | 442 | |
tzset.3 | H A D | 15-Oct-2015 | 8.9 KiB | 394 | 393 | |
version.h | H A D | 06-Dec-2013 | 124 | 6 | 5 | |
zdump.8 | H A D | 15-Oct-2015 | 2.8 KiB | 104 | 103 | |
zdump.c | H A D | 15-Oct-2015 | 24 KiB | 1,023 | 856 | |
zic.8 | H A D | 15-Oct-2015 | 15.2 KiB | 505 | 504 | |
zic.c | H A D | 15-Oct-2015 | 71.1 KiB | 3,040 | 2,567 |
README
1README for the tz distribution 2 3"What time is it?" -- Richard Deacon as The King 4"Any time you want it to be." -- Frank Baxter as The Scientist 5 (from the Bell System film "About Time") 6 7The Time Zone Database (often called tz or zoneinfo) contains code and 8data that represent the history of local time for many representative 9locations around the globe. It is updated periodically to reflect 10changes made by political bodies to time zone boundaries, UTC offsets, 11and daylight-saving rules. 12 13Unless otherwise specified, all files in the tz code and data are in 14the public domain, so clarified as of 2009-05-17 by Arthur David Olson. 15The few exceptions are code derived from BSD, which uses the BSD license. 16 17Here is a recipe for acquiring, building, installing, and testing the 18tz distribution on a GNU/Linux or similar host. 19 20 mkdir tz 21 cd tz 22 wget --retr-symlinks 'ftp://ftp.iana.org/tz/tz*-latest.tar.gz' 23 gzip -dc tzcode-latest.tar.gz | tar -xf - 24 gzip -dc tzdata-latest.tar.gz | tar -xf - 25 26Be sure to read the comments in "Makefile" and make any changes needed 27to make things right for your system, especially if you are using some 28platform other than GNU/Linux. Then run the following commands, 29substituting your desired installation directory for "$HOME/tzdir": 30 31 make TOPDIR=$HOME/tzdir install 32 $HOME/tzdir/etc/zdump -v America/Los_Angeles 33 34Historical local time information has been included here to: 35 36* provide a compendium of data about the history of civil time 37 that is useful even if not 100% accurate; 38 39* give an idea of the variety of local time rules that have 40 existed in the past and thus an idea of the variety that may be 41 expected in the future; 42 43* provide a test of the generality of the local time rule description 44 system. 45 46The information in the time zone data files is by no means authoritative; 47fixes and enhancements are welcome. Please see the file CONTRIBUTING 48for details. 49 50Thanks to these Time Zone Caballeros who've made major contributions to the 51time conversion package: Keith Bostic; Bob Devine; Paul Eggert; Robert Elz; 52Guy Harris; Mark Horton; John Mackin; and Bradley White. Thanks also to 53Michael Bloom, Art Neilson, Stephen Prince, John Sovereign, and Frank Wales 54for testing work, and to Gwillim Law for checking local mean time data. 55Thanks in particular to Arthur David Olson, the project's founder and first 56maintainer, to whom the time zone community owes the greatest debt of all. 57None of them are responsible for remaining errors. 58 59Look in <ftp://ftp.iana.org/tz/releases/> for updated versions of these files. 60 61Please send comments or information to tz@iana.org. 62