Search the web
Sign In
New User? Sign Up
json · JSON JavaScript Object Notation
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 29 - 58 of 1409   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
29
Hi, Shouldn't it be possible to jsonize a string like this? {"doubleQuoteSurroundedBySpaces":" \" "}}' json.py and json.js both choke when trying to parse...
jonschull5
Offline Send Email
Aug 1, 2005
7:43 pm
30
... Assuming your closing ")'" is an error, E's embedded term-tree language (<http://www.erights.org/data/terml/index.html>) accepts this just fine: ?...
Mark Miller
capsecure
Offline Send Email
Aug 1, 2005
9:04 pm
31
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...
Jon Schull
jonschull5
Offline Send Email
Aug 1, 2005
9:27 pm
32
... 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...
Mark Miller
capsecure
Offline Send Email
Aug 1, 2005
10:23 pm
33
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...
jonschull5
Offline Send Email
Aug 3, 2005
4:05 am
34
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(...
jonschull5
Offline Send Email
Aug 3, 2005
4:28 am
35
... 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...
Martin Cooper
mfncooper
Online Now Send Email
Aug 3, 2005
4:35 am
36
Ok, I should have said "a serious flaw in the json.py library" And it turns out to be a problem in the two python libraries I've looked at ...
Jon Schull
jonschull5
Offline Send Email
Aug 3, 2005
4:48 am
37
... 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...
Michal Migurski
michal_migurski
Offline Send Email
Aug 3, 2005
4:55 am
38
... In E, this gives a syntax error as it should: ? term`{'a':' " '}` # syntax error: # {'a':' " '} # ^ -- Text by me above is hereby placed in...
Mark Miller
capsecure
Offline Send Email
Aug 3, 2005
6:24 am
39
Since it's Python, an option might be to access Mr Crockford's Java implementation of JSON, via Jython....
jemptymethod
Offline Send Email
Aug 3, 2005
11:07 am
40
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...
Patrick D. Logan
patrickdlogan
Offline Send Email
Aug 3, 2005
4:18 pm
41
oops. Editing error from the Python interpreter. The resulting json representation should look something like... {"a":" \" "} -Patrick [Non-text portions of...
Patrick D. Logan
patrickdlogan
Offline Send Email
Aug 3, 2005
4:20 pm
42
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...
jake_s_lim
Offline Send Email
Aug 4, 2005
4:40 am
43
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...
patrickdlogan
Offline Send Email
Aug 6, 2005
4:50 pm
44
Just thought I'd put it on record that both Patrick Logan and Neil Schemenauer promptly fixed and updated their python json libraries. Logan:...
jonschull5
Offline Send Email
Aug 6, 2005
10:58 pm
45
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...
Dale
code_ronin
Offline Send Email
Aug 7, 2005
2:00 pm
46
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...
F. Randall Farmer
frandallfarmer
Offline Send Email
Aug 7, 2005
2:35 pm
47
... 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...
Michal Migurski
michal_migurski
Offline Send Email
Aug 7, 2005
4:59 pm
48
... 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. ...
Dale
code_ronin
Offline Send Email
Aug 8, 2005
12:22 am
49
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......
George
georgenava
Offline Send Email
Aug 8, 2005
2:16 am
50
... JSON ... George, you ought to contribute your alternative meaning for the AJAX acronym to the wikipedia's entry for the same ;)...
jemptymethod
Offline Send Email
Aug 8, 2005
5:02 pm
51
... 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. ...
Dale
code_ronin
Offline Send Email
Aug 9, 2005
1:04 pm
52
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 ...
patrickdlogan
Offline Send Email
Aug 10, 2005
4:29 am
53
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...
patrickdlogan
Offline Send Email
Aug 10, 2005
4:46 am
54
... Huh, so it has. When did that happen? Time to update my code as well... -- Martin Cooper...
Martin Cooper
mfncooper
Online Now Send Email
Aug 10, 2005
5:20 am
55
... 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...
Douglas Crockford
douglascrock...
Online Now Send Email
Aug 11, 2005
4:49 am
56
... As long as we're on this topic, what about Unicode characters that don't fit into 16 bits -- the co-called "supplementary characters"? ...
Mark Miller
capsecure
Offline Send Email
Aug 11, 2005
10:08 am
57
... don't ... I think you mean "surrogate" characters; characters that require two 16 bit code points appearing "sequentially"? If JSON isn't processing text...
Roland H. Alden
rolandalden
Online Now Send Email
Aug 11, 2005
2:11 pm
58
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...
patmalay
Offline Send Email
Aug 11, 2005
5:47 pm
Messages 29 - 58 of 1409   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help