irb(main):029:0> timeNow = Time.now().to_s()
=> "Fri Aug 11 11:03:36 Central Daylight Time 2006"
irb(main):030:0> ParseDate.parsedate(timeNow)
=> [nil, 8, 11, 11, 3, 36, "Central", 5]
Seems to me that it should return this:
=> [2006, 8, 11, 11, 3, 36, "Central", 5]
Or is it just me?
···
--
Posted via http://www.ruby-forum.com/.
It's you. Specifically, something's wrong with your locale, because
"Central Daylight Time" should actually be replaced with the abbreviation
"CDT".
irb(main):001:0> timeNow = Time.now().to_s()
=> "Fri Aug 11 13:49:07 CDT 2006"
irb(main):002:0> ParseDate.parsedate(timeNow)
=> [2006, 8, 11, 13, 49, 7, "CDT", 5]
···
On Sat, 12 Aug 2006 01:10:58 +0900, Patrick Spence wrote:
irb(main):029:0> timeNow = Time.now().to_s()
=> "Fri Aug 11 11:03:36 Central Daylight Time 2006"
irb(main):030:0> ParseDate.parsedate(timeNow)
=> [nil, 8, 11, 11, 3, 36, "Central", 5]
Seems to me that it should return this:
=> [2006, 8, 11, 11, 3, 36, "Central", 5]
Or is it just me?
--
Ken Bloom. PhD candidate. Linguistic Cognition Laboratory.
Department of Computer Science. Illinois Institute of Technology.
http://www.iit.edu/~kbloom1/
irb(main):029:0> timeNow = Time.now().to_s()
=> "Fri Aug 11 11:03:36 Central Daylight Time 2006"
irb(main):030:0> ParseDate.parsedate(timeNow)
=> [nil, 8, 11, 11, 3, 36, "Central", 5]
Seems to me that it should return this, note the year in the 1st element
=> [2006, 8, 11, 11, 3, 36, "Central", 5]
The point I was trying to make is that the 1st element of the array
returned by parsedate() seems that it should contain the year 2006,
intstead of a nil.
As for the issue of returning "Central" vs "CST" or "CDT", I'm not
overly concerned with that at this time. No doubt, that will change.
···
--
Posted via http://www.ruby-forum.com/\.
I'm not sure it'll change. You're on Windows, and Windows is stupid
this way, preferring to spell out "Central Daylight Time" instead of
"CDT"; I have yet to figure out how to get the output from a Windows
format string to be abbreviated or better yet to return a +/- offset.
It is the "Central Daylight Time" that is causing the parsing to be
incorrect, because most date systems are sensible.
It may be worth reporting a bug to the tracker on RubyForge.org. If
you can figure out a patch, that's even better and you can also put it
in the same place.
-austin
···
On 8/15/06, Patrick Spence <patrick@pkspence.com> wrote:
As for the issue of returning "Central" vs "CST" or "CDT", I'm not
overly concerned with that at this time. No doubt, that will change.
--
Austin Ziegler * halostatue@gmail.com * http://www.halostatue.ca/
* austin@halostatue.ca * You are in a maze of twisty little passages, all alike. // halo • statue
* austin@zieglers.ca
"Austin Ziegler" <halostatue@gmail.com> writes:
As for the issue of returning "Central" vs "CST" or "CDT", I'm not
overly concerned with that at this time. No doubt, that will change.
I'm not sure it'll change. You're on Windows, and Windows is stupid
this way, preferring to spell out "Central Daylight Time" instead of
"CDT"; I have yet to figure out how to get the output from a Windows
format string to be abbreviated or better yet to return a +/- offset.
It is the "Central Daylight Time" that is causing the parsing to be
incorrect, because most date systems are sensible.
It's time to make use of missing/strftime.c when on Windows.
···
On 8/15/06, Patrick Spence <patrick@pkspence.com> wrote:
It may be worth reporting a bug to the tracker on RubyForge.org. If
you can figure out a patch, that's even better and you can also put it
in the same place.
-austin
--
Christian Neukirchen <chneukirchen@gmail.com> http://chneukirchen.org