... No, please. This is now making the string "comment" a reserved word in json objects. Say I am sending blog content in json format. A blog entry has a...
75
Douglas Crockford
douglascrock...
Aug 17, 2005 7:19 pm
... That was not my meaning. If it is important to an application to include commentary, this can easily be handled within the JSON framework. There are no...
76
MPCM
mpcmtechnolo...
Aug 17, 2005 7:48 pm
If you want to include a comment property of the object you're passing, that is your business. It isn't/shouldn39;t be reserved or required by JSON as a spec. ...
77
patrickdlogan
Aug 17, 2005 8:51 pm
... I agree. If the source model includes things called "comment" then it can be represented using any of the json data stuctures that make sense. ... So let's...
78
patrickdlogan
Aug 17, 2005 8:52 pm
... Got it. Thanks for the clarification. I agree with this. -Patrick...
79
Martin Cooper
mfncooper
Aug 17, 2005 9:35 pm
... I don't think version control is a good example. I would contend that, if versioning is important to your app, then comments are absolutely the wrong place...
80
Douglas Crockford
douglascrock...
Aug 17, 2005 9:44 pm
Comments are being removed from JSON. I think that this will have minimal impact because existing decoders can continue to recognize and ignore comments. No...
81
patrickdlogan
Aug 17, 2005 10:16 pm
... Good enough. I'll take the code out of json-py soon. -Patrick...
82
jemptymethod
Aug 17, 2005 11:57 pm
... of ... to ... OK, this is earlier than I wanted to "announce" this, but I've been concerned with the above, plus there are things I want to do that JSON ...
83
Douglas Crockford
douglascrock...
Aug 18, 2005 5:54 am
... If you like. There is no harm in leaving it in. The current Java decoder recognizes comments in the slashslash, slashstar, and hash forms. I am leaving it...
84
Douglas Crockford
douglascrock...
Aug 18, 2005 6:06 am
JSON is been pretty much as it was when first proposed in 2002, except for two recent changes, both of which were motived by observation of usage. The first...
85
southcoastislander
southcoastis...
Aug 19, 2005 2:31 pm
Hello, I'm fairly new at Json, so please be patient with me :). Right now, i'm creating a web app which returns database results in asynchronous fashion,...
86
Alex Thomson
abthomson@...
Aug 19, 2005 2:53 pm
Not too sure what you mean by formatting dynamic tables on the fly but it sounds like you just want the query results. Using the MySQLdb Python module, you...
87
Dale
code_ronin
Aug 20, 2005 2:09 am
An interesting reference to JSON in the "State of AJAX" blog (at http://hinchcliffe.org/archive/2005/08/18/1675.aspx). "SOA Implications One: Ajax clearly...
88
Martin Cooper
mfncooper
Aug 20, 2005 5:11 am
... I would think that the fact that a parse is successful no longer means that the input was valid JSON would be a pretty good reason to take it out... -- ...
89
TCQ
despam2004
Aug 20, 2005 4:22 pm
Greetings fellow JSON Lovers. I have been spending building a great deal of complex Product/Business workflow wizards and tools that are required to handle...
90
Ronny Hanssen
ronnyh1969
Aug 20, 2005 4:52 pm
In general my experience on this matter is only positive. I've had *no* negative effects or side effects whatsoever. Specific comments inlined below. TCQ...
91
Michal Migurski
michal_migurski
Aug 20, 2005 7:12 pm
... I use this method in my PHP work pretty often, especially when consuming GET or POST vars, or instantiating objects which have a mix of required and...
92
George
georgenava
Aug 21, 2005 3:23 am
That is valid javascript code, as pointed out already, object literals. You can also create the object first, then pass it to the method: args = {type:"My...
93
Michael Schwarz
schwarz_inte...
Aug 23, 2005 6:22 am
Hello, I will first introduce myself: I'm the author of the Ajax.NET (http://ajax.schwarz-interactive.de/ or http://weblogs.asp.net/mschwarz/) and using JSON...
94
schwarz_interactive
schwarz_inte...
Aug 23, 2005 6:28 am
... Yes, I do, have a look at http://ajax.schwarz-interactive.de/. CIAO Michael ... communicate ... use ... rather...
95
Atif Aziz
azizatif
Aug 23, 2005 7:04 am
Hi Michael, I have written such a parser in C#. The parser is an adaption of the JSONTokener port available from Douglas Crockford's web site [1]. I have...
97
incrediblybuilt
Sep 5, 2005 6:52 pm
We are producing a calendar app that uses JSON as the interchange format. You can check it out at www.kiko.com....
98
jeffrey_horner
Sep 7, 2005 6:03 pm
... [...] ... Indeed. I would certainly use JSON if it contained cyclical structures. Maybe you could elaborate on this, maybe even show us some examples of...
102
lorphos
Sep 23, 2005 3:15 pm
... Interesting. Is the API going to be JSONRPC? -Sven...
103
Peter Ring
peter17ring
Oct 6, 2005 5:18 pm
Is there a way to ensure that key names and string values are represented as unicode objects by a JSON reader? Specifically, I'm using json-py in a context...
104
Jim Washington
jimcburg
Oct 6, 2005 7:01 pm
... Hi, Peter You have made an interesting case for the idea that strings read from JSON in python should be python unicode objects. For the time being, I...
107
Douglas Crockford
douglascrock...
Oct 19, 2005 3:53 pm
I added some grammar to www.JSON.org to describe strings and numbers. This is not a change to the language. It is just completing the grammar so that it...
108
Will Coleda
will_coleda
Oct 21, 2005 10:20 pm
I just committed about half a JSON implementation into the parrot source tree (converting Parrot PMCs into JSON strings.) Conversion the other way will...
109
technites80
Nov 2, 2005 8:12 am
Hi, I'm looking into developing a lightweight pull parser for JSON on mobile devices. Is anything like this already available? John Wright...