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. ...
1521
John Cowan
johnwcowan
Apr 21, 2010 5:56 pm
... I haven't looked at the code (which is in C++, for the benefit of other list readers), but according to the documentation, full support for \u escapes is...
1522
jonathan wallace
ninja9578
Apr 21, 2010 6:49 pm
Oh, in order to get my library posted there, I've got to convert everything to wide strings for the full range of \u utf32 characters? Hmm, not sure if I'm...
1523
Douglas Crockford
douglascrock...
Apr 21, 2010 7:44 pm
... UTF-8 is another option....
1524
jonathan wallace
ninja9578
Apr 21, 2010 9:10 pm
UTF8 doesn't support all of the characters supported by \uXXXX, four characters mean UTF16. I do currently support UTF8, but that's only \u00XX. Anyway, since...
1525
Chip Morningstar
epopt
Apr 21, 2010 9:17 pm
That's just wrong. See, e.g., http://en.wikipedia.org/wiki/UTF-8 Chip...
1526
jonathan wallace
ninja9578
Apr 22, 2010 2:32 pm
libJSON 4.0 now fully supports \u escaped sequences if built using unicode. I've added project targets for the library, test suite, and embedded test suites...
1527
Douglas Crockford
douglascrock...
Apr 22, 2010 9:45 pm
... Does it do the right thing with "\uD83492;uDD1E"? See http://www.ietf.org/rfc/rfc4627.txt...
1528
Fredag_d13
Apr 25, 2010 7:23 am
To Douglas Crockford I'm writting some documentation to my JSON API and would like to add some railroad diagrams. Can you tell me how you created the diagrams...
1529
jonathan wallace
ninja9578
Apr 25, 2010 7:33 am
... I thought that wasn't officially part of JSON? There is no mention of it on json.org. I was aware of that, but it left me confused, how would a parser...
1530
Douglas Crockford
douglascrock...
Apr 25, 2010 7:35 am
... I used Visio. The json.vsd file can be found in the Files section. http://tech.groups.yahoo.com/group/json/files/...
1531
Andrea Giammarchi
an_red...
Apr 25, 2010 9:32 pm
Any kind of thought/suggestion is welcome: http://webreflection.blogspot.com/2010/04/json-sleep-wakeup-serialize-and.html In few words, a way to better control...
1532
jonathan wallace
ninja9578
May 5, 2010 5:40 pm
libJSON now handles surrogate pairs correctly: http://sourceforge.net/projects/libjson/ There is also now a makefile in the bundle for linux ...
1533
Mark Joseph
markjoseph_sc
May 10, 2010 8:16 pm
This is our first release of our combined JSON XML product SDK Press Release: https://www.p6r.com/company/news.html Product Page:...
1534
Gary
kaimaikid...
May 29, 2010 7:57 pm
Hi, I'm new to the group as well as to using json and am wondering if someone can write me a json script for .php webpage please? What I need is to be able to...
1535
jonathan wallace
ninja9578
May 29, 2010 8:49 pm
php has a built in function called json_decode. You give it a string and it returns you a stdClass, from there you can do whatever you want. ...
1536
Petri Lehtinen
akhern...
Jun 13, 2010 6:27 pm
Jansson v1.3 is out. This release adds one new encoding flag, enhances the documentation a bit and fixes a few bugs. Changes since v1.2.1 ... * New encoding...
1537
jonathan wallace
ninja9578
Jun 16, 2010 2:09 pm
A lot of people have asked me for makefiles instead of the Code::Blocks project files so I wrote makefiles for each platform. Should be good, but didn't try...
1538
Nic Volanschi
nic.volanschi
Jun 16, 2010 6:17 pm
Hi, I would like to submit a couple of questions to the members of this group, as JSON tools designers and/or users: 1. Are you aware of any JSON codec library...
1539
Craig Boyd
craigsboyd
Jun 16, 2010 9:28 pm
Not that particular syntax, but the basic idea (querying/filtering and result set in JSON) has been around for quite some time. The latest example I can think...
1540
Nic Volanschi
nic.volanschi
Jun 22, 2010 9:42 pm
Hi Craig, Thanks for this pointer, interesting stuff (I never heard about OData before). Nic....
1541
the_old_chief
Jun 25, 2010 9:26 pm
I am a eLearning Application developer who is working on his first experience with JSON. My application has no active server (php, asp, java, etc) to work...
1542
jonathan wallace
ninja9578
Jun 26, 2010 5:13 pm
Think of it like C++, that should help you figure out when to use an object and when to use an array. Basically, an array is a set of items that are the same...
1543
John Cowan
johnwcowan
Jun 26, 2010 5:26 pm
... That's overly restrictive for JSON, whose aggregates are modeled on JavaScript. An array can be seen either as a sequence of data items (same type or...
1544
jonathan wallace
ninja9578
Jun 26, 2010 5:38 pm
I didn't say it was like C++, I just recommended visualizing it that way to help simplify the json that the user had posted. There were many places where...
1545
Jonathan Wallace
ninja9578
Aug 10, 2010 2:05 am
I'm redoing big parts of libjson and I'm going to extend it to use non-standard json (as a compile option, not standard) and I'm curious if anyone foresee any...