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 1267 - 1297 of 1408   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1267
Last month, I announced the web_send library on this list: http://tech.groups.yahoo.com/group/json/message/1250 When hosted by your server, the web_send...
Tyler Close
tjclose
Offline Send Email
Jun 1, 2009
1:10 pm
1268
We have been having a heck of a time with an issue in IE8's implementation of JSON.stringify(). It appears that IE8 *sometimes* encodes an empty string as the...
Stephen M. McKamey
stephen.mckamey
Offline Send Email
Jun 1, 2009
8:36 pm
1269
IE may have a REFERENCE to the origianl object. In your first example, when coerced into a string from th LEFT, they are equivilant The stringify method may...
Ric Johnson
ricjohnsoniii
Offline Send Email
Jun 2, 2009
1:27 am
1270
The triple-equals shouldn't be coercing the arguments before comparison. Reversing the order of the test to (bad === good) still results in true. To top that...
Stephen M. McKamey
stephen.mckamey
Offline Send Email
Jun 2, 2009
1:42 am
1271
Below is the answer from Microsoft about this bug in JSON.stringify. Thanks Douglas Crockford for forwarding on to the appropriate contact at Microsoft. It...
Stephen M. McKamey
stephen.mckamey
Offline Send Email
Jun 2, 2009
3:42 pm
1272
jswoof version 1.05 has been released. This version contains a small fix for escaped uni-code characters during serialization. please check out...
W
wain_mike
Offline Send Email
Jun 2, 2009
8:01 pm
1273
Allen Wirfs-Brock suggested another work-around to the IE8 native JSON issue: Another work-around that is isolated to a single place is to use IE8's "mutable...
Stephen M. McKamey
stephen.mckamey
Offline Send Email
Jun 2, 2009
8:24 pm
1274
<!-- this is the javascript json parser function --> <script type="text/javascript" src="../jquery-1.2.6.min.js"> </script> <script type="text/javascript"> ...
JIJO DASGUPTA (ANAND)
jijodasgupta
Offline Send Email
Jun 8, 2009
2:22 pm
1275
... Your question is out of scope for this group. Ask the jQuery people....
Douglas Crockford
douglascrock...
Offline Send Email
Jun 8, 2009
3:34 pm
1276
jswoof version 1.06 has been released. containing a major speed improvement to the array parsing functions. As usual please check out...
W
wain_mike
Offline Send Email
Jun 9, 2009
9:04 pm
1277
has now been released. containing a small fix for object ordering. as usual jswoof and all its documentation can be found at: http://www.waynemike.co.uk/jswoof...
W
wain_mike
Offline Send Email
Jun 16, 2009
6:55 pm
1278
Just wanted to let you all know yajl-ruby 0.5.5 was released to github's gem server and I'll be pushing a release to rubyforge soon as well. This is an...
Brian Lopez
gislobber
Offline Send Email
Jun 18, 2009
7:51 am
1279
I had always assumed that new Date(NaN) in JavaScript would throw an exception. I found out today that produces a toxic date object, and that different...
Douglas Crockford
douglascrock...
Offline Send Email
Jun 18, 2009
4:43 pm
1280
Just to clarify this… ”new Date()” normally produces a perfectly ok Date object representing the current date and time. Does your change to ES5 mean that...
Jakob Kruse
thekrucible
Offline Send Email
Jun 18, 2009
5:45 pm
1281
... I meant exactly what I said. This only concerns new Date(NaN)....
Douglas Crockford
douglascrock...
Offline Send Email
Jun 18, 2009
5:52 pm
1282
Then apparently you didn’t say what you meant. No offense, that was what I needed to clarify. “…that different implementations of JSON.stringify([new...
Jakob Kruse
thekrucible
Offline Send Email
Jun 18, 2009
6:33 pm
1283
It might be worth noting that the Date constructor or Date.parse() fed an incorrectly formatted date string also gives a NaN-valued Date object, which is the...
joel.finch@...
joel.finch...
Offline Send Email
Jun 19, 2009
12:14 am
1284
I just ran the updated json2.js (2009-06-18) through my unit tests, and the valueOf() solution to the NaN Date issue fails for the epoch date (0 ticks ==...
joel.finch@...
joel.finch...
Offline Send Email
Jun 19, 2009
4:28 pm
1285
Code: JSON.parse("\"T\\wo\""); In Firefox 3.5 and the latest json2.js from json.org this results in a parse exception SyntaxError. Expected: Two It works in: *...
cosmicrealms
Offline Send Email
Jun 29, 2009
5:53 pm
1286
... \w is not present in the JSON grammar. An implementation may produce a syntax error. The behavior of Firefox 3.5 is correct....
Douglas Crockford
douglascrock...
Offline Send Email
Jun 29, 2009
6:00 pm
1287
... Fix. Thanks....
Douglas Crockford
douglascrock...
Offline Send Email
Jun 29, 2009
6:14 pm
1288
... The interpretation of string escaping means that "\"T\\wo\"" is the external representation of a six-character string containing quote-T- ...
John Cowan
johnwcowan
Online Now Send Email
Jun 29, 2009
6:48 pm
1289
Maybe this stuff could be interesting for json2.js file as well, or maybe not. It is a quick and full specs ISO strings parser, really fast, widely compatible,...
Andrea Giammarchi
an_red...
Offline Send Email
Jul 4, 2009
11:18 am
1290
Personally, I think this would have to extend the Date prototype to be fully useful; like json2.js, its value is in allowing us to write script now using the...
joel.finch@...
joel.finch...
Offline Send Email
Jul 6, 2009
12:29 am
1291
I noticed in the latest ECMAScript 5 spec that Date's toJSON is defined to return the same string as Date's toISOString. (as of:...
joel.finch@...
joel.finch...
Offline Send Email
Jul 6, 2009
12:41 am
1292
The NaN case should be a constructor problem, no? To extend Date.prototype.toISOString = Date.ISO("2000").toISOString; On Jul 6, 2009 1:41 AM,...
Andrea Giammarchi
an_red...
Offline Send Email
Jul 6, 2009
6:51 am
1293
Shouldn't new Date(NaN) refer to a future date that is always just around the corner, yet never arrives? sorry... couldn't resist :) On Mon, Jul 6, 2009 at...
Arthur Blake
blakesys
Offline Send Email
Jul 9, 2009
7:15 pm
1294
Uhm, I think new Date(NaN) should return a static historical date, new Date(Number.POSITIVE_INFINITY) 9999-12-31T23:59:59:999 and Number.NEGATIVE_INFINITY...
Andrea Giammarchi
an_red...
Offline Send Email
Jul 9, 2009
7:26 pm
1296
For YUI's JSON utility, I'm leveraging native behavior if present and stable. To that second point, I adapted the test suite for YUI's JSON util to test the...
Lucas Smith
y_lsmith
Online Now Send Email
Jul 15, 2009
5:16 pm
1297
What is the best way to convert JSON value to java object so that it can be sent to server? It needs to be free / open source....
dey_nibedita
Offline Send Email
Jul 15, 2009
8:21 pm
Messages 1267 - 1297 of 1408   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