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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 1289 - 1319 of 1409   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
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
1298
Checkout Google Gson library (Apache license) that we authored: http://code.google.com/p/google-gson/ There are other Java libraries linked at json.org as...
Inderjeet Singh
inder72
Offline Send Email
Jul 15, 2009
9:18 pm
1299
... Just to make sure: if you already have JSON content, why would you need to convert it to Java object? Couldn't you just send it as is? But assuming this...
Tatu Saloranta
cowtowncoder
Offline Send Email
Jul 16, 2009
3:51 am
1300
http://jabsorb.org is both a java<-->json codec and a full json-rpc framework. It is light, simple, mature, fast and awesome!... but of course I'm a little...
Arthur Blake
blakesys
Offline Send Email
Jul 16, 2009
1:03 pm
1301
See JAJB (http://jajb.sourceforge.net/) too. Convert json to java using annotation and/or XML and/or dynamic binding. ... -- __________________________________...
Claudio D'angelo
ihepda
Offline Send Email
Jul 20, 2009
7:26 am
1302
The Waterken Server <waterken.sf.net> includes a library for JSON <=> Java object conversion. There's also a simple wrapper class that facilitates using JSON...
Tyler Close
tjclose
Offline Send Email
Jul 20, 2009
4:00 pm
1303
Hello all,      I am starting an iphone app using json as the data interchange. I"m still coming up to speed on the JSON specs .... and more mportantly,...
gearond@...
gearond...
Offline Send Email
Jul 21, 2009
3:41 pm
1304
The restful-json group (http://groups.google.com/group/restful-json) might actually be a better fit for these questions, more focused on JSON in a REST...
Kris Zyp
kriszyp
Online Now Send Email
Jul 21, 2009
5:03 pm
1305
... From a practical perspective, it is better to label your POST entity as Content-Type "text/plain", since this will be handled more efficiently in...
Tyler Close
tjclose
Offline Send Email
Jul 21, 2009
9:36 pm
1306
... Yikes, recommending inaccurate media types? This easily leads down the hideous road of content sniffing. Hopefully that wouldn't be suggested for...
Kris Zyp
kriszyp
Online Now Send Email
Jul 21, 2009
10:01 pm
1307
On Tue, Jul 21, 2009 at 3:01 PM, Kris Zyp<kriszyp@...> wrote: ... I fully agree -- I would prefer using proper content/media types, since those do serve...
Tatu Saloranta
cowtowncoder
Offline Send Email
Jul 21, 2009
10:29 pm
1308
Just wanted to share that the source code repository for the JSON serializer in JsonFx.NET (as well as the full Ajax framework) has been migrated to Google...
Stephen M. McKamey
stephen.mckamey
Offline Send Email
Jul 26, 2009
6:57 pm
1309
Hi all, its been a while since the last version of JSWOOF was uploaded but rest assured development has been around the clock. version 1.08 introduces some...
W
wain_mike
Offline Send Email
Jul 31, 2009
7:14 pm
1310
Version 1.2 of Jackson JSON processor (http://wiki.fasterxml.com/JacksonHome) is now available. Jackson is a full-featured JSON processor written in Java. It...
Tatu Saloranta
cowtowncoder
Offline Send Email
Aug 4, 2009
3:02 am
1311
JSON.parse function accepts an extra argument which main usage is to transform strings into Dates, if encountered. For performances reason this operation will...
Andrea Giammarchi
an_red...
Offline Send Email
Aug 7, 2009
12:39 pm
1312
... The replacer/reviver functions are generally useful. They are not mainly for dates. We shouldn't be mucking things up for eval tricks. ES5 is adopting the...
Douglas Crockford
douglascrock...
Offline Send Email
Aug 7, 2009
1:12 pm
1313
I am using the native JSON.parse with FF and others, json2 for IE < 8 The problem is that we have a standard (almost) to stringify Date but at the same time...
Andrea Giammarchi
an_red...
Offline Send Email
Aug 7, 2009
1:47 pm
1314
I wonder if this test is enough: http://www.3site.eu/jstests/json/ as average it is about 2 to 5 times faster in IE8 or 7, faster in any case with every other...
Andrea Giammarchi
an_red...
Offline Send Email
Aug 7, 2009
2:54 pm
1315
P.S. added native JSON parser if present, IE8 as example shows no differences between my proposal and native plus json2 suggested function. Moreover, my regexp...
Andrea Giammarchi
an_red...
Offline Send Email
Aug 7, 2009
2:59 pm
1316
Is there a definition of these Dates and other new features in JSON2 as defined on the website www.json.org (i.e., using the train track model). My JSON parser...
Mark Joseph
markjoseph_sc
Offline Send Email
Aug 7, 2009
6:09 pm
1317
... There is no JSON2. json2.js is a JSON library for JavaScript. JSON has not changed. It is still the language that is described at http://www.JSON.org/ and...
Douglas Crockford
douglascrock...
Offline Send Email
Aug 7, 2009
6:17 pm
1318
Thanks, but I don't see date strings referenced on the www.json.org site. There are a lot of different Date formats like RFC822 and the ISO standard. And there...
Mark Joseph
markjoseph_sc
Offline Send Email
Aug 7, 2009
6:27 pm
1319
... JSON has nothing to say about dates. You are on your own....
Douglas Crockford
douglascrock...
Offline Send Email
Aug 7, 2009
6:30 pm
Messages 1289 - 1319 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