maint: update copyright
[gnulib.git] / doc / parse-datetime.texi
1 @c GNU date syntax documentation
2
3 @c Copyright (C) 1994-2006, 2009-2014 Free Software Foundation, Inc.
4
5 @c Permission is granted to copy, distribute and/or modify this document
6 @c under the terms of the GNU Free Documentation License, Version 1.3 or
7 @c any later version published by the Free Software Foundation; with no
8 @c Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
9 @c Texts.  A copy of the license is included in the ``GNU Free
10 @c Documentation License'' file as part of this distribution.
11
12 @node Date input formats
13 @chapter Date input formats
14
15 @cindex date input formats
16 @findex parse_datetime
17
18 First, a quote:
19
20 @quotation
21 Our units of temporal measurement, from seconds on up to months, are so
22 complicated, asymmetrical and disjunctive so as to make coherent mental
23 reckoning in time all but impossible.  Indeed, had some tyrannical god
24 contrived to enslave our minds to time, to make it all but impossible
25 for us to escape subjection to sodden routines and unpleasant surprises,
26 he could hardly have done better than handing down our present system.
27 It is like a set of trapezoidal building blocks, with no vertical or
28 horizontal surfaces, like a language in which the simplest thought
29 demands ornate constructions, useless particles and lengthy
30 circumlocutions.  Unlike the more successful patterns of language and
31 science, which enable us to face experience boldly or at least
32 level-headedly, our system of temporal calculation silently and
33 persistently encourages our terror of time.
34
35 @dots{}  It is as though architects had to measure length in feet, width
36 in meters and height in ells; as though basic instruction manuals
37 demanded a knowledge of five different languages.  It is no wonder then
38 that we often look into our own immediate past or future, last Tuesday
39 or a week from Sunday, with feelings of helpless confusion.  @dots{}
40
41 ---Robert Grudin, @cite{Time and the Art of Living}.
42 @end quotation
43
44 This section describes the textual date representations that GNU
45 programs accept.  These are the strings you, as a user, can supply as
46 arguments to the various programs.  The C interface (via the
47 @code{parse_datetime} function) is not described here.
48
49 @menu
50 * General date syntax::            Common rules.
51 * Calendar date items::            19 Dec 1994.
52 * Time of day items::              9:20pm.
53 * Time zone items::                EST, PDT, UTC, @dots{}
54 * Combined date and time of day items:: 1972-09-24T20:02:00,000000-0500.
55 * Day of week items::              Monday and others.
56 * Relative items in date strings:: next tuesday, 2 years ago.
57 * Pure numbers in date strings::   19931219, 1440.
58 * Seconds since the Epoch::        @@1078100502.
59 * Specifying time zone rules::     TZ="America/New_York", TZ="UTC0".
60 * Authors of parse_datetime::      Bellovin, Eggert, Salz, Berets, et al.
61 @end menu
62
63
64 @node General date syntax
65 @section General date syntax
66
67 @cindex general date syntax
68
69 @cindex items in date strings
70 A @dfn{date} is a string, possibly empty, containing many items
71 separated by whitespace.  The whitespace may be omitted when no
72 ambiguity arises.  The empty string means the beginning of today (i.e.,
73 midnight).  Order of the items is immaterial.  A date string may contain
74 many flavors of items:
75
76 @itemize @bullet
77 @item calendar date items
78 @item time of day items
79 @item time zone items
80 @item combined date and time of day items
81 @item day of the week items
82 @item relative items
83 @item pure numbers.
84 @end itemize
85
86 @noindent We describe each of these item types in turn, below.
87
88 @cindex numbers, written-out
89 @cindex ordinal numbers
90 @findex first @r{in date strings}
91 @findex next @r{in date strings}
92 @findex last @r{in date strings}
93 A few ordinal numbers may be written out in words in some contexts.  This is
94 most useful for specifying day of the week items or relative items (see
95 below).  Among the most commonly used ordinal numbers, the word
96 @samp{last} stands for @math{-1}, @samp{this} stands for 0, and
97 @samp{first} and @samp{next} both stand for 1.  Because the word
98 @samp{second} stands for the unit of time there is no way to write the
99 ordinal number 2, but for convenience @samp{third} stands for 3,
100 @samp{fourth} for 4, @samp{fifth} for 5,
101 @samp{sixth} for 6, @samp{seventh} for 7, @samp{eighth} for 8,
102 @samp{ninth} for 9, @samp{tenth} for 10, @samp{eleventh} for 11 and
103 @samp{twelfth} for 12.
104
105 @cindex months, written-out
106 When a month is written this way, it is still considered to be written
107 numerically, instead of being ``spelled in full''; this changes the
108 allowed strings.
109
110 @cindex language, in dates
111 In the current implementation, only English is supported for words and
112 abbreviations like @samp{AM}, @samp{DST}, @samp{EST}, @samp{first},
113 @samp{January}, @samp{Sunday}, @samp{tomorrow}, and @samp{year}.
114
115 @cindex language, in dates
116 @cindex time zone item
117 The output of the @command{date} command
118 is not always acceptable as a date string,
119 not only because of the language problem, but also because there is no
120 standard meaning for time zone items like @samp{IST}@.  When using
121 @command{date} to generate a date string intended to be parsed later,
122 specify a date format that is independent of language and that does not
123 use time zone items other than @samp{UTC} and @samp{Z}@.  Here are some
124 ways to do this:
125
126 @example
127 $ LC_ALL=C TZ=UTC0 date
128 Mon Mar  1 00:21:42 UTC 2004
129 $ TZ=UTC0 date +'%Y-%m-%d %H:%M:%SZ'
130 2004-03-01 00:21:42Z
131 $ date --rfc-3339=ns  # --rfc-3339 is a GNU extension.
132 2004-02-29 16:21:42.692722128-08:00
133 $ date --rfc-2822  # a GNU extension
134 Sun, 29 Feb 2004 16:21:42 -0800
135 $ date +'%Y-%m-%d %H:%M:%S %z'  # %z is a GNU extension.
136 2004-02-29 16:21:42 -0800
137 $ date +'@@%s.%N'  # %s and %N are GNU extensions.
138 @@1078100502.692722128
139 @end example
140
141 @cindex case, ignored in dates
142 @cindex comments, in dates
143 Alphabetic case is completely ignored in dates.  Comments may be introduced
144 between round parentheses, as long as included parentheses are properly
145 nested.  Hyphens not followed by a digit are currently ignored.  Leading
146 zeros on numbers are ignored.
147
148 @cindex leap seconds
149 Invalid dates like @samp{2005-02-29} or times like @samp{24:00} are
150 rejected.  In the typical case of a host that does not support leap
151 seconds, a time like @samp{23:59:60} is rejected even if it
152 corresponds to a valid leap second.
153
154
155 @node Calendar date items
156 @section Calendar date items
157
158 @cindex calendar date item
159
160 A @dfn{calendar date item} specifies a day of the year.  It is
161 specified differently, depending on whether the month is specified
162 numerically or literally.  All these strings specify the same calendar date:
163
164 @example
165 1972-09-24     # ISO 8601.
166 72-9-24        # Assume 19xx for 69 through 99,
167                # 20xx for 00 through 68.
168 72-09-24       # Leading zeros are ignored.
169 9/24/72        # Common U.S. writing.
170 24 September 1972
171 24 Sept 72     # September has a special abbreviation.
172 24 Sep 72      # Three-letter abbreviations always allowed.
173 Sep 24, 1972
174 24-sep-72
175 24sep72
176 @end example
177
178 The year can also be omitted.  In this case, the last specified year is
179 used, or the current year if none.  For example:
180
181 @example
182 9/24
183 sep 24
184 @end example
185
186 Here are the rules.
187
188 @cindex ISO 8601 date format
189 @cindex date format, ISO 8601
190 For numeric months, the ISO 8601 format
191 @samp{@var{year}-@var{month}-@var{day}} is allowed, where @var{year} is
192 any positive number, @var{month} is a number between 01 and 12, and
193 @var{day} is a number between 01 and 31.  A leading zero must be present
194 if a number is less than ten.  If @var{year} is 68 or smaller, then 2000
195 is added to it; otherwise, if @var{year} is less than 100,
196 then 1900 is added to it.  The construct
197 @samp{@var{month}/@var{day}/@var{year}}, popular in the United States,
198 is accepted.  Also @samp{@var{month}/@var{day}}, omitting the year.
199
200 @cindex month names in date strings
201 @cindex abbreviations for months
202 Literal months may be spelled out in full: @samp{January},
203 @samp{February}, @samp{March}, @samp{April}, @samp{May}, @samp{June},
204 @samp{July}, @samp{August}, @samp{September}, @samp{October},
205 @samp{November} or @samp{December}.  Literal months may be abbreviated
206 to their first three letters, possibly followed by an abbreviating dot.
207 It is also permitted to write @samp{Sept} instead of @samp{September}.
208
209 When months are written literally, the calendar date may be given as any
210 of the following:
211
212 @example
213 @var{day} @var{month} @var{year}
214 @var{day} @var{month}
215 @var{month} @var{day} @var{year}
216 @var{day}-@var{month}-@var{year}
217 @end example
218
219 Or, omitting the year:
220
221 @example
222 @var{month} @var{day}
223 @end example
224
225
226 @node Time of day items
227 @section Time of day items
228
229 @cindex time of day item
230
231 A @dfn{time of day item} in date strings specifies the time on a given
232 day.  Here are some examples, all of which represent the same time:
233
234 @example
235 20:02:00.000000
236 20:02
237 8:02pm
238 20:02-0500      # In EST (U.S. Eastern Standard Time).
239 @end example
240
241 @cindex leap seconds
242 More generally, the time of day may be given as
243 @samp{@var{hour}:@var{minute}:@var{second}}, where @var{hour} is
244 a number between 0 and 23, @var{minute} is a number between 0 and
245 59, and @var{second} is a number between 0 and 59 possibly followed by
246 @samp{.} or @samp{,} and a fraction containing one or more digits.
247 Alternatively,
248 @samp{:@var{second}} can be omitted, in which case it is taken to
249 be zero.  On the rare hosts that support leap seconds, @var{second}
250 may be 60.
251
252 @findex am @r{in date strings}
253 @findex pm @r{in date strings}
254 @findex midnight @r{in date strings}
255 @findex noon @r{in date strings}
256 If the time is followed by @samp{am} or @samp{pm} (or @samp{a.m.}
257 or @samp{p.m.}), @var{hour} is restricted to run from 1 to 12, and
258 @samp{:@var{minute}} may be omitted (taken to be zero).  @samp{am}
259 indicates the first half of the day, @samp{pm} indicates the second
260 half of the day.  In this notation, 12 is the predecessor of 1:
261 midnight is @samp{12am} while noon is @samp{12pm}.
262 (This is the zero-oriented interpretation of @samp{12am} and @samp{12pm},
263 as opposed to the old tradition derived from Latin
264 which uses @samp{12m} for noon and @samp{12pm} for midnight.)
265
266 @cindex time zone correction
267 @cindex minutes, time zone correction by
268 The time may alternatively be followed by a time zone correction,
269 expressed as @samp{@var{s}@var{hh}@var{mm}}, where @var{s} is @samp{+}
270 or @samp{-}, @var{hh} is a number of zone hours and @var{mm} is a number
271 of zone minutes.
272 The zone minutes term, @var{mm}, may be omitted, in which case
273 the one- or two-digit correction is interpreted as a number of hours.
274 You can also separate @var{hh} from @var{mm} with a colon.
275 When a time zone correction is given this way, it
276 forces interpretation of the time relative to
277 Coordinated Universal Time (UTC), overriding any previous
278 specification for the time zone or the local time zone.  For example,
279 @samp{+0530} and @samp{+05:30} both stand for the time zone 5.5 hours
280 ahead of UTC (e.g., India).
281 This is the best way to
282 specify a time zone correction by fractional parts of an hour.
283 The maximum zone correction is 24 hours.
284
285 Either @samp{am}/@samp{pm} or a time zone correction may be specified,
286 but not both.
287
288
289 @node Time zone items
290 @section Time zone items
291
292 @cindex time zone item
293
294 A @dfn{time zone item} specifies an international time zone, indicated
295 by a small set of letters, e.g., @samp{UTC} or @samp{Z}
296 for Coordinated Universal
297 Time.  Any included periods are ignored.  By following a
298 non-daylight-saving time zone by the string @samp{DST} in a separate
299 word (that is, separated by some white space), the corresponding
300 daylight saving time zone may be specified.
301 Alternatively, a non-daylight-saving time zone can be followed by a
302 time zone correction, to add the two values.  This is normally done
303 only for @samp{UTC}; for example, @samp{UTC+05:30} is equivalent to
304 @samp{+05:30}.
305
306 Time zone items other than @samp{UTC} and @samp{Z}
307 are obsolescent and are not recommended, because they
308 are ambiguous; for example, @samp{EST} has a different meaning in
309 Australia than in the United States.  Instead, it's better to use
310 unambiguous numeric time zone corrections like @samp{-0500}, as
311 described in the previous section.
312
313 If neither a time zone item nor a time zone correction is supplied,
314 time stamps are interpreted using the rules of the default time zone
315 (@pxref{Specifying time zone rules}).
316
317
318 @node Combined date and time of day items
319 @section Combined date and time of day items
320
321 @cindex combined date and time of day item
322 @cindex ISO 8601 date and time of day format
323 @cindex date and time of day format, ISO 8601
324
325 The ISO 8601 date and time of day extended format consists of an ISO
326 8601 date, a @samp{T} character separator, and an ISO 8601 time of
327 day.  This format is also recognized if the @samp{T} is replaced by a
328 space.
329
330 In this format, the time of day should use 24-hour notation.
331 Fractional seconds are allowed, with either comma or period preceding
332 the fraction.  ISO 8601 fractional minutes and hours are not
333 supported.  Typically, hosts support nanosecond timestamp resolution;
334 excess precision is silently discarded.
335
336 Here are some examples:
337
338 @example
339 2012-09-24T20:02:00.052-0500
340 2012-12-31T23:59:59,999999999+1100
341 1970-01-01 00:00Z
342 @end example
343
344 @node Day of week items
345 @section Day of week items
346
347 @cindex day of week item
348
349 The explicit mention of a day of the week will forward the date
350 (only if necessary) to reach that day of the week in the future.
351
352 Days of the week may be spelled out in full: @samp{Sunday},
353 @samp{Monday}, @samp{Tuesday}, @samp{Wednesday}, @samp{Thursday},
354 @samp{Friday} or @samp{Saturday}.  Days may be abbreviated to their
355 first three letters, optionally followed by a period.  The special
356 abbreviations @samp{Tues} for @samp{Tuesday}, @samp{Wednes} for
357 @samp{Wednesday} and @samp{Thur} or @samp{Thurs} for @samp{Thursday} are
358 also allowed.
359
360 @findex next @var{day}
361 @findex last @var{day}
362 A number may precede a day of the week item to move forward
363 supplementary weeks.  It is best used in expression like @samp{third
364 monday}.  In this context, @samp{last @var{day}} or @samp{next
365 @var{day}} is also acceptable; they move one week before or after
366 the day that @var{day} by itself would represent.
367
368 A comma following a day of the week item is ignored.
369
370
371 @node Relative items in date strings
372 @section Relative items in date strings
373
374 @cindex relative items in date strings
375 @cindex displacement of dates
376
377 @dfn{Relative items} adjust a date (or the current date if none) forward
378 or backward.  The effects of relative items accumulate.  Here are some
379 examples:
380
381 @example
382 1 year
383 1 year ago
384 3 years
385 2 days
386 @end example
387
388 @findex year @r{in date strings}
389 @findex month @r{in date strings}
390 @findex fortnight @r{in date strings}
391 @findex week @r{in date strings}
392 @findex day @r{in date strings}
393 @findex hour @r{in date strings}
394 @findex minute @r{in date strings}
395 The unit of time displacement may be selected by the string @samp{year}
396 or @samp{month} for moving by whole years or months.  These are fuzzy
397 units, as years and months are not all of equal duration.  More precise
398 units are @samp{fortnight} which is worth 14 days, @samp{week} worth 7
399 days, @samp{day} worth 24 hours, @samp{hour} worth 60 minutes,
400 @samp{minute} or @samp{min} worth 60 seconds, and @samp{second} or
401 @samp{sec} worth one second.  An @samp{s} suffix on these units is
402 accepted and ignored.
403
404 @findex ago @r{in date strings}
405 The unit of time may be preceded by a multiplier, given as an optionally
406 signed number.  Unsigned numbers are taken as positively signed.  No
407 number at all implies 1 for a multiplier.  Following a relative item by
408 the string @samp{ago} is equivalent to preceding the unit by a
409 multiplier with value @math{-1}.
410
411 @findex day @r{in date strings}
412 @findex tomorrow @r{in date strings}
413 @findex yesterday @r{in date strings}
414 The string @samp{tomorrow} is worth one day in the future (equivalent
415 to @samp{day}), the string @samp{yesterday} is worth
416 one day in the past (equivalent to @samp{day ago}).
417
418 @findex now @r{in date strings}
419 @findex today @r{in date strings}
420 @findex this @r{in date strings}
421 The strings @samp{now} or @samp{today} are relative items corresponding
422 to zero-valued time displacement, these strings come from the fact
423 a zero-valued time displacement represents the current time when not
424 otherwise changed by previous items.  They may be used to stress other
425 items, like in @samp{12:00 today}.  The string @samp{this} also has
426 the meaning of a zero-valued time displacement, but is preferred in
427 date strings like @samp{this thursday}.
428
429 When a relative item causes the resulting date to cross a boundary
430 where the clocks were adjusted, typically for daylight saving time,
431 the resulting date and time are adjusted accordingly.
432
433 The fuzz in units can cause problems with relative items.  For
434 example, @samp{2003-07-31 -1 month} might evaluate to 2003-07-01,
435 because 2003-06-31 is an invalid date.  To determine the previous
436 month more reliably, you can ask for the month before the 15th of the
437 current month.  For example:
438
439 @example
440 $ date -R
441 Thu, 31 Jul 2003 13:02:39 -0700
442 $ date --date='-1 month' +'Last month was %B?'
443 Last month was July?
444 $ date --date="$(date +%Y-%m-15) -1 month" +'Last month was %B!'
445 Last month was June!
446 @end example
447
448 Also, take care when manipulating dates around clock changes such as
449 daylight saving leaps.  In a few cases these have added or subtracted
450 as much as 24 hours from the clock, so it is often wise to adopt
451 universal time by setting the @env{TZ} environment variable to
452 @samp{UTC0} before embarking on calendrical calculations.
453
454 @node Pure numbers in date strings
455 @section Pure numbers in date strings
456
457 @cindex pure numbers in date strings
458
459 The precise interpretation of a pure decimal number depends
460 on the context in the date string.
461
462 If the decimal number is of the form @var{yyyy}@var{mm}@var{dd} and no
463 other calendar date item (@pxref{Calendar date items}) appears before it
464 in the date string, then @var{yyyy} is read as the year, @var{mm} as the
465 month number and @var{dd} as the day of the month, for the specified
466 calendar date.
467
468 If the decimal number is of the form @var{hh}@var{mm} and no other time
469 of day item appears before it in the date string, then @var{hh} is read
470 as the hour of the day and @var{mm} as the minute of the hour, for the
471 specified time of day.  @var{mm} can also be omitted.
472
473 If both a calendar date and a time of day appear to the left of a number
474 in the date string, but no relative item, then the number overrides the
475 year.
476
477
478 @node Seconds since the Epoch
479 @section Seconds since the Epoch
480
481 If you precede a number with @samp{@@}, it represents an internal time
482 stamp as a count of seconds.  The number can contain an internal
483 decimal point (either @samp{.} or @samp{,}); any excess precision not
484 supported by the internal representation is truncated toward minus
485 infinity.  Such a number cannot be combined with any other date
486 item, as it specifies a complete time stamp.
487
488 @cindex beginning of time, for POSIX
489 @cindex epoch, for POSIX
490 Internally, computer times are represented as a count of seconds since
491 an epoch---a well-defined point of time.  On GNU and
492 POSIX systems, the epoch is 1970-01-01 00:00:00 UTC, so
493 @samp{@@0} represents this time, @samp{@@1} represents 1970-01-01
494 00:00:01 UTC, and so forth.  GNU and most other
495 POSIX-compliant systems support such times as an extension
496 to POSIX, using negative counts, so that @samp{@@-1}
497 represents 1969-12-31 23:59:59 UTC.
498
499 Traditional Unix systems count seconds with 32-bit two's-complement
500 integers and can represent times from 1901-12-13 20:45:52 through
501 2038-01-19 03:14:07 UTC@.  More modern systems use 64-bit counts
502 of seconds with nanosecond subcounts, and can represent all the times
503 in the known lifetime of the universe to a resolution of 1 nanosecond.
504
505 @cindex leap seconds
506 On most hosts, these counts ignore the presence of leap seconds.
507 For example, on most hosts @samp{@@915148799} represents 1998-12-31
508 23:59:59 UTC, @samp{@@915148800} represents 1999-01-01 00:00:00
509 UTC, and there is no way to represent the intervening leap second
510 1998-12-31 23:59:60 UTC.
511
512 @node Specifying time zone rules
513 @section Specifying time zone rules
514
515 @vindex TZ
516 Normally, dates are interpreted using the rules of the current time
517 zone, which in turn are specified by the @env{TZ} environment
518 variable, or by a system default if @env{TZ} is not set.  To specify a
519 different set of default time zone rules that apply just to one date,
520 start the date with a string of the form @samp{TZ="@var{rule}"}.  The
521 two quote characters (@samp{"}) must be present in the date, and any
522 quotes or backslashes within @var{rule} must be escaped by a
523 backslash.
524
525 For example, with the GNU @command{date} command you can
526 answer the question ``What time is it in New York when a Paris clock
527 shows 6:30am on October 31, 2004?'' by using a date beginning with
528 @samp{TZ="Europe/Paris"} as shown in the following shell transcript:
529
530 @example
531 $ export TZ="America/New_York"
532 $ date --date='TZ="Europe/Paris" 2004-10-31 06:30'
533 Sun Oct 31 01:30:00 EDT 2004
534 @end example
535
536 In this example, the @option{--date} operand begins with its own
537 @env{TZ} setting, so the rest of that operand is processed according
538 to @samp{Europe/Paris} rules, treating the string @samp{2004-10-31
539 06:30} as if it were in Paris.  However, since the output of the
540 @command{date} command is processed according to the overall time zone
541 rules, it uses New York time.  (Paris was normally six hours ahead of
542 New York in 2004, but this example refers to a brief Halloween period
543 when the gap was five hours.)
544
545 A @env{TZ} value is a rule that typically names a location in the
546 @uref{http://www.twinsun.com/tz/tz-link.htm, @samp{tz} database}.
547 A recent catalog of location names appears in the
548 @uref{http://twiki.org/cgi-bin/xtra/tzdate, TWiki Date and Time
549 Gateway}.  A few non-GNU hosts require a colon before a
550 location name in a @env{TZ} setting, e.g.,
551 @samp{TZ=":America/New_York"}.
552
553 The @samp{tz} database includes a wide variety of locations ranging
554 from @samp{Arctic/Longyearbyen} to @samp{Antarctica/South_Pole}, but
555 if you are at sea and have your own private time zone, or if you are
556 using a non-GNU host that does not support the @samp{tz}
557 database, you may need to use a POSIX rule instead.  Simple
558 POSIX rules like @samp{UTC0} specify a time zone without
559 daylight saving time; other rules can specify simple daylight saving
560 regimes.  @xref{TZ Variable,, Specifying the Time Zone with @code{TZ},
561 libc, The GNU C Library}.
562
563 @node Authors of parse_datetime
564 @section Authors of @code{parse_datetime}
565 @c the anchor keeps the old node name, to try to avoid breaking links
566 @anchor{Authors of get_date}
567
568 @cindex authors of @code{parse_datetime}
569
570 @cindex Bellovin, Steven M.
571 @cindex Salz, Rich
572 @cindex Berets, Jim
573 @cindex MacKenzie, David
574 @cindex Meyering, Jim
575 @cindex Eggert, Paul
576 @code{parse_datetime} started life as @code{getdate}, as originally
577 implemented by Steven M. Bellovin
578 (@email{smb@@research.att.com}) while at the University of North Carolina
579 at Chapel Hill.  The code was later tweaked by a couple of people on
580 Usenet, then completely overhauled by Rich $alz (@email{rsalz@@bbn.com})
581 and Jim Berets (@email{jberets@@bbn.com}) in August, 1990.  Various
582 revisions for the GNU system were made by David MacKenzie, Jim Meyering,
583 Paul Eggert and others, including renaming it to @code{get_date} to
584 avoid a conflict with the alternative Posix function @code{getdate},
585 and a later rename to @code{parse_datetime}.  The Posix function
586 @code{getdate} can parse more locale-specific dates using
587 @code{strptime}, but relies on an environment variable and external
588 file, and lacks the thread-safety of @code{parse_datetime}.
589
590 @cindex Pinard, F.
591 @cindex Berry, K.
592 This chapter was originally produced by Fran@,{c}ois Pinard
593 (@email{pinard@@iro.umontreal.ca}) from the @file{parse_datetime.y} source code,
594 and then edited by K. Berry (@email{kb@@cs.umb.edu}).