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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 1 - 30 of 1409   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1
I have a string containing a single \ character. I'm not quite sure what this string should look like once json encoded. My javascript encoder (a popular one)...
mpcmtechnologies
mpcmtechnolo...
Offline Send Email
Jul 20, 2005
12:39 am
2
... No, it should be "\\". JSON does not use the ` character....
Douglas Crockford
douglascrock...
Offline Send Email
Jul 20, 2005
3:07 am
3
... Sorry, I have a value of \ and it is encoding it to \\\\. The backticks where added to show that that was the value. Sorry for the confusion. The parser I...
MPCM
mpcmtechnolo...
Offline Send Email
Jul 20, 2005
3:28 am
4
So how does this JSON thing compare to this: http://microformats.org/ Inquiring minds want to know....
Roland H. Alden
rolandalden
Online Now Send Email
Jul 20, 2005
9:26 pm
5
Well what I would say is: - microformats are xHTML tags - intended on providing standards for new forms of structured data - JSON = I haven't...
Marc Canter
marccanter
Offline Send Email
Jul 20, 2005
9:45 pm
6
... Completely unrelated. JSON is a data encoding standard, while Microformats are an attempt to formalize certain common types of meaningful information...
Michal Migurski
michal_migurski
Offline Send Email
Jul 20, 2005
9:50 pm
7
... microformats is layered on top of XML. JSON could replace the XML layer. JSON is used to represent values (string, numbers, booleans, null) in sequences...
Douglas Crockford
douglascrock...
Offline Send Email
Jul 20, 2005
9:55 pm
8
... How is it compared to ASN.1? What's "JSON" stand for?...
Roland H. Alden
rolandalden
Online Now Send Email
Jul 21, 2005
12:27 am
9
... It is considerably simpler. It is described at http://www.JSON.org ... JavaScript Object Notation....
Douglas Crockford
douglascrock...
Offline Send Email
Jul 21, 2005
12:59 am
10
... It's quite a long way from ASN.1. ASN.1 is a data definition language (a schema language if you like). JSON is a data format. ASN.1 is like XML-Schema and...
Nic Ferrier
nicferrier2000
Offline Send Email
Jul 21, 2005
1:32 am
11
I want to build a web application where the responses to requests will be in JSON or at some point in time in a different format (e.g. XML). HTTP does allow...
Robert Cerny
robert_cerny
Offline Send Email
Jul 26, 2005
8:56 am
12
It would seem text/json is what it should be and I believe there is a documented registration process at IANA....
Roland H. Alden
rolandalden
Online Now Send Email
Jul 26, 2005
1:17 pm
13
... No, I don't think so. Note that text/javascript and text/ecmascript are obsolete, and replaced by application/javascript and application/ecmascript...
Martin Cooper
mfncooper
Online Now Send Email
Jul 26, 2005
4:09 pm
14
... You would seem to be correct assuming RFC 2046 is the controlling standard. Quoting from that: 4.5. Application Media Type The "application" media type is...
Roland H. Alden
rolandalden
Online Now Send Email
Jul 26, 2005
4:38 pm
15
... What are the media types for html and xml? -- Text by me above is hereby placed in the public domain Cheers, --MarkM...
Mark Miller
capsecure
Offline Send Email
Jul 26, 2005
5:29 pm
16
... Those are text/html and text/xml, respectively. See: http://www.iana.org/assignments/media-types/ -- Martin Cooper...
Martin Cooper
mfncooper
Online Now Send Email
Jul 26, 2005
5:57 pm
17
... JSON is more like html & xml than it is like javascript. Therefore, reasoning by precedent and analogy, I think the right answer is text/json. -- Text by...
Mark Miller
capsecure
Offline Send Email
Jul 26, 2005
6:56 pm
18
Would someone shed some light on why the json.js file method of detecting arrays was changed? Array.prototype.______array = '______array'; is added And - if...
MPCM
mpcmtechnolo...
Offline Send Email
Jul 26, 2005
8:31 pm
19
... I disagree that JSON is more like HTML and XML than like JavaScript, particularly when it's specifically a subset of JavaScript. Further, to quote some...
Martin Cooper
mfncooper
Online Now Send Email
Jul 26, 2005
8:36 pm
20
Has anyone successfully used JSON with ColdFusion? I'm debating on whether I should use it or not... thanks, -Amy...
ldyhwke24
Offline Send Email
Jul 26, 2005
8:44 pm
21
... By what stretch of the imagination is xml readable? -- Text by me above is hereby placed in the public domain Cheers, --MarkM...
Mark Miller
capsecure
Offline Send Email
Jul 26, 2005
10:05 pm
22
... I haven't tried it yet, but near the bottom of the JSON home page (http://json.org) is a link to "JSON in ColdFusion", so there seems to be a ColdFusion...
jemptymethod
Offline Send Email
Jul 27, 2005
10:51 pm
23
I just got it to work this morning. I'm using CFJSON on the ColdFusion end.. and JSON on the javascript.. it seems to work out pretty well. I wasn't quite...
Amy
ldyhwke24
Offline Send Email
Jul 27, 2005
11:33 pm
24
... ColdFusion end.. and JSON on the javascript.. it seems to work out pretty well. Excellent. I'm the hotscripts.com newsletter columnist for both ...
jemptymethod
Offline Send Email
Jul 28, 2005
1:06 am
25
... I agree with MarkM on this one. JSON is not JavaScript. While it is a subset of JavaScript, its usage patterns are radically different. I think the right...
Douglas Crockford
douglascrock...
Offline Send Email
Jul 29, 2005
4:06 pm
26
... The usage patterns may be different, but if you read the portions of RFC 2046 that I quoted, those usage patterns still match application/json much better...
Martin Cooper
mfncooper
Online Now Send Email
Jul 29, 2005
4:57 pm
27
... By the criteria you quoted, xml should be application/xml. -- Text by me above is hereby placed in the public domain Cheers, --MarkM...
Mark Miller
capsecure
Offline Send Email
Jul 29, 2005
7:28 pm
28
... So? We're talking about JSON, not XML. Finding an example for which you disagree with the existing categorisation isn't much of a reason to not follow the...
Martin Cooper
mfncooper
Online Now Send Email
Jul 29, 2005
8:18 pm
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
Messages 1 - 30 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