Re: JD problem

2006-05-22 Thread Eugene van der Pijll
Jason Thaxter schreef: Curiosity got the better of me. The fix works and is demonstrated below. Thank you! I have just uploaded version 0.10 of the package to CPAN. Eugene van der Pijll

JD problem

2006-05-21 Thread Jason Thaxter
I have a bug using DateTime::Format::Epoch::JD: The 'hour' parameter (24) to DateTime::new did not pass the 'is between 0 and 23' callback at /usr/local/lib/perl5/site_perl/5.8.8/DateTime/Format/Epoch.pm line 179 I'm pretty sure the problem actually occurs on a time where UTC is midnight.

Re: JD problem

2006-05-21 Thread Jason Thaxter
Curiosity got the better of me. The fix works and is demonstrated below. Now it really *is* past my bedtime or I'd write a test... ;-) On Monday 22 May 2006 01:06, Jason Thaxter wrote: 167c167 if ($rd_secs = 86400) { --- if ($rd_secs 86400) { Seems obvious enough. But