... You should ask tuzulo.com about how to use their API. This isn't a tuzulo.com support forum, and your question is only tangentially related to json. -- ...
1491
farkmischer
Mar 10, 2010 3:00 pm
I apologize, you are right. I started out not even knowing how to use JSON so that is why I started here. Now that I figured out how to use JSON in .net I...
1492
Patrick
patmaupin
Mar 13, 2010 12:03 am
I am developing a superset of JSON called RSON (Readable Serial Object Notation), at http://code.google.com/p/rson/ (Not that JSON isn't eminently readable,...
1493
Gregg Irwin
greggirwin143
Mar 16, 2010 7:53 am
Hi Patrick, P> I am developing a superset of JSON called RSON (Readable Serial P> Object Notation), at http://code.google.com/p/rson/ I know there was a pyson...
1494
Patrick Maupin
patmaupin
Mar 16, 2010 3:24 pm
... I agree that it came out that way. And I do code in Python, but frankly, I started using YAML, and then changed it until I got something I like (which...
1495
Tatu Saloranta
cowtowncoder
Mar 16, 2010 5:10 pm
... Yes. YAML is a good candidate to explain concept of "Too Much of Everything" (or, "American Ice Cream syndrome" :-)). It is unfortunately quite common to...
1496
Patrick
patmaupin
Mar 21, 2010 5:40 pm
I am pleased to announce the release of RSON 0.06. The goal of the RSON project is to create a file format that is easy to edit, diff, and version control,...
1497
Michael Schøler
michael.scholer
Mar 21, 2010 6:43 pm
Hi Patrick, Is the ordering of the data elements irrelevant in RSON to JSON, or is the manual in error? For example, business logic could (in some cases)...
1498
Patrick Maupin
patmaupin
Mar 21, 2010 6:57 pm
... First of all, for sequences (JSON arrays; Python lists), the order is preserved. For hashes (JSON objects), by default Python dicts are used, which does...
1499
Michael Schøler
michael.scholer
Mar 21, 2010 9:22 pm
... Hi, Fair enough. No it isn't in JavaScript regarding object properties (or JSON for that matter). Only with regards to serialization and de-serialization ...
1500
Petri Lehtinen
akhern...
Apr 3, 2010 5:50 pm
Jansson v1.2.1 is out. This is a bugfix release in the 1.2 release series. Changes since v1.2 ... * Bug fixes: - Fix reference counting on true, false and null...
1501
Mark Joseph
markjoseph_sc
Apr 6, 2010 12:47 am
For people interested in this topic. We are always open to comments and questions. https://www.p6r.com/articles/2010/04/05/xml-to-json-and-back/ Best, Mark...
1502
Dennis Gearon
gearond...
Apr 6, 2010 4:02 am
I'm not really interested in this at the moment. BUT, very nice technical work! If I do need it in the future, it's nice to see good quality ideas and...
1503
Alan Kennedy
alank1610
Apr 6, 2010 12:05 pm
[Mark] ... Hi Mark. Nice work. On reading your article, I saw reference to several existing methods for mapping XML<->JSON. But I didn't see any reference to...
1504
Mark Joseph
markjoseph_sc
Apr 6, 2010 3:58 pm
Thanks Alan, I believe I do reference that mapping but in a different URL, namely: http://onwebdevelopment.blogspot.com/2008/05/converting-xml-to-json.html it...
1505
stephen.mckamey
Apr 6, 2010 5:11 pm
JsonML ( http://jsonml.org ) handles all of these issues and has been embraced by quite a number of places. Many JSON encoders already include support. It...
1506
stephen.mckamey
Apr 6, 2010 5:21 pm
Not that ugly: ["node1", {"a":"45"}, ["node2", {"b":"9", "c":"hithere"}, ["node3", {"d":"abc"}, ["node4", {"e":"12345"}, "JSON has no attributes"] ] ], "Now is...
1507
John Cowan
johnwcowan
Apr 6, 2010 6:14 pm
... Note that Google has announced a different, non-round-tripping, JSON syntax called JSONC for two of its Google Data APIs, YouTube and PicasaWeb. JSONC is...
1508
Mark Joseph
markjoseph_sc
Apr 6, 2010 6:19 pm
Cool stuff, can you show me an example of how JsonML handles XML mixed content, that is not clear to me from the web site. And just so it is clear to me, the...
1509
Mark Joseph
markjoseph_sc
Apr 6, 2010 6:35 pm
Ok I think I see how mixed content works in JsonML: <description lang="en-us"> hi there <bold>joe</bold> how are you </descrption> becomes [ "description",...
1510
stephen.mckamey
Apr 6, 2010 6:43 pm
The attributes object is optional (see the BNF at http://jsonml.org) so you can drop it if empty to make more compact. The example XML: <description...
1511
stephen.mckamey
Apr 6, 2010 6:50 pm
Exactly. We were posting very similar examples at the same time. :)...
1512
Fredag_d13
Apr 7, 2010 8:28 am
That looks pretty perfect to me. I think I will include JSONML support in the next release of my JSON api. Thanks to Mark Joseph for starting this discussion...
1513
Mark Joseph
markjoseph_sc
Apr 7, 2010 11:11 am
We have also decided to support JsonML in our next product version Sent from my iPhone ... [Non-text portions of this message have been removed]...
1514
Douglas Crockford
douglascrock...
Apr 13, 2010 12:52 pm
Sonja Elen Kisa has provided a translation in Esperanto. http://json.org/json-eo.html...
1515
Julien Verlaguet
julienverlaguet
Apr 14, 2010 7:32 pm
Hi all, I wrote a json to json transformation tool. It's a command line tool that uses pattern-matching to write transformations. Example: jsonpat -p...
1516
John Cowan
johnwcowan
Apr 14, 2010 8:05 pm
... You really need to write them down on your wiki page, even if just briefly. (I assume your current wiki page shows just a few of them.) People can't be...
1517
julienverlaguet
Apr 14, 2010 8:33 pm
... Good point, thanks. I tried to give all the ones which I use on an everyday basis. I didn't put all of the ones I consider as "experimental" and subject to...
1518
John Cowan
johnwcowan
Apr 14, 2010 8:57 pm
... That would be very useful, with maybe a one-line comment for each. -- De plichten van een docent zijn divers, John Cowan die van het gehoor ook....
1520
ninja
ninja9578
Apr 21, 2010 1:00 am
Hi JSON group. I wrote this library a few months ago, but I recently made it fully JSON compatible. It's platform and language independent. ...