Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

json · JSON JavaScript Object Notation

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 590
  • Category: Data Formats
  • Founded: Jul 19, 2005
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

Advanced
Messages Help
Messages 131 - 161 of 1953   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
131 ingliss Send Email Dec 12, 2005
4:33 pm
Anyone know of an Oracle PL/SQL implementation of JSON?...
132 Douglas Crockford
douglascrock... Send Email
Dec 16, 2005
1:18 pm
Yahoo! has announced some web services that deliver JSON-encoded data. You can read about it at http://developer.yahoo.net/common/json.html...
133 MPCM
mpcmtechnolo... Send Email
Dec 16, 2005
2:45 pm
I have been using JSON in several web projects via javascript and PHP, it is truly a great format and lets us developers focus on apps. I am trying write a...
134 f3l
kyoosho Send Email
Dec 16, 2005
4:02 pm
... even tough it sounds like a very interesting project, from which many thing can be made from (like error-checking, and stuff like that), it looks to me,...
135 Atif Aziz
azizatif Send Email
Dec 16, 2005
9:19 pm
Perhaps it may help to look at the JSON parsing bits (written in C#) that are part of the Jayrock[1] project. I originally started with the C# code from...
137 gammal.json@...
mahmoudfg Send Email
Dec 19, 2005
7:57 am
Hello, First, I apologize if this is a bit off-topic, but I hope someone can help. I'm having a problem with passing non-ASCII parameters using XMLHttpRequest....
138 Douglas Crockford
douglascrock... Send Email
Dec 19, 2005
1:52 pm
A new class, JSONStringer, has been added to the Java package org.json. JSONStringer provides a convenient set of methods for building a JSON text. See...
139 Wilfred Nilsen
wilfrednilsen Send Email
Dec 20, 2005
1:30 am
WebDAV is an accepted standard for implementing web-folders, but the WebDAV specification is very complex and requires an XML parser with namespace support. We...
140 TCQ
despam2004 Send Email
Dec 20, 2005
11:42 pm
Has anybody hacked a simple zipping algorithm for JavaScript terse literal constructs such as Arrays and Objects (JSON)? I am doing so much data piping through...
141 Andrew Durdin
adurdin Send Email
Dec 21, 2005
3:18 am
... Obfuscation will not give you good security. If you want security for your data, then the most straightforward way is to use https for your JSON requests. ...
142 TCQ
despam2004 Send Email
Dec 21, 2005
4:58 am
... for your data, then the most straightforward way is to use https for your JSON requests. I agree and am doing the https route but since I am mostly...
143 Paul Hanlon
pthanlonie Send Email
Dec 21, 2005
3:52 pm
Hi All, I wonder if anyone can help.I come from a background of programming in PHP, and am only just beginning to get to grips with the power of Javascript....
144 Michal Migurski
michal_migurski Send Email
Dec 21, 2005
5:06 pm
The javascript for/in syntax actually iterates over the properties of an object or indexes of an array. Javascript&#39;s "for(index in array)" is roughly...
145 Atif Aziz
azizatif Send Email
Dec 21, 2005
5:22 pm
The value of i in the for/in loop is a string that represents the name of the object's property being enumerated for that iteration. You need to index the...
146 pthanlonie Send Email Dec 21, 2005
7:40 pm
Hi, Thanks so much. I've been tearing my hair out. When I tried brs.i.text, and it didn't work, I never thought to use the brackets. I'll need to rejig my JSON...
147 f3l
kyoosho Send Email
Dec 21, 2005
7:52 pm
http://www.west.co.tt/matt/js/redbug/redbug.html he alzo zips his source, WARNING: the demo may slow down your browser. ... -- //f3l ...
148 Martin Cooper
mfncooper Send Email
Dec 21, 2005
8:22 pm
... This may be more than you're looking for, but you might want to take a look at Dojo ShrinkSafe: http://alex.dojotoolkit.org/shrinksafe/ -- Martin Cooper I...
149 Douglas Crockford
douglascrock... Send Email
Dec 24, 2005
5:00 pm
JSON_checker is a pushdown automaton in C. It very quickly scans a JSON texts and determines if it is strictly syntactically correct. See ...
150 Michal Migurski
michal_migurski Send Email
Dec 24, 2005
5:30 pm
This could be a useful thing to have in JS, for security goof checks prior to the very-dangerous eval(). -mike. ... michal migurski- contact info and pgp key: ...
151 Atif Aziz
azizatif Send Email
Dec 24, 2005
6:53 pm
Are comments officially out of the specification? It seems so looking at the current state of the spec http://www.json.org/. ... existing decoders can continue...
152 Douglas Crockford
douglascrock... Send Email
Dec 24, 2005
8:32 pm
JSON does not have comments. A JSON encoder MUST NOT output comments. A JSON decoder MAY accept and ignore comments. Comments should never be used to transmit...
153 Martin Cooper
mfncooper Send Email
Dec 25, 2005
1:54 am
... Not now, but it used to have comments. I believe it's time to start versioning the spec. Several things have changed, and people have different ...
154 Atif Aziz
azizatif Send Email
Dec 25, 2005
7:21 pm
As Martin already said, JSON used to have comments. I don't know what led to the stringent opinion (perhaps from field experience) that they are so harmful as...
155 MPCM
mpcmtechnolo... Send Email
Dec 26, 2005
4:22 am
I had posted in the original thread talking about comments and wanted to follow up here as well. While meta data, like comments, might be useful, the only way...
156 Douglas Crockford
douglascrock... Send Email
Dec 26, 2005
2:15 pm
These were the reasons for removing comments: First, comments turned out to not be very useful. Second, comments were the most difficult feature to support in...
157 Douglas Crockford
douglascrock... Send Email
Dec 26, 2005
2:20 pm
I have a a new version of JSON.parse in JavaScript. It is vastly faster and smaller than the previous version. It uses a single call to eval to do the...
158 Martin Cooper
mfncooper Send Email
Dec 26, 2005
5:59 pm
... Then why not label the current version as JSON 1.0? -- Martin Cooper ... [Non-text portions of this message have been removed]...
159 Atif Aziz
azizatif Send Email
Dec 27, 2005
5:17 pm
I am assuming the order of reasons list was not significant. ... This is always rather subjective. When you consider that all text formats strive for and boast...
160 Atif Aziz
azizatif Send Email
Dec 27, 2005
6:27 pm
... I don't really consider comments as meta-data, unless you mean in the style of javadocs. I see comments as much a presentation aspect of the syntax as...
161 Andrew Durdin
adurdin Send Email
Dec 28, 2005
12:08 am
... To be more robust, shouldn't it catch errors thrown due to malformed JSON that still passes the regex, like the following (fairly minimal case): ] Andrew...
Messages 131 - 161 of 1953   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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