Re: std.dateparse reincarnation

2011-11-03 Thread Eric Poggel (JoeCoder)
On 10/25/2011 5:23 PM, Walter Bright wrote: Yes, but I've done a fair amount of delegating. Andrei is in charge of Phobos. Is there a list somewhere of who performs what roles, and what people are currently working on (and their queue)? Having something like this would be useful for

Re: std.dateparse reincarnation

2011-10-28 Thread Jonathan M Davis
On Saturday, October 15, 2011 04:21:54 Steve Teale wrote: On Thu, 13 Oct 2011 22:09:39 +0300, Vladimir Panteleev wrote: On Thu, 13 Oct 2011 07:22:06 +0300, Jesse Phillips jessekphillip...@gmail.com wrote: Thought I would let everyone know that while std.dateparse is deprecated and will

Re: std.dateparse reincarnation

2011-10-27 Thread Stewart Gordon
On 26/10/2011 02:44, Jonathan M Davis wrote: snip I have not looked over them in detail, but from what I've seen, they're _very_ similar - as in they took the C format specifiers and followed them in almost all (and maybe even all) cases but added a few of their own. But slight differences

Re: std.dateparse reincarnation

2011-10-27 Thread Jonathan M Davis
On Friday, October 28, 2011 01:56:40 Stewart Gordon wrote: On 26/10/2011 02:44, Jonathan M Davis wrote: I have yet to look over your API in great detail, Then don't criticise it for not having a certain feature when you haven't read far enough down to discover whether it has that feature.

Re: std.dateparse reincarnation

2011-10-25 Thread Stewart Gordon
On 13/10/2011 20:09, Vladimir Panteleev wrote: snip I've written something to format and parse SysTimes using format strings based on the format PHP uses for its date() function: https://github.com/CyberShadow/ae/blob/master/utils/time.d Feel free to use this file as public domain. My

Re: std.dateparse reincarnation

2011-10-25 Thread Jonathan M Davis
On Tuesday, October 25, 2011 20:17:35 Stewart Gordon wrote: On 13/10/2011 20:09, Vladimir Panteleev wrote: snip I've written something to format and parse SysTimes using format strings based on the format PHP uses for its date() function:

Re: std.dateparse reincarnation

2011-10-25 Thread Stewart Gordon
On 13/10/2011 05:22, Jesse Phillips wrote: Thought I would let everyone know that while std.dateparse is deprecated and will be removed from Phobos in February, I've updated it to output a std.datetime.SysTime. https://gist.github.com/1283011 I don't have any interest in maintaining it, but

Re: std.dateparse reincarnation

2011-10-25 Thread Stewart Gordon
On 25/10/2011 20:53, Jonathan M Davis wrote: snip What does Walter have to do with anything here? It was always my understanding that Walter is the man in charge of D development. He's not implementing any date/time stuff, and he's not all that involved with Phobos development in general.

Re: std.dateparse reincarnation

2011-10-25 Thread Walter Bright
On 10/25/2011 1:43 PM, Stewart Gordon wrote: On 25/10/2011 20:53, Jonathan M Davis wrote: snip What does Walter have to do with anything here? It was always my understanding that Walter is the man in charge of D development. Yes, but I've done a fair amount of delegating. Andrei is in

Re: std.dateparse reincarnation

2011-10-25 Thread Stewart Gordon
On 25/10/2011 22:22, Jonathan M Davis wrote: snip At minimum, as I understand it, C, Java, python, and Ruby all have similar date/time formatting facilities and use mostly the same flags for date/time formatting. If they're only _similar_, it isn't really a standard. Indeed, it seems to me a

Re: std.dateparse reincarnation

2011-10-25 Thread Jonathan M Davis
On Wednesday, October 26, 2011 01:54:22 Stewart Gordon wrote: On 25/10/2011 22:22, Jonathan M Davis wrote: snip At minimum, as I understand it, C, Java, python, and Ruby all have similar date/time formatting facilities and use mostly the same flags for date/time formatting. If they're

Re: std.dateparse reincarnation

2011-10-15 Thread Walter Bright
On 10/14/2011 9:21 PM, Steve Teale wrote: I used to get tremendously frustrated with the old std.date, because all I wanted to do was get the current time and write it into a log file! Are you sure you're worthy? :-)

Re: std.dateparse reincarnation

2011-10-14 Thread Steve Teale
On Thu, 13 Oct 2011 22:09:39 +0300, Vladimir Panteleev wrote: On Thu, 13 Oct 2011 07:22:06 +0300, Jesse Phillips jessekphillip...@gmail.com wrote: Thought I would let everyone know that while std.dateparse is deprecated and will be removed from Phobos in February, I've updated it to output

Re: std.dateparse reincarnation

2011-10-13 Thread Vladimir Panteleev
On Thu, 13 Oct 2011 07:22:06 +0300, Jesse Phillips jessekphillip...@gmail.com wrote: Thought I would let everyone know that while std.dateparse is deprecated and will be removed from Phobos in February, I've updated it to output a std.datetime.SysTime. https://gist.github.com/1283011 I

Re: std.dateparse reincarnation

2011-10-13 Thread Jonathan M Davis
On Thursday, October 13, 2011 22:09:39 Vladimir Panteleev wrote: Time formatting and parsing seems like a gap of missing functionality in Phobos 2. It formats and parses specific, official formats just fine, but it doesn't currently support user-defined formats. It's on my TODO list.

Re: std.dateparse reincarnation

2011-10-13 Thread Jesse Phillips
On Thu, 13 Oct 2011 12:13:40 -0700, Jonathan M Davis wrote: On Thursday, October 13, 2011 22:09:39 Vladimir Panteleev wrote: Time formatting and parsing seems like a gap of missing functionality in Phobos 2. It formats and parses specific, official formats just fine, but it doesn't

Re: std.dateparse reincarnation

2011-10-13 Thread Jonathan M Davis
On Friday, October 14, 2011 04:51:58 Jesse Phillips wrote: On Thu, 13 Oct 2011 12:13:40 -0700, Jonathan M Davis wrote: On Thursday, October 13, 2011 22:09:39 Vladimir Panteleev wrote: Time formatting and parsing seems like a gap of missing functionality in Phobos 2. It formats and