Alright there guys Just come on board the json bandwagon, love the potential it promises over xmlhttprequest. But the mainstream web2.0 crowd doesn't seem to ...
571
JMathai
j_t_mathai
Nov 7, 2006 4:23 am
Our JavaScript library for our JSON API is public. There are copy/paste examples. We will be releasing the docs for our JSON API will be released soon. The...
572
Douglas Crockford
douglascrock...
Nov 7, 2006 6:36 pm
I will be presenting on JSON at XML2006 in Boston, December 5-7....
573
Gustavo Muñoz
justavo_munoz
Nov 8, 2006 8:24 am
Douglas, Do you want some support from the community to inform you of some clever uses of JSON? Success stories? Do you want to hear of more cases where JSON...
574
Douglas Crockford
douglascrock...
Nov 8, 2006 11:31 pm
... conference you ... It was strictly informational. If any of you are at the conference, I'd like to meet you....
575
Michael Schwarz
schwarz_inte...
Nov 9, 2006 3:01 pm
I know there are several requests, but what about a conference here in Europe? Regards, Michael ... -- Best regards | Schöne Grüße Michael Microsoft MVP -...
576
Douglas Crockford
douglascrock...
Nov 10, 2006 2:28 pm
... I was at W3C 2006 in Edinburgh this year. If invited, I would go anywhere....
577
graham615
Nov 11, 2006 8:45 pm
I am looking to do the same thing. I am looking at Gold Parser. I need to get a BNF description of JSON. Gold parser will create the parse tables then the...
578
Douglas Crockford
douglascrock...
Nov 13, 2006 2:08 am
JsonML is an application of JSON for document markup. JSON was not designed for such applications, and is not as effective than XML (much as XML is less...
579
Mark Miller
capsecure
Nov 13, 2006 4:31 am
... From this BNF, a comma separated list of attribute is an attribute, but is also an attribute-list. I think you left in a redundant production. -- Text by...
580
Mark Miller
capsecure
Nov 13, 2006 6:26 am
... What about XML namespaces? Processing instructions? XML comments? -- Text by me above is hereby placed in the public domain Cheers, --MarkM...
581
Michal Migurski
michal_migurski
Nov 13, 2006 5:28 pm
... La, la, la (hands placed over ears). ... michal migurski- contact info and pgp key: sf/ca http://mike.teczno.com/contact.html...
582
Martin Cooper
mfncooper
Nov 13, 2006 5:43 pm
... As far as I can tell, Doug is just the messenger here, and is not responsible for JsonML. Also, there's no indication that the real author (Stephen M....
583
Stephen M. McKamey
stephen.mckamey
Nov 13, 2006 6:01 pm
I just joined as you were writing... I noticed the post about the grammar redundancy and you are right, so I changed it last night. Also I made some...
584
Stephen M. McKamey
stephen.mckamey
Nov 13, 2006 6:15 pm
To be honest, JsonML was never meant to replace XML, simply to more tightly work with XML-based markup in a JSON-savvy framework. I don't see any reason why...
585
Douglas Crockford
douglascrock...
Nov 13, 2006 7:54 pm
Here is another crossover application of JSON: http://www.featureblend.com/css-json.html...
586
Stephen M. McKamey
stephen.mckamey
Nov 14, 2006 12:25 am
... toJSONString I ... make ... A little late to the conversation but... another alternative could be to use the typeof operator (assuming one was iterating...
587
Martin Cooper
mfncooper
Nov 14, 2006 1:20 am
... Sure - if the for loop is in your own code, and not some other package that you're just trying to make use of. This issue really needs to be fixed in the...
588
Stephen M. McKamey
stephen.mckamey
Nov 14, 2006 2:05 am
// This should do what you are asking for while staying // current with Crockford's latest code: // after json.js has loaded... // define a namespace to...
589
Martin Cooper
mfncooper
Nov 14, 2006 2:46 am
... Right. But I don't understand the resistance (or, actually, just lack of any feedback at all) to having the kind of solution I described before (in another...
590
Douglas Crockford
douglascrock...
Nov 14, 2006 2:33 pm
JavaScript is an imperfect language. The weird interaction between augmentation of prototypes with the for..in statement is evidence of this. This defect in...
591
Kevin Prichard
kevin3prichard
Nov 14, 2006 5:22 pm
http://openjsan.org/ A CPAN-alike for Javascript library projects. Search appears to be broken, but overall looks useful....
592
Stephen M. McKamey
stephen.mckamey
Nov 16, 2006 1:58 pm
I just posted on http://jsonml.org an XSLT for generically converting XML to JsonML. This might help people better visualize the markup. ... (much...
593
Gaetano Giunta
gaetanogiunt...
Nov 17, 2006 9:43 am
Hi all. I tought you might interested in the comparison of PHP json libs I posted here: http://gggeek.altervista.org/sw/article_20061113.html Any feedback is...
594
Robert Cerny
robert_cerny
Nov 26, 2006 11:47 pm
I am happy to announce the first release of my library Cerny.js [1]. It offers a solution for validating JavaScript objects against a Schema [2] and it...
595
prashant_shah09
Nov 30, 2006 6:29 am
Hi, how to send javascript variables from one domain to another by JSON ?...
596
Douglas Crockford
douglascrock...
Nov 30, 2006 2:24 pm
... In the short term, you can use a technique such as this: http://www.xml.com/lpt/a/2005/12/21/json-dynamic-script-tag.html Be very careful though because it...
597
prashant shah
prashant_shah09
Dec 1, 2006 4:47 am
Thanks, but there i didn't find my solution. Actually i want to do some calculation in javascript file and send the value through variable. How can i set this...
598
V. Karthik Kumar
kkgoesnuts
Dec 1, 2006 5:28 am
Hi, What you'd ideally do is, eval() or parse the json string into a javascript object. Then perform changes on it. Then serialize it back to a string, and use...
599
mertsakarya@...
mertsakarya
Dec 1, 2006 7:02 am
"Other Domain" is an issue, if you are working on internet. There is also a solution of creating a IFRAME. But I believe most of the members of this group...