Two changes to the reference implementation. JSONObject will keep a LinkedHashMap, so that new JSONObject(new LinkedHashMap()) can be used to make ordered...
json2.js and JSONObject.java use different definitions of "control-character". json.org seems to leave the term undefined. What's the real answer and why isn't...
... The RFC says: All Unicode characters may be placed within the quotation marks except for the characters that must be escaped: quotation mark, reverse...
... In the meantime, does the json2.js definition of control character cover all the potentially dangerous characters? Shouldn't all JSON emitters be escaping...
... Yes. ... So far this hasn't appeared to be a problem. I haven't seen applications flinging around a lot of the Cf characters that get deleted by Firefox...
... I'd be more worried about web apps that accept user input and so could be made to traffic in Cf characters without having thought about it. A tricky user...
... That is a serious problem when using a naked eval. So json.js contains this step: text = text.replace(cx, function (a) { return '\\u' + ('0000' + ...
Maybe I'm just going crazy, but in a previous version of json.js (or maybe json2.js) did the .toISOString function wrap an extra set of "" (double quotes)...
... I think you are confusing toJSON with toJSONString. The toJSON method (which is supported by json2.js and is likely to be included in the next ECMAScript...
I would be interested in both attending and presenting. Best, Mark P6R. Inc On Mon, 07 Jul 2008 19:15:10 -0000 ... Mark Joseph, Ph.D. President and Secretary ...
On Mon, Jul 7, 2008 at 12:15 PM, Douglas Crockford ... How about if we broaden the agenda to "Safe subsets of JavaScript"? In addition to JSON itself, there...
Yes! (I implemented server-side support for JSON and JSONRequest in mod_ndb, and I'd especially like the chance to talk with people working on the browser and...
Oh, I think there's plenty of interest in JSON. What I wonder is if there's enough material, without the conference devolving into a set of use case ...
... I agree with this. JSON has lots of other applications than just Javascript. Our customers want support for JSON in C++ applications. Best, ... Mark...
Yes, I would be interested in attending. An about some comments regarding endless repetition of use cases, I believe the problem could be solved by someone...
I think there would be enough interest, and I would try to attend. A lot of us are using JSON in production today, so I think you would have to find...
It appears there's enough support for a conference. If it materializes I'll do my best to attend. Good usage examples would be very useful. ... I think there...
hi john, your server side implementation of JSONRequest combined with a js library that wrapped client side technologies (browserplus, gears, flash, etc) could...
... Yes, there is interest. I am thinking to hold the conference in California, perhaps in San Francisco or San Jose. So the planning begins. What is your...
Anything non-east coast mostly kills it for me, especially with the on going issues of air travel. But I know I'm in the minority here. Hopefully if something...
I added toJSON methods to Boolean, Number, and String. This makes simple type wrappers work correctly, so JSON.stringify(new String('string')) produce...
Anybody had any luck using these two together? Specifically, if the payload of the request and or response is json, then is the payload required to be wrapped...