Results 125 comments of Darron Schall

Updated by Touvan on 2010-02-17T21:54:32 oh, or maybe JSONTokenizer.as

Updated by Touvan on 2010-03-03T19:35:51 I did this in JSONTokenizer, though I'm sure a property with the line number and a way to append it in the parseError (where the...

Updated by mikechambers on 2009-09-22T07:52:06 Original ticket set owner to mikechambers Original ticket set status to Accepted (we converted to open)

Updated by mikechambers on 2007-01-10T04:51:23 Here is the RFC: http://www.ietf.org/rfc/rfc4627.txt?number=4627 I cant find any mention of dates. Here is a page from mozilla's thoughts on EcmaScript 4 and JSON: http://developer.mozilla.org/es4/proposals/json_encoding_and_decoding.html...

Updated by mikechambers on 2007-01-10T05:07:34 The latest JSON.js file (from December 6, 2006), has support for Dates: http://www.json.org/json.js It uses ISO 8601 http://www.iso.org/iso/en/prods-services/popstds/datesandtime.html We have some Data format functions in...

Updated by wmdmark on 2007-05-01T03:38:49 Are there any work arounds for this? I'm needing to parse dates from a JSON feed in a project I'm working on. The date value...

Updated by wmdmark on 2007-05-01T03:39:45 BTW, I'd be happy to help :)

Updated by kenlarkin on 2008-06-04T10:32:25 until you resolve this you add this to JSONEncoder.as when checking the object o. else if (o is Date) { s = "new Date(" +...

Updated by [email protected] on 2008-06-05T12:58:12 It seems that a lot of implementations of JSON are using proprietary date formats to get around this issue. This kind of defeats the interoperability...

Updated by mchiareli on 2009-02-18T23:22:39 are there news about it?