Hi, I'm developing a web front-end to our student database and I'd like to let the users specify what fields they want in their view and be able to filter and...
1248
Gene Berger
corneranalyst
May 6, 2009 1:15 am
I a new at JSON but have been doing stuff like this for 27 years. (JSON is just another form of data transportation as when EDI was king over XML 10-25 years...
1249
Brian Lopez
gislobber
May 6, 2009 2:36 am
Hey everyone, Just wanted to announce my new ruby C bindings to Yajl creatively called: yajl-ruby ;) The sources are up on Github for now at...
1250
Tyler Close
tjclose
May 7, 2009 5:43 pm
The web_send library provides a concise and expressive API for interacting with arbitrary JSON resources from the web browser. When used from the Firebug...
1251
Kris Zyp
kriszyp
May 7, 2009 5:52 pm
This looks really cool. Have you tried it with existing servers to see how compatible it is with current implementations of HTTP/JSON servers? This data...
1252
Guillaume Filion
gfk08
May 7, 2009 6:18 pm
... Yes the user would have a nice graphical interface to specify which fields he wants. Also, I would validate the fields names on the backend before creating...
1253
Tyler Close
tjclose
May 7, 2009 6:47 pm
... Thanks! ... The implementation currently supports GET and POST to an arbitrary URL with an arbitrary JSON request entity and an arbitrary JSON response ...
1254
rui.maciel
May 7, 2009 11:12 pm
I'm proud to announce that MJSON v1.1 has been released! MJSON is Maciel's JSON parser, a small light-weight library that handles documents written in the JSON...
1255
nic.volanschi
May 11, 2009 9:52 pm
... The most similar technology is LINQ, which for JavaScript translates as JSLINQ (http://jslinq.codeplex.com/). But you may take a look to...
1256
nic.volanschi
May 11, 2009 10:23 pm
Hi, I am pleased to announce you the availability of a novel free library for JavaScript, called myPatterns/JS, implementing pattern matching in JSON and other...
1257
lhilaiel
May 14, 2009 3:43 pm
I guess yajl-ruby hasn't been announced on this list, so here goes... Brian Lopez has been feverishly working on ruby bindings for yajl, and has reported some...
1258
Andrea Giammarchi
an_red...
May 27, 2009 1:27 pm
(it was a direct message, I have copied and pasted here as well) Good afternoon Mr Douglas Crockford, I wonder if you have seen already my latest JSON related...
1259
Kris Zyp
kriszyp
May 27, 2009 1:38 pm
What level of difference is there between raw database result set name value paired that has been gzipped and hunpack'ed data that has been gzipped? I know...
1260
an_red@...
an_red...
May 27, 2009 3:51 pm
Kris, hope I got your question. Basically, as you said gzip is able to reduce drastically redundant words (in JSON case, every collection repeated key) This...
1261
Tatu Saloranta
cowtowncoder
May 27, 2009 7:09 pm
On Wed, May 27, 2009 at 6:27 AM, Andrea Giammarchi ... This seems like a simple and possibly sensible convention. But in addition to having an implementation,...
1262
an_red@...
an_red...
May 28, 2009 8:26 am
Tatu, gzip works faster in any case over JSON.hpack(ed) stuff for the same reason JSON.stringify / parse is faster over JSON.hpacked stuff, less characters to...
1263
Tatu Saloranta
cowtowncoder
May 28, 2009 11:40 pm
On Thu, May 28, 2009 at 1:25 AM, an_red@... ... Yes, certainly, not arguing with that, wrt. speed. ... No doubt, it should be a fairly simple...
1264
an_red@...
an_red...
May 29, 2009 10:30 am
Is something like this enough? http://wiki.github.com/WebReflection/json.hpack/specs-details Best Regards. Andrea Giammarchi...
1265
Tatu Saloranta
cowtowncoder
May 29, 2009 5:23 pm
On Fri, May 29, 2009 at 3:29 AM, an_red@... ... I think so (didn't read in detail) -- and if there are questions, it's easy to contact you and suggest...
1266
W
wain_mike
May 31, 2009 11:58 am
jswoof version 1.04 has been released. providing more speed improvements. some minor bug fixes and updated documentation. as usual you can get the latest...
1267
Tyler Close
tjclose
Jun 1, 2009 1:10 pm
Last month, I announced the web_send library on this list: http://tech.groups.yahoo.com/group/json/message/1250 When hosted by your server, the web_send...
1268
Stephen M. McKamey
stephen.mckamey
Jun 1, 2009 8:36 pm
We have been having a heck of a time with an issue in IE8's implementation of JSON.stringify(). It appears that IE8 *sometimes* encodes an empty string as the...
1269
Ric Johnson
ricjohnsoniii
Jun 2, 2009 1:27 am
IE may have a REFERENCE to the origianl object. In your first example, when coerced into a string from th LEFT, they are equivilant The stringify method may...
1270
Stephen M. McKamey
stephen.mckamey
Jun 2, 2009 1:42 am
The triple-equals shouldn't be coercing the arguments before comparison. Reversing the order of the test to (bad === good) still results in true. To top that...
1271
Stephen M. McKamey
stephen.mckamey
Jun 2, 2009 3:42 pm
Below is the answer from Microsoft about this bug in JSON.stringify. Thanks Douglas Crockford for forwarding on to the appropriate contact at Microsoft. It...
1272
W
wain_mike
Jun 2, 2009 8:01 pm
jswoof version 1.05 has been released. This version contains a small fix for escaped uni-code characters during serialization. please check out...
1273
Stephen M. McKamey
stephen.mckamey
Jun 2, 2009 8:24 pm
Allen Wirfs-Brock suggested another work-around to the IE8 native JSON issue: Another work-around that is isolated to a single place is to use IE8's "mutable...
1274
JIJO DASGUPTA (ANAND)
jijodasgupta
Jun 8, 2009 2:22 pm
<!-- this is the javascript json parser function --> <script type="text/javascript" src="../jquery-1.2.6.min.js"> </script> <script type="text/javascript"> ...
1275
Douglas Crockford
douglascrock...
Jun 8, 2009 3:34 pm
... Your question is out of scope for this group. Ask the jQuery people....
1276
W
wain_mike
Jun 9, 2009 9:04 pm
jswoof version 1.06 has been released. containing a major speed improvement to the array parsing functions. As usual please check out...