Hi, Shouldn't it be possible to jsonize a string like this? {"doubleQuoteSurroundedBySpaces":" \" "}}' json.py and json.js both choke when trying to parse...
... Assuming your closing ")'" is an error, E's embedded term-tree language (<http://www.erights.org/data/terml/index.html>) accepts this just fine: ?...
Thanks for the speedy and extensive reply Yes, my closing ")" was an error I'm something of an E-gnoramus, so I will ask before attempting to understand your...
... Unfortunately no. Currently, E runs only on the JVM. There are ports of E onto Common Lisp and Squeak in progress, but neither is ready yet. Porting E onto...
I don't understand why this isn't considered a serious flaw in JSON... For any object o, it should be true that json.read( json.write(o) ) == o But this is not...
P.S. I've determined that Crockford's javascript parser does not have this problem (which I found in patrick logan's json.py). With javascript, o2= son.parse(...
... I'm not sure which implementation you're referring to, since JSON is just a spec, but I'm surprised the above even parses as valid JSON. Strings in JSON...
... The json.py library definitely has some problems. I've found a few flaws in the way it encodes strings, which I've sent back to Patrick as patches. I'm...
The following test works in my sandbox for json-py. I think it works in the release but I actually cannot get to sourceforge at the moment... Try adding this...
Guys, If anyone interested in JSON-RPC, feel free to take a look at JRP. It's a JSON-RPC implementation I recently started. JRP stands for JSON-RPC Page, and...
I've released fixes to the sourceforge project https://sourceforge.net/projects/json-py/ Also included in the release is Jim Washington's minjson.py There are...
Anyone using JSON as a replacement for XML in an AJAX-like project? A couple of years ago I used dynamic <script> elements to communicate asynchronously with...
I just got a sneak peek at Kiko.com (currently in pre-alpha, so you can't access their site.) They are developing a great AJAJ application. It was interesting...
... I am - it's so much nicer to use than XML. I've used "AJAJ" for a few client projects, and now I'm experimenting with JSON-RPC for a Free feed reading...
... Flash _used_ to have a simplified method of passing variables. (Not saying that it still doesn't; just that I am not sure.) And it did not require eval. ...
No need to rename it, as I have always said, AJAX goes for Async JSON And XUL http://www.georgenava.com/applauncher.php pure JSON and XUL, nothing else......
... Unless someone has finally written the XUL HTC for IE or an XSLT for XUL for non-Gecko browsers, XUL is too non-standard and niche for my needs. ...
The spec reads... "A string is a collection of zero or more Unicode characters, wrapped in double quotes, using backslash escapes. A character is represented ...
Dang. It finally hit me that scientific notation has been added to the spec for numbers. I think this is a good idea except now I need to implement it. Oh...
... The \uXXXX notation must be used for control characters that do not have a shorter escape convention. This is the only case where \uXXXX notation is...
... don't ... I think you mean "surrogate" characters; characters that require two 16 bit code points appearing "sequentially"? If JSON isn't processing text...
HI Did anyone run into an "Out of Memory" error trying to parse a JSON string in IE or Mozilla? It is probably dumb to do it but I ran into an issue where I...