This release is 90% contributions. Thanks to all who are using YAJL and taking the time to push me patches. YAJL source is moved to a publically visible...
1006
Douglas Crockford
douglascrock...
May 3, 2008 2:42 pm
There are several Unicode characters that JavaScript mishandles, either by silent deletion, or by treating them as line ending characters. json2.js now escapes...
1007
kshitij_ksk
May 5, 2008 1:52 pm
any idea if there is any support available for big decimal no.s in javascript? I have found the ECMA specification (ECMA-262) which mentions that it supports...
1008
kshitij_ksk
May 5, 2008 1:58 pm
As per the specifications mentioned, only 15 significant digits are accepted in javascript. If number exceeds 15 digits then it is rounded off and presented as...
1009
kriszyp
May 5, 2008 2:31 pm
I wanted to see if there was any prevailing consensus on if and how JSON subsets and alternatives should be denoted with MIME types. There are a growing number...
1010
Tatu Saloranta
cowtowncoder
May 5, 2008 4:57 pm
... I think one big practical problem is that there doesn't seem to be a way to gracefully handle the problem of auto-detecting superset in use. That is, plain...
1011
Michal Migurski
michal_migurski
May 5, 2008 5:12 pm
... +1, keep it simple. Most of my JSON use is as a communication format between JS, Python, PHP, etc. There's no value here to having JS-specific features in...
1012
Kris Zyp
kriszyp
May 5, 2008 5:25 pm
Perhaps I wasn't clear, I wasn't intending to propose that anyone needs to adopt a superset of JSON or add any features to JSON. I was simply asking how and if...
1013
Nick Thompson
nix@...
May 5, 2008 11:24 pm
I would like to see one additional mime type and associated file extension, something like text/envelope+json and ".je" - not important. This format would be a...
1014
Stephen M. McKamey
stephen.mckamey
May 6, 2008 2:17 pm
No offense, but I think the replies thus far have missed Kris' point. Kris is trying to get opinions on additional MIME types for specific applications of...
1015
Kris Zyp
kriszyp
May 6, 2008 2:52 pm
Thank you Stephen, this exactly what I was asking! Thanks for clearly articulating this. I was also wondering if there is an option #4, which may be an...
1016
Stephen M. McKamey
stephen.mckamey
May 6, 2008 3:03 pm
I would also support a #4 as you've described as long as whatever it is works within the IANA restraints. It has been a while now since I sifted through the...
1017
Kris Zyp
kriszyp
May 6, 2008 4:01 pm
Thank you, that RFC is very helpful, and they definitely make a strong case for option #3 instead of #4. One of the most important influences in the decision...
1018
Phil
slgsdad
May 16, 2008 1:17 am
I'm upgrading a web page so that it uses ajax. I'm pretty much done, except for one thing. If I have a value determined in a servlet that I need to use in...
1019
Claudio D'angelo
ihepda
May 16, 2008 6:44 am
HI Phil, If I've understood you have a servlet that supply the information used to choice if build a select and (eventually) setted it. You have more choices...
1020
Arthur Blake
blakesys
May 16, 2008 11:48 am
Take a look at http://jabsorb.org ... [Non-text portions of this message have been removed]...
1021
Tatu Saloranta
cowtowncoder
May 16, 2008 6:48 pm
On Thu, May 15, 2008 at 11:38 PM, Claudio D'angelo <claudio.dangelo@...> wrote: ... I have been looking for something like this (assuming it...
1022
Claudio D'angelo
ihepda
May 19, 2008 6:52 am
Hi Tatu, you can found the documentation of JAJB in http://jajb.sourceforge.net/documentation.html (there is a link to pdf). In cc there is the project's...
1023
Martin Cooper
mfncooper
May 19, 2008 1:49 pm
... Have you looked at DWR? It's not an explicit JSON solution, but it's almost certainly the most widely used library for integrating JavaScript on the client...
1024
Peter Michaux
petermichaux
May 19, 2008 5:56 pm
The file http://www.json.org/json2.js begins with /* http://www.JSON.org/json2.js 2008-06-15 Curious date ;-) ... More seriously, This file modifies the built...
1025
Claudio D'angelo
ihepda
May 20, 2008 12:43 pm
By Gabriele Hi all, hi Tatu, ihepda told me you had problems to use jajb because of missing docs about annotation usage! I've just relesed a new pdf guide file...
1026
Tatu Saloranta
cowtowncoder
May 20, 2008 4:52 pm
On Tue, May 20, 2008 at 5:36 AM, Claudio D'angelo ... Thank you for the update! -+ Tatu +-...
1027
Mark Ireland
akaidr4vr
May 20, 2008 7:24 pm
Do you want to see if it works for ColdFusion? ... _________________________________________________________________ Search for local singles online @ Lavalife...
1028
Douglas Crockford
douglascrock...
May 20, 2008 7:31 pm
... circles modifying ... I don't. Augmentation of the core objects is one of the places where we can effectively repair the language. It should not be done ...
1029
Peter Michaux
petermichaux
May 20, 2008 8:38 pm
On Tue, May 20, 2008 at 12:31 PM, Douglas Crockford ... I think in this situation it could introduce bugs in other people's programs. Suppose someone had the...
1030
Martin Cooper
mfncooper
May 20, 2008 8:50 pm
On Mon, May 19, 2008 at 10:56 AM, Peter Michaux <petermichaux@...> wrote: <snip/> ... So do I. I thought this was one of the big steps forward in moving...
1031
Mark Joseph
markjoseph_sc
May 20, 2008 11:53 pm
Is there some place where JSON2 is defined without an implementation (just like version 1.0). Thanks, Mark P6R, Inc On Tue, 20 May 2008 13:50:31 -0700 ... Mark...
1032
Claudio D'angelo
ihepda
May 21, 2008 7:40 am
What? Can you explain better? Thanks...
1033
Mark Joseph
markjoseph_sc
May 21, 2008 4:40 pm
For anyone using C++ with JSON we have built a SAX like parser for JSON that also builds a DOM tree. It then allows our XPath 2.0 and XSLT 2.0 tools to ...
1034
benvanevery
May 21, 2008 6:22 pm
It is my understanding that requests to a web service specifying an output type of JSON should receive responses with the content-type "application/json". Is...