Hi, i want to use JSON also with HTML snippets. The snippet has included Smarty variables, i use the FCKeditor as wysiwyg-editor. Firstly i found out that the...
753
rama_singh75
Mar 15, 2007 2:27 am
I like to know if there is any place from where i can download JSON Parser. Is there any place where i can put my xml and get JSON output online. thanx Rama...
754
Stephen M. McKamey
stephen.mckamey
Mar 15, 2007 2:36 am
I've written an XSLT which allows you to go from XML to JSON while still maintaining the ability to go back if you need to. You can read more about it here: ...
756
Douglas Crockford
douglascrock...
Mar 15, 2007 1:39 pm
... There are many available at http://www.JSON.org/...
757
Joshua Raphael Fuentes
joshuarpf
Mar 16, 2007 2:23 am
I have been using json for quite some time now. But just recently, I was starting a new project, and downloaded a new version of json.js from www.json.org. The...
758
george.jempty
Mar 16, 2007 10:30 am
... was starting a new project, and downloaded a new version of json.js from www.json.org. The previous json framework that I used had no problem at all, but I...
759
Douglas Crockford
douglascrock...
Mar 16, 2007 2:11 pm
... was starting a new project, and downloaded a new version of json.js from www.json.org. The previous json framework that I used had no problem at all, but I...
760
Atif Aziz
azizatif
Mar 18, 2007 8:00 am
Back in December, I co-authored an introductory article on JSON together with Scott Mitchell [1]. I finally got news this week that it has gone live and...
761
mertsakarya@...
mertsakarya
Mar 18, 2007 5:34 pm
- A Sunday thought; I was planning to tattoo "XML" on my left shoulder. After I've discovered "JSON", all my data transfer formats became JSON instead of XML....
762
Kevin Prichard
kevin3prichard
Mar 18, 2007 11:49 pm
763
Kevin Prichard
kevin3prichard
Mar 19, 2007 2:33 am
... While XML and JSON are similar, JSON's biggest win is simplicity: it's a convenient, well-supported serialization format that's great for representing...
764
Peter Farland
pjfarland
Mar 19, 2007 3:11 pm
Hi all, I have some questions regarding JSON but they are primarily to do with RPC and serialization. I've noticed that there is a json-rpc group too and am...
765
Douglas Crockford
douglascrock...
Mar 21, 2007 8:53 pm
The JSON.org page is now available in Russian. http://json.org/json-ru.html...
766
Robert Cerny
robert_cerny
Mar 22, 2007 4:15 pm
Demos are online for pretty printing of JSON and schema validation of JavaScript objects: http://www.cerny-online.com/cerny.js/demos Best regards, Robert...
770
pascallouis_perez
pascallouis_...
Mar 22, 2007 7:50 pm
My name is Pascal, and I'm the lead developer over at TwoLattes (www.twolattes.com). We're releasing a useful tool for AJAX oriented Java apps: JsonMarshaller....
771
Joshua Raphael Fuentes
joshuarpf
Mar 23, 2007 1:53 pm
thanks for the tip man.. but I just recently noticed that it happens when I use prototype.js from this scriptaculous framework. Right now, I am using the old...
772
rama_singh75
Apr 2, 2007 5:21 am
Hi, i get data in JSON format, i want to validate or Parse my JSON data in ruby. can it be possible validate JSON data in ruby ? is there any JSON parser for...
773
Mark Ireland
akaidr4vr
Apr 2, 2007 8:35 am
I am wondering what people who know thieir json code make of this: http://www.andyscott.id.au/index.cfm/2007/3/31/CFJsonService-01Alpha-Release AN xml config...
The JSON.org page is now available in Czech. http://json.org/json-cz.html...
776
json_is_clever
Apr 12, 2007 9:52 pm
I was having a discussion with an implementer of a JSON library, and over time the discussion boiled down to an argument over the interpretation of one...
777
Douglas Crockford
douglascrock...
Apr 13, 2007 10:47 pm
... No, that is a wild misreading of the RFC. The JSON text must be represented in Unicode, and the preferred encoding is UTF-8. ... Parties can agree on what...
778
Michael Schwarz
schwarz_inte...
Apr 13, 2007 11:29 pm
I have one more question, do I need to convert unicode characters to something like "\u12345"? Michael On 13 Apr 2007 15:47:13 -0700, Douglas Crockford...
779
Mark Miller
capsecure
Apr 14, 2007 3:14 am
... For example, JSON in E-0.9 accepts only Unicode characters from the "basic multilingual plane", i.e., characters whose code point fits in 16 bits. As I ...
780
json_is_clever
Apr 14, 2007 9:09 am
... Thanks for the clarification, Douglas....
781
Douglas Crockford
douglascrock...
Apr 14, 2007 1:45 pm
... No. The \u notation is only required for some of the control characters....
782
Michael Schwarz
schwarz_inte...
Apr 14, 2007 9:59 pm
Hi, currently I have only something like \r, \n or \t, are those chars allowed? Which control chars are you talking about? Thanks a lot. Michael ... -- Best...
783
Douglas Crockford
douglascrock...
Apr 14, 2007 10:26 pm
... None of the control characters can appear in JSON strings. You can use the \u convention to represent them. A few of them, such as linefeed and tab, have...
784
Douglas Crockford
douglascrock...
Apr 14, 2007 11:55 pm
The JSON.org page is now available in Arabic. http://json.org/json-ar.html...
785
regexman
Apr 15, 2007 9:06 pm
I've recently released a JSON converter for Perl on CPAN called JSON::DWIW. Most of the work is done in C for speed. I have found it to be faster than...