home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _ee2643cef42ed070a1365591d48648dc < prev    next >
Text File  |  2000-03-23  |  95KB  |  1,846 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>Date::Manip - date manipulation routines</TITLE>
  5. <LINK REL="stylesheet" HREF="../../../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> Date::Manip - date manipulation routines</P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  25.     <LI><A HREF="#examples">EXAMPLES</A></LI>
  26.     <LI><A HREF="#should i use date::manip">SHOULD I USE DATE::MANIP</A></LI>
  27.     <LI><A HREF="#routines">ROUTINES</A></LI>
  28.     <LI><A HREF="#timezones">TIMEZONES</A></LI>
  29.     <LI><A HREF="#business mode">BUSINESS MODE</A></LI>
  30.     <LI><A HREF="#customizing date::manip">CUSTOMIZING DATE::MANIP</A></LI>
  31.     <LI><A HREF="#backwards incompatibilities">BACKWARDS INCOMPATIBILITIES</A></LI>
  32.     <LI><A HREF="#known problems">KNOWN PROBLEMS</A></LI>
  33.     <LI><A HREF="#known bugs">KNOWN BUGS</A></LI>
  34.     <LI><A HREF="#bugs and questions">BUGS AND QUESTIONS</A></LI>
  35.     <LI><A HREF="#year 2000">YEAR 2000</A></LI>
  36.     <LI><A HREF="#acknowledgements">ACKNOWLEDGEMENTS</A></LI>
  37.     <LI><A HREF="#author">AUTHOR</A></LI>
  38. </UL>
  39. <!-- INDEX END -->
  40.  
  41. <HR>
  42. <P>
  43. <H1><A NAME="name">NAME</A></H1>
  44. <P>Date::Manip - date manipulation routines</P>
  45. <P>
  46. <HR>
  47. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  48. <UL>
  49. <LI>Linux</LI>
  50. <LI>Solaris</LI>
  51. <LI>Windows</LI>
  52. </UL>
  53. <HR>
  54. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  55. <PRE>
  56.  use Date::Manip;</PRE>
  57. <PRE>
  58.  $date=&ParseDate(\@args)
  59.  $date=&ParseDate($string)
  60.  $date=&ParseDate(\$string)</PRE>
  61. <PRE>
  62.  @date=&UnixDate($date,@format)
  63.  $date=&UnixDate($date,@format)</PRE>
  64. <PRE>
  65.  $delta=&ParseDateDelta(\@args)
  66.  $delta=&ParseDateDelta($string)
  67.  $delta=&ParseDateDelta(\$string)</PRE>
  68. <PRE>
  69.  @str=&Delta_Format($delta,$dec,@format)
  70.  $str=&Delta_Format($delta,$dec,@format)</PRE>
  71. <PRE>
  72.  $recur=&ParseRecur($string,$base,$date0,$date1,$flags)
  73.  @dates=&ParseRecur($string,$base,$date0,$date1,$flags)</PRE>
  74. <PRE>
  75.  $d=&DateCalc($d1,$d2 [,$errref] [,$del])</PRE>
  76. <PRE>
  77.  $date=&Date_SetTime($date,$hr,$min,$sec)
  78.  $date=&Date_SetTime($date,$time)</PRE>
  79. <PRE>
  80.  $date=&Date_SetDateField($date,$field,$val [,$nocheck])</PRE>
  81. <PRE>
  82.  $date=&Date_GetPrev($date,$dow,$today,$hr,$min,$sec)
  83.  $date=&Date_GetPrev($date,$dow,$today,$time)</PRE>
  84. <PRE>
  85.  $date=&Date_GetNext($date,$dow,$today,$hr,$min,$sec)
  86.  $date=&Date_GetNext($date,$dow,$today,$time)</PRE>
  87. <PRE>
  88.  &Date_Init()
  89.  &Date_Init("VAR=VAL",...)</PRE>
  90. <PRE>
  91.  $version=&DateManipVersion</PRE>
  92. <PRE>
  93.  $flag=&Date_IsWorkDay($date [,$flag]);</PRE>
  94. <PRE>
  95.  $date=&Date_NextWorkDay($date,$off [,$time]);
  96.  $date=&Date_PrevWorkDay($date,$off [,$time]);</PRE>
  97. <P>The following routines are used by the above routines (though they can also
  98. be called directly).  $y may be entered as either a 2 or 4 digit year (it
  99. will be converted to a 4 digit year based on the variable YYtoYYYY
  100. described below).  Month and day should be numeric in all cases.  Most (if
  101. not all) of the information below can be gotten from UnixDate which is
  102. really the way I intended it to be gotten, but there are reasons to use
  103. these (these are significantly faster).</P>
  104. <PRE>
  105.  $day=&Date_DayOfWeek($m,$d,$y)
  106.  $secs=&Date_SecsSince1970($m,$d,$y,$h,$mn,$s)
  107.  $secs=&Date_SecsSince1970GMT($m,$d,$y,$h,$mn,$s)
  108.  $days=&Date_DaysSince999($m,$d,$y)
  109.  $day=&Date_DayOfYear($m,$d,$y)
  110.  $days=&Date_DaysInYear($y)
  111.  $wkno=&Date_WeekOfYear($m,$d,$y,$first)
  112.  $flag=&Date_LeapYear($y)
  113.  $day=&Date_DaySuffix($d)
  114.  $tz=&Date_TimeZone()
  115.  ($y,$m,$d,$h,$mn,$s)=&Date_NthDayOfYear($y,$n)</PRE>
  116. <P>
  117. <HR>
  118. <H1><A NAME="description">DESCRIPTION</A></H1>
  119. <P>This is a set of routines designed to make any common date/time
  120. manipulation easy to do.  Operations such as comparing two times,
  121. calculating a time a given amount of time from another, or parsing
  122. international times are all easily done.  From the very beginning, the main
  123. focus of Date::Manip has been to be able to do ANY desired date/time
  124. operation easily, not necessarily quickly.  Also, it is definitely oriented
  125. towards the type of operationw we (as people) tend to think of rather than
  126. those operations used routinely by computers.  There are other modules that
  127. can do a small subset of the operations available in Date::Manip much
  128. quicker than those presented here, so if speed is a primary issue, you
  129. should look elsewhere.  Check out the CPAN listing of Time and Date
  130. modules.  But for sheer flexibility, I believe that Date::Manip is your
  131. best bet.</P>
  132. <P>Date::Manip deals with time as it is presented the Gregorian calendar (the
  133. one currently in use).  The Julian calendar defined leap years as every 4th
  134. year.  The Gregorian calendar improved this by making every 100th year NOT
  135. a leap year, unless it was also the 400th year.  The Gregorian calendar has
  136. been extrapolated back to the year 1000 AD and forward to the year 9999 AD.
  137. Note that in historical context, the Julian calendar was in use until 1582
  138. when the Gregorian calendar was adopted by the Catholic church.  Protestant
  139. countries did not accept it until later; Germany and Netherlands in 1698,
  140. British Empire in 1752, Russia in 1918.  Note that the Gregorian calendar
  141. is itself imperfect.  Each year is on average 26 seconds too long, which
  142. means that every 3,323 years, a day should be removed from the calendar.
  143. No attempt is made to correct for that.</P>
  144. <P>Date::Manip is therefore not equipped to truly deal with historical dates,
  145. but should be able to perform (virtually) any operation dealing with a
  146. modern time and date.</P>
  147. <P>Date::Manip has (or will have) functionality to work with several fundamental
  148. types of data.</P>
  149. <DL>
  150. <DT><STRONG><A NAME="item_DATE">DATE</A></STRONG><BR>
  151. <DD>
  152. Although the word date is used extensively here, it is actually somewhat
  153. misleading.  Date::Manip works with the full date AND time (year, month,
  154. day, hour, minute, second and weeks when appropriate).  It doesn't work
  155. with fractional seconds.  Timezones are also supported to some extent.
  156. <P>NOTE:  Much better support for timezones (including Daylight Savings Time)
  157. is planned for the future.</P>
  158. <P></P>
  159. <DT><STRONG><A NAME="item_DELTA">DELTA</A></STRONG><BR>
  160. <DD>
  161. This refers to a duration or elapsed time.  One thing to note is that, as
  162. used in this module, a delta refers only to the amount of time elapsed.  It
  163. includes no information about a starting or ending time.
  164. <P></P>
  165. <DT><STRONG><A NAME="item_RECURRENCE">RECURRENCE</A></STRONG><BR>
  166. <DD>
  167. A recurrence is simply a notation for defining when a recurring event
  168. occurs.  For example, if an event occurs every other Friday or every
  169. 4 hours, this can be defined as a recurrence.  With a recurrence and a
  170. starting and ending date, you can get a list of dates in that period when
  171. a recurring event occurs.
  172. <P></P>
  173. <DT><STRONG><A NAME="item_GRAIN">GRAIN</A></STRONG><BR>
  174. <DD>
  175. The granularity of a time basically refers to how accurate you wish to
  176. treat a date.  For example, if you want to compare two dates to see if
  177. they are identical at a granularity of days, then they only have to occur
  178. on the same day.  At a granularity of an hour, they have to occur within
  179. an hour of each other, etc.
  180. <P>NOTE:  Support for this will be added in the future.</P>
  181. <P></P></DL>
  182. <P>Among other things, Date::Manip allow you to:</P>
  183. <P>1.  Enter a date and be able to choose any format conveniant</P>
  184. <P>2.  Compare two dates, entered in widely different formats to determine
  185.     which is earlier</P>
  186. <P>3.  Extract any information you want from ANY date using a format string
  187.     similar to the Unix date command</P>
  188. <P>4.  Determine the amount of time between two dates</P>
  189. <P>5.  Add a time offset to a date to get a second date (i.e. determine the
  190.     date 132 days ago or 2 years and 3 months after Jan 2, 1992)</P>
  191. <P>6.  Work with dates with dates using international formats (foreign month
  192.     names, 12/10/95 referring to October rather than December, etc.).</P>
  193. <P>7.  To find a list of dates where a recurring event happens.</P>
  194. <P>Each of these tasks is trivial (one or two lines at most) with this package.</P>
  195. <P>
  196. <HR>
  197. <H1><A NAME="examples">EXAMPLES</A></H1>
  198. <P>In the documentation below, US formats are used, but in most (if not all)
  199. cases, a non-English equivalent will work equally well.</P>
  200. <P>1.  Parsing a date from any conveniant format</P>
  201. <PRE>
  202.   $date=&ParseDate("today");
  203.   $date=&ParseDate("1st thursday in June 1992");
  204.   $date=&ParseDate("05/10/93");
  205.   $date=&ParseDate("12:30 Dec 12th 1880");
  206.   $date=&ParseDate("8:00pm december tenth");
  207.   if (! $date) {
  208.     # Error in the date
  209.   }</PRE>
  210. <P>2.  Compare two dates</P>
  211. <PRE>
  212.   $date1=&ParseDate($string1);
  213.   $date2=&ParseDate($string2);
  214.   if ($date1 lt $date2) {
  215.     # date1 is earlier
  216.   } else {
  217.     # date2 is earlier (or the two dates are identical)
  218.   }</PRE>
  219. <P>3.  Extract information from a date.</P>
  220. <PRE>
  221.   print &UnixDate("today","The time is now %T on %b %e, %Y.");
  222.   =>  "The time is now 13:24:08 on Feb  3, 1996."</PRE>
  223. <P>4.  The amount of time between two dates.</P>
  224. <PRE>
  225.   $date1=&ParseDate($string1);
  226.   $date2=&ParseDate($string2);
  227.   $delta=&DateCalc($date1,$date2,\$err);
  228.   => 0:0:WK:DD:HH:MM:SS   the weeks, days, hours, minutes, and seconds
  229.                           between the two
  230.   $delta=&DateCalc($date1,$date2,\$err,1);
  231.   => YY:MM:WK:DD:HH:MM:SS  the years, months, etc. between the two</PRE>
  232. <PRE>
  233.   Read the documentation below for an explanation of the difference.</PRE>
  234. <P>5.  To determine a date a given offset from another.</P>
  235. <PRE>
  236.   $date=&DateCalc("today","+ 3hours 12minutes 6 seconds",\$err);
  237.   $date=&DateCalc("12 hours ago","12:30 6Jan90",\$err);</PRE>
  238. <PRE>
  239.   It even works with business days:</PRE>
  240. <PRE>
  241.   $date=&DateCalc("today","+ 3 business days",\$err);</PRE>
  242. <P>6.  To work with dates in another language.</P>
  243. <PRE>
  244.   &Date_Init("Language=French","DateFormat=non-US");
  245.   $date=&ParseDate("1er decembre 1990");</PRE>
  246. <P>7.  To find a list of dates where a recurring event happens.</P>
  247. <PRE>
  248.   # To find the 2nd tuesday of every month
  249.   @date=&ParseRecur("0:1*2:2:0:0:0",$base,$start,$stop);</PRE>
  250. <P>NOTE: Some date forms do not work as well in languages other than English,
  251. but this is not because DateManip is incapable of doing so (almost nothing
  252. in this module is language dependent).  It is simply that I do not have the
  253. correct translation available for some words.  If there is a date form that
  254. works in English but does not work in a language you need, let me know and
  255. if you can provide me the translation, I will fix DateManip.</P>
  256. <P>
  257. <HR>
  258. <H1><A NAME="should i use date::manip">SHOULD I USE DATE::MANIP</A></H1>
  259. <P>If you look in CPAN, you'll find that there are a number of Date and Time
  260. packages.  Is Date::Manip the one you should be using?</P>
  261. <P>Date::Manip has several strengths.  These include flexibility, a wide
  262. variety of functions, and it is written entirely in perl.</P>
  263. <P>It also has several weaknesses.  The main one is that it is written
  264. entirely in perl.</P>
  265. <P>The fact that it is written in perl is both an advantage and a disadvantage.
  266. It means that you are not required to have a C compiler around in order to
  267. install Date::Manip (in fact, Date::Manip has no dependancies on anything
  268. not included in a standard perl distribution since perl 5.002 or so).  On
  269. Unix platforms, this is not terribly important since they pretty much all have
  270. a C compiler, but on non-Unix platforms, this can simplify insallation.</P>
  271. <P>The downside is that Date::Manip is slow, especially when compared to
  272. several of the other Date/Time modules which are written in C.  Although I
  273. am working on making Date::Manip faster, it will never be as fast as these
  274. modules.  And before anyone asks, Date::Manip will never be translated to C
  275. (at least by me).  I write C because I have to.  I write perl because I
  276. like to.  Date::Manip is something I do because it interests me, not
  277. something I'm paid for.</P>
  278. <P>If you are going to be using the module in cases where performance is an
  279. important factor (parsing 10,000 dates from a database or started up in a
  280. CGI program being run by your web server 5,000 times a second), you might
  281. check out one of the other Date or Time modules in CPAN.  Date::DateCalc,
  282. Date::TimeDate, or Time::Time-modules might meet your needs.  In general,
  283. you do not need the flexibility offered by Date::Manip in these cases.  For
  284. example, if you are reading a database, all of the dates are written in
  285. exactly the same format.  It should be trivial to write a routine specific
  286. to this format.</P>
  287. <P>The biggest strength of Date::Manip is it's flexibility.  None of the other
  288. modules can do everything that Date::Manip can do.  I'm trying to build a
  289. library which can do _EVERY_ conceivable date/time manipulation that you'll
  290. run into in everyday life.  It is definitely intended to use in the terms
  291. of how you (not the computer) think of dates and times.</P>
  292. <P>If you are doing operations based more on how people think of dates and
  293. times, Date::Manip is almost certainly for you.  This includes parsing
  294. dates (including foreign language dates), calendar type operations,
  295. business dates and holidays, etc.</P>
  296. <P>
  297. <HR>
  298. <H1><A NAME="routines">ROUTINES</A></H1>
  299. <DL>
  300. <DT><STRONG><A NAME="item_ParseDate">ParseDate</A></STRONG><BR>
  301. <DD>
  302. <PRE>
  303.  $date=&ParseDate(\@args)
  304.  $date=&ParseDate($string)
  305.  $date=&ParseDate(\$string)</PRE>
  306. <P>This takes an array or a string containing a date and parses it.  When the
  307. date is included as an array (for example, the arguments to a program) the
  308. array should contain a valid date in the first one or more elements
  309. (elements after a valid date are ignored).  Elements containing a valid
  310. date are shifted from the array.  The largest possible number of elements
  311. which can be correctly interpreted as a valid date are always used.  If a
  312. string is entered rather than an array, that string is tested for a valid
  313. date.  The string is unmodified, even if passed in by reference.</P>
  314. <P>The real work is done in the ParseDateString routine.</P>
  315. <P>The ParseDate routine is primarily used to handle command line arguments.
  316. If you have a command where you want to enter a date as a command line
  317. arguement, you can use Date::Manip to make something like the following
  318. work:</P>
  319. <PRE>
  320.   mycommand -date Dec 10 1997 -arg -arg2</PRE>
  321. <P>No more reading man pages to find out what date format is required in a
  322. man page.</P>
  323. <P>Historical note: this is originally why the Date::Manip routines were
  324. written.  I was using a bunch of programs where dates and times were
  325. entered as command line options and I was getting highly annoyed at the
  326. many different (but not compatible) ways that they could be entered.</P>
  327. <DT><STRONG><A NAME="item_ParseDateString">ParseDateString</A></STRONG><BR>
  328. <DD>
  329. <PRE>
  330.  $date=&ParseDateString($string)</PRE>
  331. <P>This routine is called by ParseDate, but it may also be called directly
  332. to save some time.</P>
  333. <P>NOTE:  One of the most frequently asked questions that I have gotten
  334. is how to parse seconds since the epoch.  ParseDateString cannot simply
  335. parse a number as the seconds since the epoch (it conflicts with some
  336. ISO-8601 date formats).  There are two ways to get this information.
  337. First, you can do the following:</P>
  338. <PRE>
  339.     $secs = ...         # seconds since Jan 1, 1970  00:00:00 GMT
  340.     $date = &DateCalc("Jan 1, 1970  00:00:00 GMT",$secs);</PRE>
  341. <P>Second, you can call it directly as:</P>
  342. <PRE>
  343.     $date = &ParseDateString("epoch $secs");</PRE>
  344. <P>To go backwards, just use the ``%s'' format of UnixDate:</P>
  345. <PRE>
  346.     $secs = &UnixDate($date,"%s");</PRE>
  347. <P>A date actually includes 2 parts: date and time.  A time must include
  348. hours and minutes and can optionally include seconds, fractional seconds,
  349. an am/pm type string, and a timezone.  For example:</P>
  350. <PRE>
  351.      [at] HH:MN              [Zone]
  352.      [at] HH:MN         [am] [Zone]
  353.      [at] HH:MN:SS      [am] [Zone]
  354.      [at] HH:MN:SS.SSSS [am] [Zone]
  355.      [at] HH            am   [Zone]</PRE>
  356. <P>Hours can be written using 1 or 2 digits, but the single digit form may
  357. only be used when no ambiguity is introduced (i.e. when it is not
  358. immediately preceded by a digit).</P>
  359. <P>A time is usually entered in 24 hour mode, but 12 hour mode can be used
  360. as well if AM/PM are entered (AM can be entered as AM or A.M. or other
  361. variations depending on the language).</P>
  362. <P>Fractional seconds are also supported in parsing but the fractional part is
  363. discarded.</P>
  364. <P>Timezones always appear after the time.  A number of different forms are
  365. supported (see the section TIMEZONEs below).</P>
  366. <P>Spaces (or other separators such as ``/'' or ``-'') in the date are always
  367. optional when there is absolutely no ambiguity if they are not present.  If
  368. there is ambiguity, the date will either be unparsable, or (as is more
  369. often the case) get parsed differently than desired.</P>
  370. <P>Years can be entered as 2 or 4 digits, days and months as 1 or 2 digits.
  371. Both days and months must include 2 digits whenver they are immediately
  372. adjacent to another part of the date or time.</P>
  373. <P>Incidentally, the time is removed from the date before the date is parsed,
  374. so the time may appear before or after the date, or between any two parts
  375. of the date.</P>
  376. <P>Sections of the date may be separated by spaces or by other valid date
  377. separators (including ``/'', ``.'', and in some cases ``-'').  These separators
  378. are treated very flexibly (they are converted to spaces), so the following
  379. dates are all equivalent:</P>
  380. <PRE>
  381.    12/10/1965
  382.    12-10 / 1965
  383.    12 // 10 -. 1965</PRE>
  384. <P>In some cases, this may actually be TOO flexible, but no attempt is made
  385. to trap this.</P>
  386. <P>Valid date formats include the ISO 8601 formats:</P>
  387. <PRE>
  388.    YYYYMMDDHHMNSSFFFF
  389.    YYYYMMDDHHMNSS
  390.    YYYYMMDDHHMN
  391.    YYYYMMDDHH
  392.    YY-MMDDHHMNSSF...
  393.    YY-MMDDHHMNSS
  394.    YY-MMDDHHMN
  395.    YY-MMDDHH
  396.    YYYYMMDD
  397.    YYYYMM
  398.    YYYY
  399.    YY-MMDD
  400.    YY-MM
  401.    YY
  402.    YYYYwWWD      ex.  1965-W02-2
  403.    YYwWWD
  404.    YYYYDOY       ex.  1965-045
  405.    YYDOY</PRE>
  406. <P>In the above list, YYYY and YY signify 4 or 2 digit years, MM, DD, HH, MN, SS
  407. refer to two digit month, day, hour, minute, and second respectively.  F...
  408. refers to fractional seconds (any number of digits) which will be ignored.
  409. The last 4 formats can be explained by example:  1965-w02-2 refers to Tuesday
  410. (day 2) of the 2nd week of 1965.  1965-045 refers to the 45th day of 1965.</P>
  411. <P>In all cases, parts of the date may be separated by dashes ``-''.  If this is
  412. done, 1 or 2 digit forms of MM, DD, etc. may be used.  All dashes are optional
  413. except for those given in the table above (which MUST be included for that
  414. format to be correctly parsed).</P>
  415. <P>NOTE:  Even though not allowed in the standard, the timezone for an ISO-8601
  416. date is flexible and may be any of the timezones understood by Date::Manip.</P>
  417. <P>Additional date formats are available which may or may not be common including:</P>
  418. <PRE>
  419.   MM/DD  **
  420.   MM/DD/YY  **
  421.   MM/DD/YYYY  **</PRE>
  422. <PRE>
  423.   mmmDD       DDmmm                   mmmYYYY/DD
  424.   mmmDDYY     DDmmmYY     DDYYmmm     YYYYmmmDD
  425.   mmmDDYYYY   DDmmmYYYY   DDYYYYmmm   YYYY/DDmmm</PRE>
  426. <P>Where mmm refers to the name of a month.  All parts of the date can be
  427. separated by valid separators (space, ``/'', ``.'', or ``-'' as long as it
  428. doesn't conflict with an ISO 8601 format), but these are optional except
  429. for those given as a ``/'' in the list above.</P>
  430. <P>** Note that with these formats, Americans tend to write month first, but
  431. many other contries tend to write day first.  The latter behavior can be
  432. obtained by setting the config variable DateFormat to something other than
  433. ``US'' (see CUSTOMIZING DATE::MANIP below).</P>
  434. <P>Miscellaneous other allowed formats are:
  435.   which dofw in mmm in YY      ``first sunday in june 1996 at 14:00''
  436.   dofw week num YY             ``sunday week 22 1995''
  437.   which dofw YY                ``22nd sunday at noon''
  438.   dofw which week YY           ``sunday 22nd week in 1996''
  439.   next/last dofw               ``next friday at noon''
  440.   next/last week/month         ``next month''
  441.   in num days/weeks/months     ``in 3 weeks at 12:00''
  442.   num days/weeks/months later  ``3 weeks later''
  443.   num days/weeks/months ago    ``3 weeks ago''
  444.   dofw in num week             ``Friday in 2 weeks''
  445.   in num weeks dofw            ``in 2 weeks on friday''
  446.   dofw num week ago            ``Friday 2 weeks ago''
  447.   num week ago dofw            ``2 weeks ago friday''
  448.   last day in mmm in YY        ``last day of October''
  449.   dofw                         ``Friday'' (Friday of current week)
  450.   Nth                          ``12th'', ``1st'' (day of current month)
  451.   ecpoch SECS                  seconds since the epoch</P>
  452. <P>Note that certain words such as ``in'', ``at'', ``of'', etc. which commonly appear
  453. in a date or time are ignored.  Also, the year is alway optional.</P>
  454. <P>In addition, the following strings are recognized:
  455.   today
  456.   now       (synonym for today)
  457.   yesterday (exactly 24 hours ago)
  458.   tomorrow  (exactly 24 hours from now)
  459.   noon      (12:00:00)
  460.   midnight  (00:00:00)
  461. Other languages have similar (and in some cases additional) strings.</P>
  462. <P>Some things to note:</P>
  463. <P>All strings are case insensitive.  ``December'' and ``DEceMBer'' both work.</P>
  464. <P>When a part of the date is not given, defaults are used: year defaults
  465. to current year; hours, minutes, seconds to 00.</P>
  466. <P>The year may be entered as 2 or 4 digits.  If entered as 2 digits, it must
  467. first be converted to a 4 digit year.  There are a couple of ways to do
  468. this based on the value of the YYtoYYYY variable (described below).  The
  469. default behavior it to force the 2 digit year to be in the 100 year period
  470. CurrYear-89 to CurrYear+10.  So in 1996, the range is [1907 to 2006], so
  471. the 2 digit year 05 would refer to 2005 but 07 would refer to 1907.  See
  472. CUSTOMIZING DATE::MANIP below for information on YYtoYYYY for other methods.</P>
  473. <P>Dates are always checked to make sure they are valid.</P>
  474. <P>In all of the formats, the day of week (``Friday'') can be entered anywhere
  475. in the date and it will be checked for accuracy.  In other words,
  476.   ``Tue Jul 16 1996 13:17:00''
  477. will work but
  478.   ``Jul 16 1996 Wednesday 13:17:00''
  479. will not (because Jul 16, 1996 is Tuesday, not Wednesday).  Note that
  480. depending on where the weekday comes, it may give unexpected results when
  481. used in array context (with ParseDate).  For example, the date
  482. (``Jun'',``25'',``Sun'',``1990'') would return June 25 of the current year since
  483. Jun 25, 1990 is not Sunday.</P>
  484. <P>The times ``12:00 am'', ``12:00 pm'', and ``midnight'' are not well defined.  For
  485. good or bad, I use the following convention in Date::Manip:
  486.   midnight = 12:00am = 00:00:00
  487.   noon     = 12:00pm = 12:00:00
  488. and the day goes from 00:00:00 to 23:59:59.  In otherwords, midnight is the
  489. beginning of a day rather than the end of one.  The time 24:00:00 is NOT
  490. allowed (even though ISO 8601 allows it).</P>
  491. <P>The format of the date returned is YYYYMMDDHH:MM:SS.  The advantage of this
  492. time format is that two times can be compared using simple string comparisons
  493. to find out which is later.  Also, it is readily understood by a human.
  494. Alternate forms can be used if that is more conveniant.  See Date_Init below
  495. and the config variable Internal.</P>
  496. <P>NOTE: The format for the date is going to change at some point in the future
  497. to YYYYMMDDHH:MN:SS+HHMN (i.e. it'll include the timezone).  In order to
  498. maintain compatibility, you should use UnixDate to extract information from
  499. a date.</P>
  500. <DT><STRONG><A NAME="item_UnixDate">UnixDate</A></STRONG><BR>
  501. <DD>
  502. <PRE>
  503.  @date=&UnixDate($date,@format)
  504.  $date=&UnixDate($date,@format)</PRE>
  505. <P>This takes a date and a list of strings containing formats roughly
  506. identical to the format strings used by the UNIX <CODE>date(1)</CODE> command.  Each
  507. format is parsed and an array of strings corresponding to each format is
  508. returned.</P>
  509. <P>$date may be any string that can be parsed by ParseDateString.</P>
  510. <P>The format options are:</P>
  511. <PRE>
  512.  Year
  513.      %y     year                     - 00 to 99
  514.      %Y     year                     - 0001 to 9999
  515.      %G     year                     - 0001 to 9999 (see below)
  516.      %L     year                     - 0001 to 9999 (see below)
  517.  Month, Week
  518.      %m     month of year            - 01 to 12
  519.      %f     month of year            - " 1" to "12"
  520.      %b,%h  month abbreviation       - Jan to Dec
  521.      %B     month name               - January to December
  522.      %U     week of year, Sunday
  523.             as first day of week     - 01 to 53
  524.      %W     week of year, Monday
  525.             as first day of week     - 01 to 53
  526.  Day
  527.      %j     day of the year          - 001 to 366
  528.      %d     day of month             - 01 to 31</PRE>
  529. <PRE>
  530.      %e     day of month             - " 1" to "31"
  531.      %v     weekday abbreviation     - " S"," M"," T"," W","Th"," F","Sa"
  532.      %a     weekday abbreviation     - Sun to Sat
  533.      %A     weekday name             - Sunday to Saturday
  534.      %w     day of week              - 1 (Monday) to 7 (Sunday)
  535.      %E     day of month with suffix - 1st, 2nd, 3rd...
  536.  Hour
  537.      %H     hour                     - 00 to 23
  538.      %k     hour                     - " 0" to "23"
  539.      %i     hour                     - " 1" to "12"
  540.      %I     hour                     - 01 to 12
  541.      %p     AM or PM
  542.  Minute, Second, Timezone
  543.      %M     minute                   - 00 to 59
  544.      %S     second                   - 00 to 59
  545.      %s     seconds from 1/1/1970 GMT- negative if before 1/1/1970
  546.      %o     seconds from Jan 1, 1970
  547.             in the current time zone
  548.      %z,%Z  timezone (3 characters)  - "EDT"
  549.  Date, Time
  550.      %c     %a %b %e %H:%M:%S %Y     - Fri Apr 28 17:23:15 1995
  551.      %C,%u  %a %b %e %H:%M:%S %z %Y  - Fri Apr 28 17:25:57 EDT 1995
  552.      %g     %a, %d %b %Y %H:%M:%S %z - Fri, 28 Apr 1995 17:23:15 EDT
  553.      %D,%x  %m/%d/%y                 - 04/28/95
  554.      %l     date in ls(1) format
  555.               %b %e $H:$M            - Apr 28 17:23  (if within 6 months)
  556.               %b %e  %Y              - Apr 28  1993  (otherwise)
  557.      %r     %I:%M:%S %p              - 05:39:55 PM
  558.      %R     %H:%M                    - 17:40
  559.      %T,%X  %H:%M:%S                 - 17:40:58
  560.      %V     %m%d%H%M%y               - 0428174095
  561.      %Q     %Y%m%d                   - 19961025
  562.      %q     %Y%m%d%H%M%S             - 19961025174058
  563.      %P     %Y%m%d%H%M%S             - 1996102517:40:58
  564.      %F     %A, %B %e, %Y            - Sunday, January  1, 1996
  565.      %J     %G-W%W-%w                - 1997-W02-2
  566.      %K     %Y-%j                    - 1997-045
  567.  Other formats
  568.      %n     insert a newline character
  569.      %t     insert a tab character
  570.      %%     insert a `%' character
  571.      %+     insert a `+' character
  572.  The following formats are currently unused but may be used in the future:
  573.      NO 1234567890 !@#$^&*()_|-=\`[];',./~{}:<>?
  574.  They currently insert the character following the %, but may (and probably
  575.  will) change in the future as new formats are added.</PRE>
  576. <P>If a lone percent is the final character in a format, it is ignored.</P>
  577. <P>Note that the ls format (%l) applies to date within the past OR future 6
  578. months!</P>
  579. <P>The formats %U and %W return a week from 01 to 53.  Because days at the
  580. beginning or end of the year may actually appear in a week in the previous
  581. or next year, the %L and %G formats were added to handle this case.  %L and %G
  582. give the year of the week for %U and %W respectively.  So Jan 1, 1993 is
  583. written in ISO-8601 format as 1992-W53-5.  In this case, %Y is 1993, but %G
  584. is 1992 and %W is 53.  %L and %U are similar for weeks starting with Sunday.
  585. %J returns the full ISO-8601 format.</P>
  586. <P>Note that the %s format was introduced in version 5.07.  Prior to that,
  587. %s referred to the seconds since 1/1/70.  This was moved to %o in 5.07.</P>
  588. <P>The formats used in this routine were originally based on date.pl (version
  589. 3.2) by Terry McGonigal, as well as a couple taken from different versions
  590. of the date(1).  Also, several have been added which are unique to
  591. Date::Manip.</P>
  592. <DT><STRONG><A NAME="item_ParseDateDelta">ParseDateDelta</A></STRONG><BR>
  593. <DD>
  594. <PRE>
  595.  $delta=&ParseDateDelta(\@args)
  596.  $delta=&ParseDateDelta($string)
  597.  $delta=&ParseDateDelta(\$string)</PRE>
  598. <P>This takes an array and shifts a valid delta date (an amount of time)
  599. from the array.  Recognized deltas are of the form:
  600.   +Yy +Mm +Ww +Dd +Hh +MNmn +Ss
  601.       examples:
  602.          +4 hours +3mn -2second
  603.          + 4 hr 3 minutes -2
  604.          4 hour + 3 min -2 s
  605.   +Y:+M:+W:+D:+H:+MN:+S
  606.       examples:
  607.          0:0:0:0:4:3:-2
  608.          +4:3:-2
  609.   mixed format
  610.       examples:
  611.          4 hour 3:-2</P>
  612. <P>A field in the format +Yy is a sign, a number, and a string specifying
  613. the type of field.  The sign is ``+'', ``-'', or absent (defaults to the
  614. next larger element).  The valid strings specifying the field type
  615. are:
  616.    y:  y, yr, year, years
  617.    m:  m, mon, month, months
  618.    w:  w, wk, ws, wks, week, weeks
  619.    d:  d, day, days
  620.    h:  h, hr, hour, hours
  621.    mn: mn, min, minute, minutes
  622.    s:  s, sec, second, seconds</P>
  623. <P>Also, the ``s'' string may be omitted.  The sign, number, and string may
  624. all be separated from each other by any number of whitespaces.</P>
  625. <P>In the date, all fields must be given in the order: Y M W D H MN S.  Any
  626. number of them may be omitted provided the rest remain in the correct
  627. order.  In the 2nd (colon) format, from 2 to 7 of the fields may be given.
  628. For example +D:+H:+MN:+S may be given to specify only four of the fields.
  629. In any case, both the MN and S field may be present.  No spaces may be
  630. present in the colon format.</P>
  631. <P>Deltas may also be given as a combination of the two formats.  For example,
  632. the following is valid: +Yy +D:+H:+MN:+S.  Again, all fields must be given
  633. in the correct order.</P>
  634. <P>The word ``in'' may be prepended to the delta (``in 5 years'') and the word
  635. ``ago'' may be appended (``6 months ago'').  The ``in'' is completely ignored.
  636. The ``ago'' has the affect of reversing all signs that appear in front of the
  637. components of the delta.  I.e. ``-12 yr 6 mon ago'' is identical to ``+12yr
  638. +6mon'' (don't forget that there is an impled minus sign in front of the 6
  639. because when no sign is explicitely given, it carries the previously
  640. entered sign).</P>
  641. <P>One thing is worth noting.  The year/month and day/hour/min/sec parts are
  642. returned in a ``normalized'' form.  That is, the signs are adjusted so as to
  643. be all positive or all negative.  For example, ``+ 2 day - 2hour'' does not
  644. return ``0:0:0:2:-2:0:0''.  It returns ``+0:0:0:1:22:0:0'' (1 day 22 hours
  645. which is equivalent).  I find (and I think most others agree) that this is
  646. a more useful form.</P>
  647. <P>Since the year/month and day/hour/min/sec parts must be normalized
  648. separately there is the possibility that the sign of the two parts will be
  649. different.  So, the delta ``+ 2years -10 months - 2 days + 2 hours'' produces
  650. the delta ``+1:2:-0:1:22:0:0''.</P>
  651. <P>It is possible to include a sign for all elements that is output.  See the
  652. configuration variable DeltaSigns below.</P>
  653. <P>NOTE: The internal format of the delta changed in version 5.30 from
  654. Y:M:D:H:MN:S to Y:M:W:D:H:MN:S .  Also, it is going to change again at some
  655. point in the future to Y:M:W:D:H:MN:S*FLAGS .  Use the routine Delta_Format
  656. to extract information rather than parsing it yourself.</P>
  657. <DT><STRONG><A NAME="item_Delta_Format">Delta_Format</A></STRONG><BR>
  658. <DD>
  659. <PRE>
  660.  @str=&Delta_Format($delta,$dec,@format)
  661.  $str=&Delta_Format($delta,$dec,@format)</PRE>
  662. <P>This is similar to the UnixDate routine except that it extracts information
  663. from a delta.  Unlike the UnixDate routine, most of the formats are 2
  664. characters instead of 1.</P>
  665. <P>NOTE: For the time being, Delta_Format only understands the ``exact'' parts
  666. of a delta (Y/M) and (W/D/H/MN/S).  There is currently no ``mixing'' between
  667. the two parts.</P>
  668. <P>Formats currently understood are:</P>
  669. <PRE>
  670.    %Xv     : the value of the field named X
  671.    %Xd     : the value of the field X, and all smaller fields, expressed in
  672.              units of X
  673.    %Xh     : the value of field X, and all larger fields, expressed in units
  674.              of X
  675.    %Xt     : the value of all fields expressed in units of X</PRE>
  676. <PRE>
  677.    X is one of y,M,w,d,h,m,s (case sensitive).</PRE>
  678. <PRE>
  679.    %%      : returns a "%"</PRE>
  680. <P>So, the format ``%hd'' means the values of H, MN, and S expressed in hours.
  681. So for the delta ``0:0:0:0:2:30:0'', this format returns 2.5.  Similarily, the
  682. format ``%yd'' means the value (in years) of both the Y and M fields.</P>
  683. <P>The format ``%hh'' returns the value of W, D, and H expressed in hours.</P>
  684. <P>If $dec is non-zero, the %Xd and %Xt values are formatted to contain $dec
  685. decimal places.</P>
  686. <DT><STRONG><A NAME="item_ParseRecur">ParseRecur</A></STRONG><BR>
  687. <DD>
  688. <PRE>
  689.  $recur=&ParseRecur($string [,$base,$date0,$date1,$flags])
  690.  @dates=&ParseRecur($string [,$base,$date0,$date1,$flags])</PRE>
  691. <P>A recurrence refers to a recurring event.  A fully specified recurrence
  692. requires (in most cases) 4 items: a recur description (describing the
  693. frequency of the event), a base date (a date when the event occurred and
  694. which other occurences are based on), and a start and end date.  There may
  695. be one or more flags included which modify the behavior of the recur
  696. description.  It is written as:</P>
  697. <PRE>
  698.   recur*flags*base*date0*date1</PRE>
  699. <P>Here, base, date0, and date1 are any strings (which must not contain any
  700. asterixes) which can be parsed by ParseDate.  flags is a comma separated
  701. list of flags (described below), and recur is a string describing a
  702. recurring event.</P>
  703. <P>If called in scalar context, it returns a string containing a fully
  704. specified recurrence (or as much of it as can be determined with
  705. unspecified fields left blank).  In list context, it returns a list of all
  706. dates referred to by a recurrence if enough information is given in the
  707. recurrence.  All dates returned are in the range:</P>
  708. <PRE>
  709.   date0 <= date < date1</PRE>
  710. <P>The argument $string can contain any of the parts of a full recurrence.
  711. For example:</P>
  712. <PRE>
  713.   recur
  714.   recur*flags
  715.   recur**base*date0*date1</PRE>
  716. <P>The only part which is required is the recur description.  Any values
  717. contained in $string are overridden by values passed in as parameters to
  718. ParseRecur.</P>
  719. <P>A recur description is a string of the format Y:M:W:D:H:MN:S .  Exactly one
  720. of the colons may optionally be replaced by an asterix, or an asterix may
  721. be prepended to the string.</P>
  722. <P>Any value ``N'' to the left of the asterix refers to the ``Nth'' one.  Any
  723. value to the right of the asterix refers to a value as it appears on a
  724. calendar.  These can be a value or a comma separated list of values or
  725. ranges.  In a few cases, negative values are appropriate.</P>
  726. <P>This is best illustrated by example.</P>
  727. <PRE>
  728.   0:0:2:1:0:0:0        every 2 weeks and 1 day
  729.   0:0:0:0:5:30:0       every 5 hours and 30 minutes
  730.   0:0:0:2*12:30:0      every 2 days at 12:30 (each day)
  731.   3*1:0:2:12:0:0       every 3 years on Jan 2 at noon
  732.   0:1*0:2:12,14:0:0    2nd of every month at 12:00 and 14:00
  733.   1:0:0*45:0:0:0       45th day of every year
  734.   0:1*4:2:0:0:0        4th tuesday (day 2) of every month
  735.   0:1*-1:2:0:0:0       last tuesday of every month
  736.   0:1:0*-2:0:0:0       2nd to last day of every month
  737.   0:0:3*2:0:0:0        every 3rd tuesday (every 3 weeks on 2nd day of week)
  738.   1:0*12:2:0:0:0       tuesday of the 12th week of each year
  739.   *1990-1995:12:0:1:0:0:0
  740.                        Dec 1 in 1990 through 1995</PRE>
  741. <PRE>
  742.   0:1*2:0:0:0:0        the start of the 2nd week of every month (see Note 2)
  743.   1*1:2:0:0:0:0        the start of the 2nd week in January each year (Note 2)</PRE>
  744. <P>Note 1: There is no way to express the following with a single recurrence:</P>
  745. <PRE>
  746.   every day at 12:30 and 1:00</PRE>
  747. <P>Note 2: A recurrence specifying the week of a month is NOT clearly defined
  748. in common usage.  What is the 1st week in a month?  The behavior (with
  749. respect to this module) is well defined (using some of the flags below),
  750. but in common usage, this is so ambiguous that this form should probably
  751. never be used.</P>
  752. <P>Note 3: Depending on whether M and W are 0 or nonzero, D means different
  753. things.  This is given in the following table.</P>
  754. <PRE>
  755.   M  W  D (when right of an asterix) refers to
  756.   -  -  -------------------------------------------
  757.   0  0  day of year (1-366)
  758.   M  0  day of month (1-31)
  759.   0  W  day of week (1-7),  W refers to the week of year
  760.   M  W  the Wth (1-5 or -1 to -5) occurence of Dth (1-7) day of week in month</PRE>
  761. <P>There are a small handful of English strings which can be parsed in place
  762. of a numerical recur description.  These include:</P>
  763. <PRE>
  764.   every 2nd day [in 1997]
  765.   every 2nd day in June [1997]
  766.   2nd day of every month [in 1997]
  767.   2nd tuesday of every month [in 1997]
  768.   last tuesday of every month [in 1997]
  769.   every 2nd tuesday [in 1997]
  770.   every 2nd tuesday in June [1997]</PRE>
  771. <P>Each of these set base, date0, and date1 to a default value (the current
  772. year with Jan 1 being the base date is the default if the year and month
  773. are missing).</P>
  774. <P>Flags are not yet implemented, but will allow even more complex behaviors
  775. to be easily defined.</P>
  776. <DT><STRONG><A NAME="item_DateCalc">DateCalc</A></STRONG><BR>
  777. <DD>
  778. <PRE>
  779.  $d=&DateCalc($d1,$d2 [,\$err] [,$mode])</PRE>
  780. <P>This takes two dates, deltas, or one of each and performs the appropriate
  781. calculation with them.  Dates must be a string that can be parsed by
  782. &ParseDateString.  Deltas must be a string that can be parsed by
  783. &ParseDateDelta.  Two deltas add together to form a third delta.  A date
  784. and a delta returns a 2nd date.  Two dates return a delta (the difference
  785. between the two dates).</P>
  786. <P>Note that in many cases, it is somewhat ambiguous what the delta actually
  787. refers to.  Although it is ALWAYS known how many months in a year, hours in
  788. a day, etc., it is NOT known how many days form a month.  As a result, the
  789. part of the delta containing month/year and the part with sec/min/hr/day
  790. must be treated separately.  For example, ``Mar 31, 12:00:00'' plus a delta
  791. of 1month 2days would yield ``May 2 12:00:00''.  The year/month is first
  792. handled while keeping the same date.  Mar 31 plus one month is Apr 31 (but
  793. since Apr only has 30 days, it becomes Apr 30).  Apr 30 + 2 days is May 2.
  794. As a result, in the case where two dates are entered, the resulting delta
  795. can take on two different forms.  By default ($mode=0), an absolutely
  796. correct delta (ignoring daylight savings time) is returned in days, hours,
  797. minutes, and seconds.</P>
  798. <P>If $mode is 1, the math is done using an approximate mode where a delta is
  799. returned using years and months as well.  The year and month part is
  800. calculated first followed by the rest.  For example, the two dates ``Mar 12
  801. 1995'' and ``Apr 13 1995'' would have an exact delta of ``31 days'' but in the
  802. approximate mode, it would be returned as ``1 month 1 day''.  Also, ``Mar 31''
  803. and ``Apr 30'' would have deltas of ``30 days'' or ``1 month'' (since Apr 31
  804. doesn't exist, it drops down to Apr 30).  Approximate mode is a more human
  805. way of looking at things (you'd say 1 month and 2 days more often then 33
  806. days), but it is less meaningful in terms of absolute time.  In approximate
  807. mode $d1 and $d2 must be dates.  If either or both is a delta, the
  808. calculation is done in exact mode.</P>
  809. <P>If $mode is 2, a business mode is used.  That is, the calculation is done
  810. using business days, ignoring holidays, weekends, etc.  In order to
  811. correctly use this mode, a config file must exist which contains the
  812. section defining holidays (see documentation on the config file below).
  813. The config file can also define the work week and the hours of the work
  814. day, so it is possible to have different config files for different
  815. businesses.</P>
  816. <P>For example, if a config file defines the workday as 08:00 to 18:00, a
  817. workweek consisting of Mon-Sat, and the standard (American) holidays, then
  818. from Tuesday at 12:00 to the following Monday at 14:00 is 5 days and 2
  819. hours.  If the ``end'' of the day is reached in a calculation, it
  820. autmoatically switches to the next day.  So, Tuesday at 12:00 plus 6 hours
  821. is Wednesday at 08:00 (provided Wed is not a holiday).  Also, a date that
  822. is not during a workday automatically becomes the start of the next
  823. workday.  So, Sunday 12:00 and Monday at 03:00 both automatically becomes
  824. Monday at 08:00 (provided Monday is not a holiday).  In business mode, any
  825. combination of date and delta may be entered, but a delta should not
  826. contain a year or month field (weeks are fine though).</P>
  827. <P>See below for some additional comments about business mode calculations.</P>
  828. <P>Any other non-nil value of $mode is treated as $mode=1 (approximate mode).</P>
  829. <P>The mode can be automatically set in the dates/deltas passed by including a
  830. key word somewhere in it.  For example, in English, if the word
  831. ``approximately'' is found in either of the date/delta arguments, approximate
  832. mode is forced.  Likewise, if the word ``business'' or ``exactly'' appears,
  833. business/exact mode is forced (and $mode is ignored).  So, the two
  834. following are equivalent:</P>
  835. <PRE>
  836.    $date=&DateCalc("today","+ 2 business days",\$err);
  837.    $date=&DateCalc("today","+ 2 days",\$err,2);</PRE>
  838. <P>Note that if the keyword method is used instead of passing in $mode, it is
  839. important that the keyword actually appear in the argument passed in to
  840. DateCalc.  The following will NOT work:</P>
  841. <PRE>
  842.    $delta=&ParseDateDelta("+ 2 business days");
  843.    $today=&ParseDate("today");
  844.    $date=&DateCalc($today,$delta,\$err);</PRE>
  845. <P>because the mode keyword is removed from a date/delta by the parse routines,
  846. and the mode is reset each time a parse routine is called.  Since DateCalc
  847. parses both of its arguments, whatever mode was previously set is ignored.</P>
  848. <P>If \$err is passed in, it is set to:
  849.    1 is returned if $d1 is not a delta or date
  850.    2 is returned if $d2 is not a delta or date
  851.    3 is returned if the date is outside the years 1000 to 9999
  852. This argument is optional, but if included, it must come before $mode.</P>
  853. <P>Nothing is returned if an error occurs.</P>
  854. <P>When a delta is returned, the signs such that it is strictly positive or
  855. strictly negative (``1 day - 2 hours'' would never be returned for example).
  856. The only time when this cannot be enforced is when two deltas with a
  857. year/month component are entered.  In this case, only the signs on the
  858. day/hour/min/sec part are standardized.</P>
  859. <DT><STRONG><A NAME="item_Date_SetTime">Date_SetTime</A></STRONG><BR>
  860. <DD>
  861. <PRE>
  862.  $date=&Date_SetTime($date,$hr,$min,$sec)
  863.  $date=&Date_SetTime($date,$time)</PRE>
  864. <P>This takes a date (any string that may be parsed by ParseDateString) and
  865. sets the time in that date.  For example, to get the time for 7:30
  866. tomorrow, use the lines:</P>
  867. <PRE>
  868.    $date=&ParseDate("tomorrow")
  869.    $date=&Date_SetTime($date,"7:30")</PRE>
  870. <P>Note that in this routine (as well as the other routines below which use
  871. a time argument), no real parsing is done on the times.  As a result,</P>
  872. <PRE>
  873.    $date=&Date_SetTime($date,"13:30")</PRE>
  874. <P>works, but</P>
  875. <PRE>
  876.    $date=&Date_SetTime($date,"1:30 PM")</PRE>
  877. <P>doesn't.</P>
  878. <DT><STRONG><A NAME="item_Date_SetDateField">Date_SetDateField</A></STRONG><BR>
  879. <DD>
  880. <PRE>
  881.  $date=&Date_SetDateField($date,$field,$val [,$nocheck])</PRE>
  882. <P>This takes a date and sets one of it's fields to a new value.  $field is
  883. any of the strings ``y'', ``m'', ``d'', ``h'', ``mn'', ``s'' (case insensitive) and
  884. $val is the new value.</P>
  885. <P>If $nocheck is non-zero, no check is made as to the validity of the date.</P>
  886. <DT><STRONG><A NAME="item_Date_GetPrev">Date_GetPrev</A></STRONG><BR>
  887. <DD>
  888. <PRE>
  889.  $date=&Date_GetPrev($date,$dow, $curr [,$hr,$min,$sec])
  890.  $date=&Date_GetPrev($date,$dow, $curr [,$time])
  891.  $date=&Date_GetPrev($date,undef,$curr,$hr,$min,$sec)
  892.  $date=&Date_GetPrev($date,undef,$curr,$time)</PRE>
  893. <P>This takes a date (any string that may be parsed by ParseDateString) and finds
  894. the previous occurence of either a day of the week, or a certain time of day.</P>
  895. <P>If $dow is defined, the previous occurence of the day of week is returned.
  896. $dow may either be a string (such as ``Fri'' or ``Friday'') or a number
  897. (between 1 and 7).  The date of the previous $dow is returned.  If $date
  898. falls on this day of week, the date returned will be $date (if $curr is
  899. non-zero) or a week earlier (if $curr is 0).  If a time is passed in
  900. (either as separate hours, minutes, seconds or as a time in HH:MM:SS or
  901. HH:MM format), the time on this date is set to it.  The following examples
  902. should illustrate the use of Date_GetPrev:</P>
  903. <PRE>
  904.     date                   dow    curr  time            returns
  905.     Fri Nov 22 18:15:00    Thu    0     12:30           Thu Nov 21 12:30:00
  906.     Fri Nov 22 18:15:00    Fri    0     12:30           Fri Nov 15 12:30:00
  907.     Fri Nov 22 18:15:00    Fri    1     12:30           Fri Nov 22 12:30:00</PRE>
  908. <P>If $dow is undefined, then a time must be entered, and the date returned is
  909. the previous occurence of this time.  If $curr is non-zero, the current
  910. time is returned if it matches the criteria passed in.  In other words, the
  911. time returned is the last time that a digital clock (in 24 hour mode) would
  912. have displayed the time you passed in.  If you define hours, minutes and
  913. seconds default to 0 and you might jump back as much as an entire day.  If
  914. hours are undefined, you are looking for the last time the minutes/seconds
  915. appeared on the digital clock, so at most, the time will jump back one hour.</P>
  916. <PRE>
  917.     date               curr  hr     min    sec      returns
  918.     Nov 22 18:15:00    0/1   18     undef  undef    Nov 22 18:00:00
  919.     Nov 22 18:15:00    0/1   18     30     0        Nov 21 18:30:00
  920.     Nov 22 18:15:00    0     18     15     undef    Nov 21 18:15:00
  921.     Nov 22 18:15:00    1     18     15     undef    Nov 22 18:15:00
  922.     Nov 22 18:15:00    0     undef  15     undef    Nov 22 17:15:00
  923.     Nov 22 18:15:00    1     undef  15     undef    Nov 22 18:15:00</PRE>
  924. <DT><STRONG><A NAME="item_Date_GetNext">Date_GetNext</A></STRONG><BR>
  925. <DD>
  926. <PRE>
  927.  $date=&Date_GetNext($date,$dow, $curr [,$hr,$min,$sec])
  928.  $date=&Date_GetNext($date,$dow, $curr [,$time])
  929.  $date=&Date_GetNext($date,undef,$curr,$hr,$min,$sec)
  930.  $date=&Date_GetNext($date,undef,$curr,$time)</PRE>
  931. <P>Similar to Date_GetPrev.</P>
  932. <DT><STRONG><A NAME="item_Date_DayOfWeek">Date_DayOfWeek</A></STRONG><BR>
  933. <DD>
  934. <PRE>
  935.  $day=&Date_DayOfWeek($m,$d,$y);</PRE>
  936. <P>Returns the day of the week (0 for Sunday, 6 for Saturday).  Dec 31, 0999
  937. was Tuesday.</P>
  938. <P>All arguments must be numeric.</P>
  939. <DT><STRONG><A NAME="item_Date_SecsSince1970">Date_SecsSince1970</A></STRONG><BR>
  940. <DD>
  941. <PRE>
  942.  $secs=&Date_SecsSince1970($m,$d,$y,$h,$mn,$s)</PRE>
  943. <P>Returns the number of seconds since Jan 1, 1970 00:00 (negative if date is
  944. earlier).</P>
  945. <P>All arguments must be numeric.</P>
  946. <DT><STRONG><A NAME="item_Date_SecsSince1970GMT">Date_SecsSince1970GMT</A></STRONG><BR>
  947. <DD>
  948. <PRE>
  949.  $secs=&Date_SecsSince1970GMT($m,$d,$y,$h,$mn,$s)</PRE>
  950. <P>Returns the number of seconds since Jan 1, 1970 00:00 GMT (negative if date
  951. is earlier).  If CurrTZ is ``IGNORE'', the number will be identical to
  952. Date_SecsSince1970 (i.e. the date given will be treated as being in GMT).</P>
  953. <P>All arguments must be numeric.</P>
  954. <DT><STRONG><A NAME="item_Date_DaysSince999">Date_DaysSince999</A></STRONG><BR>
  955. <DD>
  956. <PRE>
  957.  $days=&Date_DaysSince999($m,$d,$y)</PRE>
  958. <P>Returns the number of days since Dec 31, 0999.</P>
  959. <P>All arguments must be numeric.</P>
  960. <DT><STRONG><A NAME="item_Date_DayOfYear">Date_DayOfYear</A></STRONG><BR>
  961. <DD>
  962. <PRE>
  963.  $day=&Date_DayOfYear($m,$d,$y);</PRE>
  964. <P>Returns the day of the year (001 to 366)</P>
  965. <P>All arguments must be numeric.</P>
  966. <DT><STRONG><A NAME="item_Date_NthDayOfYear">Date_NthDayOfYear</A></STRONG><BR>
  967. <DD>
  968. <PRE>
  969.  ($y,$m,$d,$h,$mn,$s)=&Date_NthDayOfYear($y,$n);</PRE>
  970. <P>Returns the year, month, day, hour, minutes, and decimal seconds given
  971. a floating point day of the year.</P>
  972. <P>All arguments must be numeric.  $n must be greater than or equal to 1
  973. and less than 366 on non-leap years and 367 on leap years.</P>
  974. <DT><STRONG><A NAME="item_Date_DaysInYear">Date_DaysInYear</A></STRONG><BR>
  975. <DD>
  976. <PRE>
  977.  $days=&Date_DaysInYear($y);</PRE>
  978. <P>Returns the number of days in the year (365 or 366)</P>
  979. <DT><STRONG><A NAME="item_Date_DaysInMonth">Date_DaysInMonth</A></STRONG><BR>
  980. <DD>
  981. <PRE>
  982.  $days=&Date_DaysInMonth($m,$y);</PRE>
  983. <P>Returns the number of days in the month.</P>
  984. <DT><STRONG><A NAME="item_Date_WeekOfYear">Date_WeekOfYear</A></STRONG><BR>
  985. <DD>
  986. <PRE>
  987.  $wkno=&Date_WeekOfYear($m,$d,$y,$first);</PRE>
  988. <P>Figure out week number.  $first is the first day of the week which is
  989. usually 1 (Monday) or 7 (Sunday), but could be any number between 1 and 7
  990. in practice.</P>
  991. <P>All arguments must be numeric.</P>
  992. <P>NOTE: This routine should only be called in rare cases.  Use UnixDate with
  993. the %W, %U, %J, %L formats instead.  This routine returns a week between 0
  994. and 53 which must then be ``fixed'' to get into the ISO-8601 weeks from 1 to
  995. 53.  A date which returns a week of 0 actually belongs to the last week of
  996. the previous year.  A date which returns a week of 53 may belong to the
  997. first week of the next year.</P>
  998. <DT><STRONG><A NAME="item_Date_LeapYear">Date_LeapYear</A></STRONG><BR>
  999. <DD>
  1000. <PRE>
  1001.  $flag=&Date_LeapYear($y);</PRE>
  1002. <P>Returns 1 if the argument is a leap year
  1003. Written by David Muir Sharnoff <<A HREF="mailto:muir@idiom.com">muir@idiom.com</A>></P>
  1004. <DT><STRONG><A NAME="item_Date_DaySuffix">Date_DaySuffix</A></STRONG><BR>
  1005. <DD>
  1006. <PRE>
  1007.  $day=&Date_DaySuffix($d);</PRE>
  1008. <P>Add `st', `nd', `rd', `th' to a date (ie 1st, 22nd, 29th).  Works for
  1009. international dates.</P>
  1010. <DT><STRONG><A NAME="item_Date_TimeZone">Date_TimeZone</A></STRONG><BR>
  1011. <DD>
  1012. <PRE>
  1013.  $tz=&Date_TimeZone</PRE>
  1014. <P>This returns a timezone.  It looks in the following places for a timezone
  1015. in the following order:</P>
  1016. <PRE>
  1017.    $ENV{TZ}
  1018.    $main::TZ
  1019.    unix 'date' command
  1020.    /etc/TIMEZONE</PRE>
  1021. <P>If it's not found in any of those places, an error occurs:</P>
  1022. <PRE>
  1023.    ERROR: Date::Manip unable to determine TimeZone.</PRE>
  1024. <P>Date_TimeZone is able to read zones of the format PST8PDT (see TIMEZONES
  1025. documentation below).</P>
  1026. <DT><STRONG><A NAME="item_Date_ConvTZ">Date_ConvTZ</A></STRONG><BR>
  1027. <DD>
  1028. <PRE>
  1029.  $date=&Date_ConvTZ($date)
  1030.  $date=&Date_ConvTZ($date,$from)
  1031.  $date=&Date_ConvTZ($date,(),$to)
  1032.  $date=&Date_ConvTZ($date,$from,$to)</PRE>
  1033. <P>This converts a date (which MUST be in the format returned by ParseDate)
  1034. from one timezone to another.</P>
  1035. <P>If it is called with no arguments, the date is converted from the local
  1036. timezone to the timezone specified by the config variable ConvTZ (see
  1037. documentation on ConvTZ below).  If ConvTZ is set to ``IGNORE'', no
  1038. conversion is done.</P>
  1039. <P>If called with $from but no $to, the timezone is converted from the
  1040. timezone in $from to ConvTZ (of TZ if ConvTZ is not set).  Again, no
  1041. conversion is done if ConvTZ is set to ``IGNORE''.</P>
  1042. <P>If called with $to but no $from, $from defaults to ConvTZ (if set) or the
  1043. local timezone otherwise.  Although this does not seem immediately obvious,
  1044. it actually makes sense.  By default, all dates that are parsed are
  1045. converted to ConvTZ, so most of the dates being worked with will be stored
  1046. in that timezone.</P>
  1047. <P>If Date_ConvTZ is called with both $from and $to, the date is converted
  1048. from the timezone $from to $to.</P>
  1049. <P>NOTE: As in all other cases, the $date returned from Date_ConvTZ has no
  1050. timezone information included as part of it, so calling UnixDate with the
  1051. ``%z'' format will return the timezone that Date::Manip is working in
  1052. (usually the local timezone).</P>
  1053. <P>Example:  To convert 2/2/96 noon PST to CST (regardless of what timezone
  1054. you are in, do the following:</P>
  1055. <PRE>
  1056.  $date=&ParseDate("2/2/96 noon");
  1057.  $date=&Date_ConvTZ($date,"PST","CST");</PRE>
  1058. <P>Both timezones MUST be in one of the formst listed below in the section
  1059. TIMEZONES.</P>
  1060. <DT><STRONG><A NAME="item_Date_Init">Date_Init</A></STRONG><BR>
  1061. <DD>
  1062. <PRE>
  1063.  $flag=&Date_Init();
  1064.  $flag=&Date_Init("VAR=VAL","VAR=VAL",...);</PRE>
  1065. <P>Normally, it is not necessary to explicitely call Date_Init.  The first
  1066. time any of the other routines are called, Date_Init will be called to set
  1067. everything up.  If for some reason you want to change the configuration of
  1068. Date::Manip, you can pass the appropriate string or strings into Date_Init
  1069. to reinitizize things.</P>
  1070. <P>The strings to pass in are of the form ``VAR=VAL''.  Any number may be
  1071. included and they can come in any order.  VAR may be any configuration
  1072. variable.  A list of all configuaration variables is given in the section
  1073. CUSTOMIZING DATE::MANIP below.  VAL is any allowed value for that variable.
  1074. For example, to switch from English to French and use non-US format (so
  1075. that 12/10 is Oct 12), do the following:</P>
  1076. <PRE>
  1077.   &Date_Init("Language=French","DateFormat=nonUS");</PRE>
  1078. <P>Note that the usage of Date_Init changed with version 5.07.  The old
  1079. calling convention is allowed but is depreciated.</P>
  1080. <P>If you change timezones in the middle of using Date::Manip, comparing dates
  1081. from before the switch to dates from after the switch will produce incorrect
  1082. results.</P>
  1083. <DT><STRONG><A NAME="item_Date_IsWorkDay">Date_IsWorkDay</A></STRONG><BR>
  1084. <DD>
  1085. <PRE>
  1086.   $flag=&Date_IsWorkDay($date [,$flag]);</PRE>
  1087. <P>This returns 1 if $date is a work day.  If $flag is non-zero, the time is
  1088. checked to see if it falls within work hours.</P>
  1089. <DT><STRONG><A NAME="item_Date_NextWorkDay">Date_NextWorkDay</A></STRONG><BR>
  1090. <DD>
  1091. <PRE>
  1092.   $date=&Date_NextWorkDay($date,$off [,$time]);</PRE>
  1093. <P>Finds the day $off work days from now.  If $time is passed in, we must also
  1094. take into account the time of day.</P>
  1095. <P>If $time is not passed in, day 0 is today (if today is a workday) or the
  1096. next work day if it isn't.  In any case, the time of day is unaffected.</P>
  1097. <P>If $time is passed in, day 0 is now (if now is part of a workday) or the
  1098. start of the very next work day.</P>
  1099. <DT><STRONG><A NAME="item_Date_PrevWorkDay">Date_PrevWorkDay</A></STRONG><BR>
  1100. <DD>
  1101. <PRE>
  1102.   $date=&Date_PrevWorkDay($date,$off [,$time]);</PRE>
  1103. <P>Similar to Date_NextWorkDay.</P>
  1104. <DT><STRONG><A NAME="item_Date_NearestWorkDay">Date_NearestWorkDay</A></STRONG><BR>
  1105. <DD>
  1106. <PRE>
  1107.   $date=&Date_NearestWorkDay($date [,$tomorrowfirst]);</PRE>
  1108. <P>This looks for the work day nearest to $date.  If $date is a work day, it
  1109. is returned.  Otherwise, it will look forward or backwards in time 1 day
  1110. at a time until a work day is found.  If $tomorrowfirst is non-zero (or if
  1111. it is omitted and the config variable TomorrowFirst is non-zero), we look
  1112. to the future first.  Otherwise, we look in the past first.  In otherwords,
  1113. in a normal week, if $date is Wednesday, $date is returned.  If $date is
  1114. Saturday, Friday is returned.  If $date is Sunday, Monday is returned.  If
  1115. Wednesday is a holiday, Thursday is returned if $tomorrowfirst is non-nil
  1116. or Tuesday otherwise.</P>
  1117. <DT><STRONG><A NAME="item_DateManipVersion">DateManipVersion</A></STRONG><BR>
  1118. <DD>
  1119. <PRE>
  1120.   $version=&DateManipVersion</PRE>
  1121. <P>Returns the version of Date::Manip.</P>
  1122. </DL>
  1123. <P>
  1124. <HR>
  1125. <H1><A NAME="timezones">TIMEZONES</A></H1>
  1126. <P>The following timezone names are currently understood (and can be used in
  1127. parsing dates).  These are zones defined in RFC 822.</P>
  1128. <PRE>
  1129.     Universal:  GMT, UT
  1130.     US zones :  EST, EDT, CST, CDT, MST, MDT, PST, PDT
  1131.     Military :  A to Z (except J)
  1132.     Other    :  +HHMM or -HHMM
  1133.     ISO 8601 :  +HH:MM, +HH, -HH:MM, -HH</PRE>
  1134. <P>In addition, the following timezone abbreviations are also accepted.  In a
  1135. few cases, the same abbreviation is used for two different timezones (for
  1136. example, NST stands for Newfoundland Standare -0330 and North Sumatra +0630).
  1137. In these cases, only 1 of the two is available.  The one preceded by a ``#''
  1138. sign is NOT available but is documented here for completeness.  This list of
  1139. zones comes from the Time::Zone module by Graham Barr, David Muir Sharnoff,
  1140. and Paul Foley (with some additions by myself).</P>
  1141. <PRE>
  1142.       IDLW    -1200    International Date Line West
  1143.       NT      -1100    Nome
  1144.       HST     -1000    Hawaii Standard
  1145.       CAT     -1000    Central Alaska
  1146.       AHST    -1000    Alaska-Hawaii Standard
  1147.       YST     -0900    Yukon Standard
  1148.       HDT     -0900    Hawaii Daylight
  1149.       YDT     -0800    Yukon Daylight
  1150.       PST     -0800    Pacific Standard
  1151.       PDT     -0700    Pacific Daylight
  1152.       MST     -0700    Mountain Standard
  1153.       MDT     -0600    Mountain Daylight
  1154.       CST     -0600    Central Standard
  1155.       CDT     -0500    Central Daylight
  1156.       EST     -0500    Eastern Standard
  1157.       EDT     -0400    Eastern Daylight
  1158.       AST     -0400    Atlantic Standard
  1159.      #NST     -0330    Newfoundland Standard       nst=North Sumatra    +0630
  1160.       NFT     -0330    Newfoundland
  1161.      #GST     -0300    Greenland Standard          gst=Guam Standard    +1000
  1162.      #BST     -0300    Brazil Standard             bst=British Summer   +0100
  1163.       ADT     -0300    Atlantic Daylight
  1164.       NDT     -0230    Newfoundland Daylight
  1165.       AT      -0200    Azores
  1166.       WAT     -0100    West Africa
  1167.       GMT     +0000    Greenwich Mean
  1168.       UT      +0000    Universal (Coordinated)
  1169.       UTC     +0000    Universal (Coordinated)
  1170.       WET     +0000    Western European
  1171.       CET     +0100    Central European
  1172.       FWT     +0100    French Winter
  1173.       MET     +0100    Middle European
  1174.       MEWT    +0100    Middle European Winter
  1175.       SWT     +0100    Swedish Winter
  1176.       BST     +0100    British Summer              bst=Brazil standard  -0300
  1177.       GB      +0100    GMT with daylight savings
  1178.       CEST    +0200    Central European Summer
  1179.       EET     +0200    Eastern Europe, USSR Zone 1
  1180.       FST     +0200    French Summer
  1181.       MEST    +0200    Middle European Summer
  1182.       METDST  +0200    An alias for MEST used by HP-UX
  1183.       SST     +0200    Swedish Summer              sst=South Sumatra    +0700
  1184.       EEST    +0300    Eastern Europe Summer
  1185.       BT      +0300    Baghdad, USSR Zone 2
  1186.       IT      +0330    Iran
  1187.       ZP4     +0400    USSR Zone 3
  1188.       ZP5     +0500    USSR Zone 4
  1189.       IST     +0530    Indian Standard
  1190.       ZP6     +0600    USSR Zone 5
  1191.       NST     +0630    North Sumatra               nst=Newfoundland Std -0330
  1192.      #SST     +0700    South Sumatra, USSR Zone 6  sst=Swedish Summer   +0200
  1193.       CCT     +0800    China Coast, USSR Zone 7
  1194.       AWST    +0800    West Australian Standard
  1195.       WST     +0800    West Australian Standard
  1196.       JST     +0900    Japan Standard, USSR Zone 8
  1197.       ROK     +0900    Republic of Korea
  1198.       CAST    +0930    Central Australian Standard
  1199.       EAST    +1000    Eastern Australian Standard
  1200.       GST     +1000    Guam Standard, USSR Zone 9  gst=Greenland Std    -0300
  1201.       CADT    +1030    Central Australian Daylight
  1202.       EADT    +1100    Eastern Australian Daylight
  1203.       IDLE    +1200    International Date Line East
  1204.       NZST    +1200    New Zealand Standard
  1205.       NZT     +1200    New Zealand
  1206.       NZDT    +1300    New Zealand Daylight</PRE>
  1207. <P>Others can be added in the future upon request.</P>
  1208. <P>DateManip needs to be able to determine the local timezone.  It can do this
  1209. by certain things such as the TZ environment variable (see Date_TimeZone
  1210. documentation above) or useing the TZ config variable (described below).
  1211. In either case, the timezone can be of the form STD#DST (for example
  1212. EST5EDT).  Both the standard and daylight savings time abbreviations must
  1213. be in the table above in order for this to work.  Also, this form may NOT
  1214. be used when parsing a date as there is no way to determine whether the
  1215. date is in daylight saving time or not.  The following forms are also
  1216. available and are treated similar to the STD#DST forms:</P>
  1217. <PRE>
  1218.       US/Pacific
  1219.       US/Mountain
  1220.       US/Central
  1221.       US/Eastern</PRE>
  1222. <P>
  1223. <HR>
  1224. <H1><A NAME="business mode">BUSINESS MODE</A></H1>
  1225. <P>Anyone using business mode is going to notice a few quirks about it which
  1226. should be explained.  When I designed business mode, I had in mind what UPS
  1227. tells me when they say 2 day delivery, or what the local business which
  1228. promises 1 business day turnaround really means.</P>
  1229. <P>If you do a business day calculation (with the workday set to 9:00-5:00),
  1230. you will get the following:</P>
  1231. <PRE>
  1232.    Saturday at noon + 1 business day = Tuesday at 9:00
  1233.    Saturday at noon - 1 business day = Friday at 9:00</PRE>
  1234. <P>What does this mean?</P>
  1235. <P>We have a business that works 9-5 and they have a drop box so I can drop
  1236. things off over the weekend and they promise 1 business day turnaround.  If
  1237. I drop something off Friday night, Saturday, or Sunday, it doesn't matter.
  1238. They're going to get started on it Monday morning.  It'll be 1 business day
  1239. to finish the job, so the earliest I can expect it to be done is around
  1240. 17:00 Monday or 9:00 Tuesday morning.  Unfortunately, there is some
  1241. ambiguity as to what day 17:00 really falls on, similar to the ambiguity
  1242. that occurs when you ask what day midnight falls on.  Although it's not the
  1243. only answer, Date::Manip treats midnight as the beginning of a day rather
  1244. than the end of one.  In the same way, 17:00 is equivalent to 9:00 the next
  1245. day and any time the date calculations encounter 17:00, it automatically
  1246. switch to 9:00 the next day.  Although this introduces some quirks, I think
  1247. this is justified.  You just have to treat 9:00 as being ambiguous (in the
  1248. same way you treat midnight as being ambiguous).</P>
  1249. <P>Equivalently, if I want a job to be finished on Saturday (despite the fact
  1250. that I cannot pick it up since the business is closed), I have to drop it
  1251. off no later than Friday at 9:00.  That gives them a full business day to
  1252. finish it off.  Of course, I could just as easily drop it off at 17:00
  1253. Thursday, or any time between then and 9:00 Friday.  Again, it's a matter
  1254. of treating 9:00 as ambiguous.</P>
  1255. <P>So, in case the business date calculations ever produce results that you
  1256. find confusing, I believe the solution is to write a wrapper which,
  1257. whenever it sees a date with the time of exactly 9:00, it treats it
  1258. specially (depending on what you want.</P>
  1259. <P>So Saturday + 1 business day = Tuesday at 9:00 (which means anything
  1260. from Monday 17:00 to Tuesday 9:00), but Monday at 9:01 + 1 business
  1261. day = Tuesday at 9:01 which is exact.</P>
  1262. <P>If this is not exactly what you have in mind, don't use the DateCalc
  1263. routine.  You can probably get whatever behavior you want using the
  1264. routines Date_IsWorkDay, Date_NextWorkDay, and Date_PrevWorkDay described
  1265. above.</P>
  1266. <P>
  1267. <HR>
  1268. <H1><A NAME="customizing date::manip">CUSTOMIZING DATE::MANIP</A></H1>
  1269. <P>There are a number of variables which can be used to customize the way
  1270. Date::Manip behaves.  There are also several ways to set these variables.</P>
  1271. <P>At the top of the Manip.pm file, there is a section which contains all
  1272. customization variables.  These provide the default values.</P>
  1273. <P>These can be overridden in a global config file if one is present (this
  1274. file is optional).  If the GlobalCnf variable is set in the Manip.pm file,
  1275. it contains the full path to a config file.  If the file exists, it's
  1276. values will override those set in the Manip.pm file.  A sample config file
  1277. is included with the Date::Manip distribution.  Modify it as appropriate
  1278. and copy it to some appropriate directory and set the GlobalCnf variable
  1279. in the Manip.pm file.</P>
  1280. <P>Each user can have a personal config file which is of the same form as
  1281. the global config file.  The variables PersonalCnf and PersonalCnfPath
  1282. set the name and search path for the personal config file.  This file is
  1283. also optional.</P>
  1284. <P>NOTE: if you use business mode calculations, you must have a config file
  1285. (either global or personal) since this is the only place where you can
  1286. define holidays.</P>
  1287. <P>Finally, any variables passed in through Date_Init override all other
  1288. values.</P>
  1289. <P>A config file can be composed of several sections (though only 2 of them
  1290. are currently used).  The first section sets configuration varibles.  Lines
  1291. in this section are of the form:</P>
  1292. <PRE>
  1293.    VARIABLE = VALUE</PRE>
  1294. <P>For example, to make the default language French, include the line:</P>
  1295. <PRE>
  1296.    Language = French</PRE>
  1297. <P>Only variables described below may be used.  Blank lines and lines beginning
  1298. with a pound sign (#) are ignored.  All spaces are optional and strings are
  1299. case insensitive.</P>
  1300. <P>A line which starts with an asterix (*) designates a new section.  The only
  1301. section currently used is the Holiday section.  All lines are of the form:</P>
  1302. <PRE>
  1303.    DATE = HOLIDAY</PRE>
  1304. <P>HOLIDAY is the name of the holiday (or it can be blank in which case the
  1305. day will still be treated as a holiday... for example the day after
  1306. Thanksgiving or Christmas is often a work holiday though neither are
  1307. named).</P>
  1308. <P>DATE is a string which can be parsed to give a valid date in any year.  It
  1309. can be of the form</P>
  1310. <PRE>
  1311.    Date
  1312.    Date + Delta
  1313.    Date - Delta</PRE>
  1314. <P>A valid holiday section would be:</P>
  1315. <PRE>
  1316.    *Holiday</PRE>
  1317. <PRE>
  1318.    1/1                             = New Year's Day
  1319.    third Monday in Feb             = Presidents' Day
  1320.    fourth Thu in Nov               = Thanksgiving</PRE>
  1321. <PRE>
  1322.    # The Friday after Thanksgiving is an unnamed holiday most places
  1323.    fourth Thu in Nov + 1 day       =</PRE>
  1324. <P>In a Date + Delta or Date - Delta string, you can use business mode by
  1325. including the appropriate string (see documentation on DateCalc) in the
  1326. Date or Delta.  So (in English), the first workday before Christmas could
  1327. be defined as:</P>
  1328. <PRE>
  1329.    12/25 - 1 business day          =</PRE>
  1330. <P>All Date::Manip variables which can be used are described in the following
  1331. section.</P>
  1332. <DL>
  1333. <DT><STRONG><A NAME="item_IgnoreGlobalCnf">IgnoreGlobalCnf</A></STRONG><BR>
  1334. <DD>
  1335. If this variable is used (any value is ignored), the global config file
  1336. is not read.  It must be present in the initial call to Date_Init or the
  1337. global config file will be read.
  1338. <P></P>
  1339. <DT><STRONG><A NAME="item_EraseHolidays">EraseHolidays</A></STRONG><BR>
  1340. <DD>
  1341. If this variable is used (any value is ignored), the current list of
  1342. defined holidays is erased.  A new set will be set the next time a
  1343. config file is read in.  This can be set in either the global config file
  1344. or as a Date_Init argument (in which case holidays can be read in from
  1345. both the global and personal config files) or in the personal config file
  1346. (in which case, only holidays in the personal config file are counted).
  1347. <P></P>
  1348. <DT><STRONG><A NAME="item_PersonalCnf">PersonalCnf</A></STRONG><BR>
  1349. <DD>
  1350. This variable can be passed into Date_Init to read a different personal
  1351. configuration file.  It can also be included in the global config file
  1352. to define where personal config files live.
  1353. <P>The default name for the config file is .DateManip.cnf on all Unix
  1354. platforms and Manip.cnf on all non-Unix platforms (because some of them
  1355. insist on 8.3 character filenames :-).</P>
  1356. <P></P>
  1357. <DT><STRONG><A NAME="item_PersonalCnfPath">PersonalCnfPath</A></STRONG><BR>
  1358. <DD>
  1359. Used in the same way as the PersonalCnf option.  You can use tilde (~)
  1360. expansions when defining the path for Unix and VMS platforms.
  1361. <P></P>
  1362. <DT><STRONG><A NAME="item_Language">Language</A></STRONG><BR>
  1363. <DD>
  1364. Date::Manip can be used to parse dates in many different languages.
  1365. Currently, it is configured to read English, Swedish, and French dates,
  1366. but others can be added easily.  Language is set to the language used to
  1367. parse dates.
  1368. <P></P>
  1369. <DT><STRONG><A NAME="item_DateFormat">DateFormat</A></STRONG><BR>
  1370. <DD>
  1371. Different countries look at the date 12/10/96 as Dec 10 or Oct 12.  In the
  1372. United States, the first is most common, but this certainly doesn't hold
  1373. true for other countries.  Setting DateFormat to ``US'' forces the first
  1374. behavior (Dec 10).  Setting DateFormat to anything else forces the second
  1375. behavior (Oct 12).
  1376. <P></P>
  1377. <DT><STRONG><A NAME="item_TZ">TZ</A></STRONG><BR>
  1378. <DD>
  1379. Date::Manip is able to understand some timezones (and others will be added
  1380. in the future).  At the very least, all zones defined in RFC 822 are
  1381. supported.  Currently supported zones are listed in the TIMEZONES section
  1382. above and all timezones should be entered as one of them.
  1383. <P>Date::Manip must be able to determine the timezone the user is in.  It does
  1384. this by looking in the following places:</P>
  1385. <PRE>
  1386.    the environment variable TZ
  1387.    the variable $main::TZ
  1388.    the file /etc/TIMEZONE
  1389.    the 5th element of the unix "date" command (not available on NT machines)</PRE>
  1390. <P>At least one of these should contain a timezone in one of the supported
  1391. forms.  If it doesn't, the TZ variable must be set to contain the local
  1392. timezone in the appropriate form.</P>
  1393. <P>The TZ variable will override the other methods of determining the
  1394. timezone, so it should probably be left blank if any of the other methods
  1395. will work.  Otherwise, you will have to modify the variable every time you
  1396. switch to/from daylight savings time.</P>
  1397. <P></P>
  1398. <DT><STRONG><A NAME="item_ConvTZ">ConvTZ</A></STRONG><BR>
  1399. <DD>
  1400. All date comparisons and calculations must be done in a single time zone in
  1401. order for them to work correctly.  So, when a date is parsed, it should be
  1402. converted to a specific timezone.  This allows dates to easily be compared
  1403. and manipulated as if they are all in a single timezone.
  1404. <P>The ConvTZ variable determines which timezone should be used to store dates
  1405. in.  If it is left blank, all dates are converted to the local timezone
  1406. (see the TZ variable above).  If it is set to one of the timezones listed
  1407. above, all dates are converted to this timezone.  Finally, if it is set to
  1408. the string ``IGNORE'', all timezone information is ignored as the dates are
  1409. read in (in this case, the two dates ``1/1/96 12:00 GMT'' and ``1/1/96 12:00
  1410. EST'' would be treated as identical).</P>
  1411. <P></P>
  1412. <DT><STRONG><A NAME="item_Internal">Internal</A></STRONG><BR>
  1413. <DD>
  1414. When a date is parsed using ParseDate, that date is stored in an internal
  1415. format which is understood by the Date::Manip routines UnixDate and
  1416. DateCalc.  Originally, the format used to store the date internally was:
  1417. <PRE>
  1418.    YYYYMMDDHH:MN:SS</PRE>
  1419. <P>It has been suggested that I remove the colons (:) to shorten this to:</P>
  1420. <PRE>
  1421.    YYYYMMDDHHMNSS</PRE>
  1422. <P>The main advantage of this is that some databases are colon delimited which
  1423. makes storing a date from Date::Manip tedious.</P>
  1424. <P>In order to maintain backwards compatibility, the Internal variable was
  1425. introduced.  Set it to 0 (to use the old format) or 1 (to use the new
  1426. format).</P>
  1427. <P></P>
  1428. <DT><STRONG><A NAME="item_FirstDay">FirstDay</A></STRONG><BR>
  1429. <DD>
  1430. It is sometimes necessary to know what day of week is regarded as first.
  1431. By default, this is set to Monday, but many countries and people will
  1432. prefer Sunday (and in a few cases, a different day may be desired).  Set
  1433. the FirstDay variable to be the first day of the week (1=Monday, 7=Sunday)
  1434. Monday should be chosen to to comply with ISO 8601.
  1435. <P></P>
  1436. <DT><STRONG><A NAME="item_WorkWeekBeg%2C_WorkWeekEnd">WorkWeekBeg, WorkWeekEnd</A></STRONG><BR>
  1437. <DD>
  1438. The first and last days of the work week.  By default, monday and friday.
  1439. WorkWeekBeg must come before WorkWeekEnd numerically.  The days are
  1440. numbered from 0 (sunday) to 6 (saturday).  There is no way to handle an odd
  1441. work week of Thu to Mon for example.
  1442. <P></P>
  1443. <DT><STRONG><A NAME="item_WorkDay24Hr">WorkDay24Hr</A></STRONG><BR>
  1444. <DD>
  1445. If this is non-nil, a work day is treated as being 24 hours long.  The
  1446. WorkDayBeg and WorkDayEnd variables are ignored in this case.
  1447. <P></P>
  1448. <DT><STRONG><A NAME="item_WorkDayBeg%2C_WorkDayEnd">WorkDayBeg, WorkDayEnd</A></STRONG><BR>
  1449. <DD>
  1450. The times when the work day starts and ends.  WorkDayBeg must come before
  1451. WorkDayEnd (i.e. there is no way to handle the night shift where the work
  1452. day starts one day and ends another).  Also, the workday MUST be more than
  1453. one hour long (of course, if this isn't the case, let me know... I want a
  1454. job there!).
  1455. <P>The time in both can be in any valid time format (including international
  1456. formats), but seconds will be ignored.</P>
  1457. <P></P>
  1458. <DT><STRONG><A NAME="item_TomorrowFirst">TomorrowFirst</A></STRONG><BR>
  1459. <DD>
  1460. Periodically, if a day is not a business day, we need to find the nearest
  1461. business day to it.  By default, we'll look to ``tomorrow'' first, but if this
  1462. variable is set to 0, we'll look to ``yesterday'' first.  This is only used in
  1463. the Date_NearestWorkDay and is easily overridden (see documentation for that
  1464. function).
  1465. <P></P>
  1466. <DT><STRONG><A NAME="item_DeltaSigns">DeltaSigns</A></STRONG><BR>
  1467. <DD>
  1468. Prior to Date::Manip version 5.07, a negative delta would put negative
  1469. signs in front of every component (i.e. ``0:0:-1:-3:0:-4'').  By default,
  1470. 5.07 changes this behavior to print only 1 or two signs in front of the
  1471. year and day elements (even if these elements might be zero) and the sign
  1472. for year/month and day/hour/minute/second are the same.  Setting this
  1473. variable to non-zero forces deltas to be stored with a sign in front of
  1474. every element (including elements equal to 0).
  1475. <P></P>
  1476. <DT><STRONG><A NAME="item_Jan1Week1">Jan1Week1</A></STRONG><BR>
  1477. <DD>
  1478. ISO 8601 states that the first week of the year is the one which contains
  1479. Jan 4 (i.e. it is the first week in which most of the days in that week
  1480. fall in that year).  This means that the first 3 days of the year may
  1481. be treated as belonging to the last week of the previous year.  If this
  1482. is set to non-nil, the ISO 8601 standard will be ignored and the first
  1483. week of the year contains Jan 1.
  1484. <P></P>
  1485. <DT><STRONG><A NAME="item_YYtoYYYY">YYtoYYYY</A></STRONG><BR>
  1486. <DD>
  1487. By default, a 2 digit year is treated as falling in the 100 year period of
  1488. CURR-89 to CURR+10.  YYtoYYYY may be set to any integer N to force a 2
  1489. digit year into the period CURR-N to CURR+(99-N).  A value of 0 forces
  1490. the year to be the current year or later.  A value of 99 forces the year
  1491. to be the current year or earlier.  Since I do no checking on the value of
  1492. YYtoYYYY, you can actually have it any positive or negative value to force
  1493. it into any century you want.
  1494. <P>YYtoYYYY can also be set to ``C'' to force it into the current century, or
  1495. to ``C##'' to force it into a specific century.  So, no (1998), ``C'' forces
  1496. 2 digit years to be 1900-1999 and ``C18'' would force it to be 1800-1899.</P>
  1497. <P>It can also be set to the form ``C####'' to force it into a specific 100
  1498. year period.  C1950 refers to 1950-2049.</P>
  1499. <P></P>
  1500. <DT><STRONG><A NAME="item_UpdateCurrTZ">UpdateCurrTZ</A></STRONG><BR>
  1501. <DD>
  1502. If a script is running over a long period of time, the timezone may change
  1503. during the course of running it (i.e. when daylight savings time starts or
  1504. ends).  As a result, parsing dates may start putting them in the wrong time
  1505. zone.  Since a lot of overhead can be saved if we don't have to check the
  1506. current timezone every time a date is parsed, by default checking is turned
  1507. off.  Setting this to non-nill will force timezone checking to be done every
  1508. time a date is parsed... but this will result in a considerable performance
  1509. penalty.
  1510. <P>A better solution would be to restart the process on the two days per year
  1511. where the timezone switch occurs.</P>
  1512. <P></P>
  1513. <DT><STRONG><A NAME="item_IntCharSet">IntCharSet</A></STRONG><BR>
  1514. <DD>
  1515. If set to 0, use the US character set (7-bit ASCII) to return strings such
  1516. as the month name.  If set to 1, use the appropriate international character
  1517. set.
  1518. <P></P>
  1519. <DT><STRONG><A NAME="item_ForceDate">ForceDate</A></STRONG><BR>
  1520. <DD>
  1521. This variable can be set to a date in the format: YYYY-MM-DD-HH:MN:SS
  1522. to force the current date to be interpreted as this date.  Since the current
  1523. date is used in parsing, this string will not be parsed and MUST be in the
  1524. format given above.
  1525. <P></P></DL>
  1526. <P>
  1527. <HR>
  1528. <H1><A NAME="backwards incompatibilities">BACKWARDS INCOMPATIBILITIES</A></H1>
  1529. <P>For the most part, Date::Manip has remained backward compatible at every
  1530. release.  There have been a few minor incompatibilities introduced at
  1531. various stages.  Major differences are marked with bullets.</P>
  1532. <DL>
  1533. <DT><STRONG><A NAME="item_VERSION_5%2E32">VERSION 5.32</A></STRONG><BR>
  1534. <DD>
  1535. <DL>
  1536. <DT><STRONG><A NAME="item_Date_Init_arguments">Date_Init arguments</A></STRONG><BR>
  1537. <DD>
  1538. The old style Date_Init arguments that were deprecated in version 5.07
  1539. have been removed.
  1540. <P></P>
  1541. <LI><STRONG><A NAME="item_DateManip%2Ecnf_change">DateManip.cnf change</A></STRONG><BR>
  1542.  
  1543. Changed .DateManip.cnf to Manip.cnf (to get rid of problems on OS's 
  1544. that insist on 8.3 filenames) for all non-Unix platforms (Wintel, VMS,
  1545. Mac).  For all Unix platforms, it's still .DateManip.cnf .  It will only
  1546. look in the user's home directory on VMS and Unix.
  1547. <P></P></DL>
  1548. <DT><STRONG><A NAME="item_VERSION_5%2E30">VERSION 5.30</A></STRONG><BR>
  1549. <DD>
  1550. <UL>
  1551. <LI><STRONG><A NAME="item_Delta_format_changed">Delta format changed</A></STRONG><BR>
  1552.  
  1553. A week field has been added to the internal format of the delta.  It now
  1554. reads ``Y:M:W:D:H:MN:S'' instead of ``Y:M:D:H:MN:S''.
  1555. <P></P></UL>
  1556. <DT><STRONG><A NAME="item_VERSION_5%2E21">VERSION 5.21</A></STRONG><BR>
  1557. <DD>
  1558. <DL>
  1559. <DT><STRONG><A NAME="item_Long_running_processes_may_give_incorrect_timezone">Long running processes may give incorrect timezone</A></STRONG><BR>
  1560. <DD>
  1561. A process that runs during a timezone change (Daylight Saving Time
  1562. specifically) may report the wrong timezone.  See the UpdateCurrTZ variable
  1563. for more information.
  1564. <P></P>
  1565. <DT><STRONG><A NAME="item_UnixDate_%22%25J%22%2C_%22%25W%22%2C_and_%22%25U%2">UnixDate ``%J'', ``%W'', and ``%U'' formats fixed</A></STRONG><BR>
  1566. <DD>
  1567. The %J, %W, and %U will no longer report a week 0 or a week 53 if it should
  1568. really be week 1 of the following year.  They now report the correct week
  1569. number according to ISO 8601.
  1570. <P></P></DL>
  1571. <DT><STRONG><A NAME="item_VERSION_5%2E20">VERSION 5.20</A></STRONG><BR>
  1572. <DD>
  1573. <UL>
  1574. <LI><STRONG><A NAME="item_removed">ParseDate formats removed (ISO 8601 compatibility)</A></STRONG><BR>
  1575.  
  1576. Full support for ISO 8601 formats was added.  As a result, some formats
  1577. which previously worked may no longer be parsed since they conflict with an
  1578. ISO 8601 format.  These include MM-DD-YY (conflicts with YY-MM-DD) and
  1579. YYMMDD (conflicts with YYYYMM).  MM/DD/YY still works, so the first form
  1580. can be kept easily by changing ``-'' to ``/''.  YYMMDD can be changed to
  1581. YY-MM-DD before being parsed.  Whenever parsing dates using dashes as
  1582. separators, they will be treated as ISO 8601 dates.  You can get around
  1583. this by converting all dashes to slashes.
  1584. <P></P>
  1585. <LI><STRONG><A NAME="item_Week_day_numbering">Week day numbering</A></STRONG><BR>
  1586.  
  1587. The day numbering was changed from 0-6 (sun-sat) to 1-7 (mon-sun) to be
  1588. ISO 8601 compatible.  Weeks start on Monday (though this can be overridden
  1589. using the FirstDay config variable) and the 1st week of the year contains
  1590. Jan 4 (though it can be forced to contain Jan 1 with the Jan1Week1 config
  1591. variable).
  1592. <P></P></UL>
  1593. <DT><STRONG><A NAME="item_VERSION_5%2E07">VERSION 5.07</A></STRONG><BR>
  1594. <DD>
  1595. <DL>
  1596. <DT><STRONG><A NAME="item_UnixDate_%22%25s%22_format">UnixDate ``%s'' format</A></STRONG><BR>
  1597. <DD>
  1598. Used to return the number of seconds since 1/1/1970 in the current
  1599. timezone.  It now returns the number of seconds since 1/1/1970 GMT.
  1600. The ``%o'' format was added which returns what ``%s'' previously did.
  1601. <P></P>
  1602. <DT><STRONG><A NAME="item_Internal_format_of_delta">Internal format of delta</A></STRONG><BR>
  1603. <DD>
  1604. The format for the deltas returned by ParseDateDelta changed.  Previously,
  1605. each element of a delta had a sign attached to it (+1:+2:+3:+4:+5:+6).  The
  1606. new format removes all unnecessary signs by default (+1:2:3:4:5:6).  Also,
  1607. because of the way deltas are normalized (see documentation on
  1608. ParseDateDelta), at most two signs are included.  For backwards
  1609. compatibility, the config variable DeltaSigns was added.  If set to 1, all
  1610. deltas include all 6 signs.
  1611. <P></P>
  1612. <DT><STRONG>Date_Init arguments</STRONG><BR>
  1613. <DD>
  1614. The format of the Date_Init calling arguments changed.  The
  1615. old method
  1616. <PRE>
  1617.   &Date_Init($language,$format,$tz,$convtz);</PRE>
  1618. <P>is still supported , but this support will likely disappear in the future.
  1619. Use the new calling format instead:</P>
  1620. <PRE>
  1621.   &Date_Init("var=val","var=val",...);</PRE>
  1622. <P>NOTE:  The old format is no longer supported as of version 5.32 .</P>
  1623. <P></P></DL>
  1624. </DL>
  1625. <P>
  1626. <HR>
  1627. <H1><A NAME="known problems">KNOWN PROBLEMS</A></H1>
  1628. <P>The following are not bugs, but they may give some people problems.</P>
  1629. <DL>
  1630. <DT><STRONG><A NAME="item_Unable_to_determine_TimeZone">Unable to determine TimeZone</A></STRONG><BR>
  1631. <DD>
  1632. Perhaps the most common problem occurs when you get the error:
  1633. <PRE>
  1634.    Error: Date::Manip unable to determine TimeZone.</PRE>
  1635. <P>Date::Manip tries hard to determine the local timezone, but on some
  1636. machines, it cannot do this (especially non-unix systems).  To fix this,
  1637. just set the TZ variable, either at the top of the Manip.pm file, or in the
  1638. DateManip.cnf file.  I suggest using the form ``EST5EDT'' so you don't have
  1639. to change it every 6 months when going to or from daylight savings time.</P>
  1640. <P>A minor (false) assumption that some users might make is that since
  1641. Date::Manip passed all of it's tests at install time, this should not occur
  1642. and are surprised when it does.</P>
  1643. <P>Some of the tests are timezone dependent.  Since the tests all include
  1644. input and expected output, I needed to know in advance what timezone they
  1645. would be run in.  So, the tests all explicitely set the timezone using the
  1646. TZ configuration variable passed into Date_Init.  Since this overrides any
  1647. other method of determining the timezone, Date::Manip uses this and doesn't
  1648. have to look elsewhere for the timezone.</P>
  1649. <P>When running outside the tests, Date::Manip has to rely on it's other
  1650. methods for determining the timezone.</P>
  1651. <P></P>
  1652. <DT><STRONG><A NAME="item_Complaining_about_getpwnam%2Fgetpwuid">Complaining about getpwnam/getpwuid</A></STRONG><BR>
  1653. <DD>
  1654. Another problem is when running on Micro$oft OS'es.  I have added many
  1655. tests to catch them, but they still slip through occasionally.  If any ever
  1656. complain about getpwnam/getpwuid, simply add one of the lines:
  1657. <PRE>
  1658.   $ENV{OS} = Windows_NT
  1659.   $ENV{OS} = Windows_95</PRE>
  1660. <P>to your script before</P>
  1661. <PRE>
  1662.   use Date::Manip</PRE>
  1663. <P></P>
  1664. <DT><STRONG><A NAME="item_Date%3A%3AManip_is_slow">Date::Manip is slow</A></STRONG><BR>
  1665. <DD>
  1666. The reasons for this are covered in the SHOULD I USE DATE::MANIP section
  1667. above.
  1668. <P>Some things that will definitely help:</P>
  1669. <P>Version 5.21 does run noticably faster than earlier versions due to
  1670. rethinking some of the initialization, so at the very least, make sure you
  1671. are running this version or later.</P>
  1672. <P>ISO-8601 dates are parsed first and fastest.  Use them whenever possible.</P>
  1673. <P>Avoid parsing dates that are referenced against the current time (in 2
  1674. days, today at noon, etc.).  These take a lot longer to parse.</P>
  1675. <PRE>
  1676.    Example:  parsing 1065 dates with version 5.11 took 48.6 seconds, 36.2
  1677.    seconds with version 5.21, and parsing 1065 ISO-8601 dates with version
  1678.    5.21 took 29.1 seconds (these were run on a slow, overloaded computer with
  1679.    little memory... but the ratios should be reliable on a faster computer).</PRE>
  1680. <P>Business date calculations are extremely slow.  You should consider
  1681. alternatives if possible (i.e. doing the calculation in exact mode and then
  1682. multiplying by 5/7).  There will be an approximate business mode in one of
  1683. the next versions which will be much faster (though less accurate) which
  1684. will do something like this.  Whenever possible, use this mode.  And who
  1685. needs a business date more accurate than ``6 to 8 weeks'' anyway huh :-)</P>
  1686. <P>Never call Date_Init more than once.  Unless you're doing something very
  1687. strange, there should never be a reason to anyway.</P>
  1688. <P></P>
  1689. <DT><STRONG><A NAME="item_Sorting_Problems">Sorting Problems</A></STRONG><BR>
  1690. <DD>
  1691. If you use Date::Manip to sort a number of dates, you must call Date_Init
  1692. either explicitely, or by way of some other Date::Manip routine before it
  1693. is used in the sort.  For example, the following code fails:
  1694. <PRE>
  1695.    use Date::Manip;
  1696.    # &Date_Init;
  1697.    sub sortDate {
  1698.        my($date1, $date2);
  1699.        $date1 = &ParseDate($a);
  1700.        $date2 = &ParseDate($b);
  1701.        return ($date1 cmp $date2);
  1702.    }
  1703.    @date = ("Fri 16 Aug 96",
  1704.             "Mon 19 Aug 96",
  1705.             "Thu 15 Aug 96");
  1706.    @i=sort sortDate @dates;</PRE>
  1707. <P>but if you uncomment the Date_Init line, it works.  The reason for this is
  1708. that the first time you call Date_Init, it initializes a number of items
  1709. used by Date::Manip.  Some of these have to be sorted (regular expressions
  1710. sorted by length to ensure the longest match).  It turns out that perl
  1711. (5.004 and earlier) has a bug in it which does not allow a sort within a
  1712. sort.  At some point, this should be fixed, but for now, the best thing to
  1713. do is to call Date_Init explicitely.</P>
  1714. <P>NOTE: This is an EXTREMELY inefficient way to sort data.  Instead, you
  1715. should parse the dates with ParseDate, sort them using a normal string
  1716. comparison, and then convert them back to the format desired using
  1717. UnixDate.</P>
  1718. <P></P>
  1719. <DT><STRONG><A NAME="item_RCS_Control">RCS Control</A></STRONG><BR>
  1720. <DD>
  1721. If you try to put Date::Manip under RCS control, you are going to have
  1722. problems.  Apparently, RCS replaces strings of the form ``$Date...$'' with 
  1723. the current date.  This form occurs all over in Date::Manip.  To prevent the
  1724. RCS keyword expansion, checkout files using ``co -ko''.  Since very few people
  1725. will ever have a desire to do this (and I don't use RCS), I have not worried
  1726. about it.
  1727. <P></P></DL>
  1728. <P>
  1729. <HR>
  1730. <H1><A NAME="known bugs">KNOWN BUGS</A></H1>
  1731. <DL>
  1732. <DT><STRONG><A NAME="item_Daylight_Savings_Times">Daylight Savings Times</A></STRONG><BR>
  1733. <DD>
  1734. Date::Manip does not handle daylight savings time, though it does handle
  1735. timezones to a certain extent.  Converting from EST to PST works fine.
  1736. Going from EST to PDT is unreliable.
  1737. <P>The following examples are run in the winter of the US East coast (i.e.
  1738. in the EST timezone).</P>
  1739. <PRE>
  1740.         print UnixDate(ParseDate("6/1/97 noon"),"%u"),"\n";
  1741.         => Sun Jun  1 12:00:00 EST 1997</PRE>
  1742. <P>June 1 EST does not exist.  June 1st is during EDT.  It should print:</P>
  1743. <PRE>
  1744.         => Sun Jun  1 00:00:00 EDT 1997</PRE>
  1745. <P>Even explicitely adding the timezone doesn't fix things (if anything, it
  1746. makes them worse):</P>
  1747. <PRE>
  1748.         print UnixDate(ParseDate("6/1/97 noon EDT"),"%u"),"\n";
  1749.         => Sun Jun  1 11:00:00 EST 1997</PRE>
  1750. <P>Date::Manip converts everything to the current timezone (EST in this case).</P>
  1751. <P>Related problems occur when trying to do date calculations over a timezone
  1752. change.  These calculations may be off by an hour.</P>
  1753. <P>Also, if you are running a script which uses Date::Manip over a period of
  1754. time which starts in one time zone and ends in another (i.e. it switches
  1755. form Daylight Savings Time to Standard Time or vice versa), many things may
  1756. be wrong (especially elapsed time).</P>
  1757. <P>I hope to fix these problems in a future release so that it would convert
  1758. everything to the current zones (EST or EDT).</P>
  1759. <P></P></DL>
  1760. <P>
  1761. <HR>
  1762. <H1><A NAME="bugs and questions">BUGS AND QUESTIONS</A></H1>
  1763. <P>If you find a bug in Date::Manip, please send it directly to me (see the
  1764. AUTHOR section below) rather than posting it to one of the newsgroups.
  1765. Although I try to keep up with the comp.lang.perl.* groups, all too often I
  1766. miss news (flaky news server, articles expiring before I caught them, 1200
  1767. articles to wade through and I missed one that I was interested in, etc.).</P>
  1768. <P>If you have a problem using Date::Manip that perhaps isn't a bug (can't
  1769. figure out the syntax, etc.), you're in the right place.  Go right back to
  1770. the top of this man page and start reading.  If this still doesn't answer
  1771. your question, mail me (again, please mail me rather than post to the
  1772. newsgroup).</P>
  1773. <P>
  1774. <HR>
  1775. <H1><A NAME="year 2000">YEAR 2000</A></H1>
  1776. <P>In hindsight, the fact that I've only been asked once (so far) if Date::Manip
  1777. is year 2000 compliant surprises me a bit.  Still, as 2000 approaches and
  1778. this buzzword starts flying around more and more frantically, other's might
  1779. follow suit, so this section answers the question.</P>
  1780. <P>Is Date::Manip year 2000 compliant?  Yes, but the question is largely
  1781. unmeaningful.  Date::Manip is basically a parser.  It'll parse dates in any
  1782. of thousands of different formats (including the 2 digit years that are
  1783. going to cause the computer equivalent of doomsday on Dec 31, 1999).  But,
  1784. internally, Date::Manip stores years as 4 digits, and all of it's functions
  1785. work with the 4 digit representation, so there is no problem with dates
  1786. after 2000.</P>
  1787. <P>The better question is ``Is Perl year 2000 compliant''?  This is such a good
  1788. question, that it's in the perl FAQ.  Go read ``Does Perl have a year 2000
  1789. problem'' in section 4.</P>
  1790. <P>The best question is ``For what dates is Date::Manip useful?''  It definitely
  1791. can't handle BC dates, or dates past Dec 31, 9999.  Also, one of the basic
  1792. routines I wrote counts the days since Dec 31, 0999.  I realize now that I
  1793. should have had it calculate days since Dec 31, 0001 BC, but I didn't.  One
  1794. day I may go back and change this, but until I do, dates in the first
  1795. millenium (0001 to 0999) probably won't work.  So, I guarantee that
  1796. Date::Manip works during the years 1000 to 9999.</P>
  1797. <P>In practical terms however, Date::Manip deals with the Gregorian calendar,
  1798. and is therefore useful in the period that that calendar has been, or will
  1799. be, in effect.  The Gregorian calendar was first adopted by the Catholic
  1800. church in 1582, but some countries were still using the Julian calendar as
  1801. late as the early part of this century.  Also, at some point around the
  1802. year 3000, the calendar system is going to have to be modified slightly
  1803. since the current system of leap years will be off by one day every 3200
  1804. years or so.  So...  in practical terms, Date::Manip is _probably_ useful
  1805. from 1900 to 3000.  Approximately.</P>
  1806. <P>One other note is that Date::Manip will NOT handle 3 digit years.  So, if
  1807. you store the year as an offset from 1900 (which is 2 digits now, but will
  1808. become 3 digits in 2000), these will NOT be parsable by Date::Manip.</P>
  1809. <P>Finally, Date::Manip is flexible.  It will allow you to write Year 2000
  1810. NON-compliant code if you really want to.</P>
  1811. <P>
  1812. <HR>
  1813. <H1><A NAME="acknowledgements">ACKNOWLEDGEMENTS</A></H1>
  1814. <P>There are many people who have contributed to Date::Manip over the years
  1815. that I'd like to thank.  The most important contributions have come in the
  1816. form of suggestions and bug reports by users.  I have tried to include the
  1817. name of every person who first suggested each improvement or first reported
  1818. each bug.  These are included in the HISTORY file in the Date::Manip
  1819. distribution.  The list is simply too long to appear here, but I appreciate
  1820. their help.</P>
  1821. <P>I'd also like a couple of authors.  Date::Manip has recently been getting
  1822. some really good press in a couple of books.  Since no one's paying me to
  1823. write Date::Manip, seeing my module praised in a book written by someone
  1824. else is really great.  My thanks to Nate Patwardhan and Clay Irving
  1825. (Programming with Perl Modules -- part of the O'Reilly Perl Resource Kit);
  1826. and Tom Christiansen and Nathan Torkington (for the forthcoming book The
  1827. Perl Cookbook).  Also, thanks to any other authors who've written about
  1828. Date::Manip who's books I haven't seen.</P>
  1829. <P>
  1830. <HR>
  1831. <H1><A NAME="author">AUTHOR</A></H1>
  1832. <P>Sullivan Beck (<A HREF="mailto:sbeck@cise.ufl.edu">sbeck@cise.ufl.edu</A>)</P>
  1833. <P>You can always get the newest beta version of Date::Manip (which may fix
  1834. problems in the current CPAN version... and may add others) from my home
  1835. page:</P>
  1836. <P><A HREF="http://www.cise.ufl.edu/~sbeck/">http://www.cise.ufl.edu/~sbeck/</A></P>
  1837. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  1838. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  1839. <STRONG><P CLASS=block> Date::Manip - date manipulation routines</P></STRONG>
  1840. </TD></TR>
  1841. </TABLE>
  1842.  
  1843. </BODY>
  1844.  
  1845. </HTML>
  1846.