import tzcode96a

This commit is contained in:
jtc 1996-01-08 22:45:14 +00:00
parent 8fe8f4f8de
commit c743e76aff
3 changed files with 162 additions and 10 deletions

81
lib/libc/time/Music Normal file
View File

@ -0,0 +1,81 @@
@(#)Music 7.4
Data on recordings of "Save That Time," Russ Long, Serrob Publishing, BMI:
--------------------------------------------------------------------------
Artist: Karrin Allyson
CD: I Didn't Know About You
Copyright Date: 1993
Label: Concord Jazz, Inc.
ID: CCD-4543
Track Time: 3:44
Personnel: Karrin Allyson, vocal
Russ Long, piano
Gerald Spaits, bass
Todd Strait, drums
Notes: CD notes "additional lyric by Karrin Allyson;
arranged by Russ Long and Karrin Allyson"
Rating: 1 star
--------------------------------------------------------------------------
Artist: Kevin Mahogany
CD: Double Rainbow
Copyright Date: 1993
Label: Enja Records
ID: ENJ-7097 2
Track Time: 6:27
Personnel: Kevin Mahogany, vocal
Kenny Barron, piano
Ray Drummond, bss
Ralph Moore, tenor saxophone
Lewis Nash, drums
Rating: 1.5 stars
--------------------------------------------------------------------------
Artist: Joe Williams
CD: Here's to Life
Copyright Date: 1994
Label: Telarc International Corporation
ID: CD-83357
Track Time: 3:58
Personnel: Joe Williams, vocal
The Robert Farnon [39 piece] Orchestra
Rating: black dot
--------------------------------------------------------------------------
Artist: Charles Fambrough
CD: Keeper of the Spirit
Copyright Date: 1995
Label: AudioQuest Music
ID: AQ-CD1033
Track Time: 7:07
Personnel: Charles Fambrough, bass
Joel Levine, tenor recorder
Edward Simon, piano
Lenny White, drums
Marion Simon, percussion
Rating: 2 stars
==========================================================================
Also of note:
Artist: Milt Hinton
CD: Old Man Time
Date: 1993
Label: Chiaroscuro
ID: CR(D) 310
Total Time: 149:38 (two CDs)
Personnel: Milt Hinton, bass
Doc Cheatham, Dizzy Gillespie, Clark Terry, trumpet
Al Grey, trombone
Eddier Barefield, Joe Camel (Flip Phillips), Buddy Tate,
clarinet and saxophone
John Bunch, Red Richards, Norman Simmons, Derek Smith,
Ralph Sutton, piano
Danny Barker, Al Casey, guitar
Gus Johnson, Gerryck King, Bob Rosengarden, Jackie Williams,
drums
Lionel Hampton, vibraphone
Cab Calloway, Joe Williams, vocal
Buck Clayton, arrangements
Notes: tunes include Old Man Time, Time After Time,
Sometimes I'm Happy,
A Hot Time in the Old Town Tonight,
Four or Five Times, Now's the Time,
Time on My Hands, This Time It's Us,
and Good Time Charlie
Rating: 3 stars

View File

@ -1,4 +1,4 @@
@(#)Theory 7.2
@(#)Theory 7.4
These time and date functions are much like the System V Release 2.0 (SVR2)
time and date functions; there are a few additions and changes to extend
@ -47,7 +47,7 @@ These are the changes that have been made to the SVR2 functions:
abbreviations are used.
It was recognized that allowing the "TZ" environment variable to
take on values such as "US/Eastern" might cause "old" programs
take on values such as "America/New_York" might cause "old" programs
(that expect "TZ" to have a certain form) to operate incorrectly;
consideration was given to using some other environment variable
(for example, "TIMEZONE") to hold the string used to generate the
@ -79,8 +79,8 @@ These are the changes that have been made to the SVR2 functions:
best approximation to local wall clock time to be delivered by
subsequent calls to "localtime." Source code for portable
applications that "must" run on local wall clock time should call
"tzsetwall();" if such code is moved to "old" systems that don't provide
tzsetwall, you won't be able to generate an executable program.
"tzsetwall();" if such code is moved to "old" systems that don't
provide tzsetwall, you won't be able to generate an executable program.
(These time zone functions also arrange for local wall clock time to be
used if tzset is called--directly or indirectly--and there's no "TZ"
environment variable; portable applications should not, however, rely
@ -94,8 +94,8 @@ Points of interest to folks with Version 7 or BSD systems:
time zone abbreviation, and we refuse to guess.
Programs that in the past used the timezone function may now examine
tzname[localtime(&clock)->tm_isdst] to learn the correct time
zone abbreviation to use. Alternatively, use localtime(&clock)->tm_zone
if this has been enabled.
zone abbreviation to use. Alternatively, use
localtime(&clock)->tm_zone if this has been enabled.
* The BSD gettimeofday function is not used in this package;
this lets users control the time zone used in doing time conversions.
@ -104,10 +104,10 @@ Points of interest to folks with Version 7 or BSD systems:
file "/etc/zoneinfo/localtime"; see the time zone compiler writeup for
information on how to initialize this file.
The functions that are conditionally compiled if STD_INSPIRED is defined should,
at this point, be looked on primarily as food for thought. They are not in
any sense "standard compatible"--some are not, in fact, specified in *any*
standard. They do, however, represent responses of various authors to
The functions that are conditionally compiled if STD_INSPIRED is defined
should, at this point, be looked on primarily as food for thought. They are
not in any sense "standard compatible"--some are not, in fact, specified in
*any* standard. They do, however, represent responses of various authors to
standardization proposals.
Other time conversion proposals, in particular the one developed by folks at

71
lib/libc/time/WWW Normal file
View File

@ -0,0 +1,71 @@
# '@(#)WWW 7.3'
# From Paul Eggert <eggert@twinsun.com> (1995-11-03)
#
# The Web has several other sources for time zone and daylight savings data.
# Here are some recent links that may be of interest.
#
# Date and Time Gateway
# http://www.bsdi.com/date
# A text-based source for tables of current time throughout the world.
# Its point-and-click interface accesses a recent version of the tz data.
#
# Local Times Around the World
# http://www.hilink.com.au/times/
# This text-based system contains links to local time servers
# throughout the world, and though the coverage is limited,
# the live data provide a nice way to check one's tables.
#
# World Time Zones
# http://tycho.usno.navy.mil/tzones.html
# US Naval Observatory data, used as the source for `usno1995'.
#
# Standard Time Zones of the World
# http://www.odci.gov/cia/publications/95fact/802389.gif [54 kB]
# http://www.odci.gov/cia/publications/95fact/802389h.gif [1317 kB]
# A static time zone map, available in both low-resolution and
# high-resolution versions. The quality is good, but the map does not
# indicate summer time, and parts of the data are a few years out of date.
#
# VIBE's World Map
# http://pathfinder.com/vibe/vibeworld
# An active time zone map. You can point to the map and find out what
# time it is at that location. The map and data are not as good as
# other sources.
###############################################################################
# From Manavendra Thakur <Manavendra_Thakur@NeXT.COM> (1995-11-06)
#
# To Paul's list of time zone information on the web, I would add the
# following URL:
# http://www.dhl.com/dhl/dhlinfo/1bb.html
# or more simply:
# http://www.dhl.com/
#
# This is run by DHL (the courier company), and it presents a list of the
# countries served by that company. If you then click on a particular
# country, here's an example of what you'll see (graphics stripped out):
#
# United Kingdom
#
# HOLIDAYS: Jan 1, 2, Apr 14, 17, May 1, 29, Aug 28, Dec 25, 26
#
# INTERNATIONAL DIALING CODE: +44
#
# CURRENT LOCAL TIME: 09:41 Monday 6 November 1995
#
# I find this rather handy, and given that DHL covers 217 countries and
# territories, it's pretty comprehensive coverage.
#
# (I have no idea what system DHL is using to calculate the local time, but
# it's been accurate so far.)
###############################################################################
# From Arthur David Olson <arthur_david_olson@nih.gov> (1996-01-04)
#
# A good source of information about ISO 8601 seems to be
# http://www.ft.uni-erlangen.de/~mskuhn/iso-time.html
# maintained by Markus Kuhn.