Hello everyone, Are any of you still supporting legacy ASP Classic systems? If so you maybe interested in json2.asp (originally called json4asp). It's a ...
1409
Petri Lehtinen
akhern...
Nov 9, 2009 1:06 pm
Jansson v1.1.2 is out. This is a bug fix release in the 1.1 release series. Changes since v1.1.1: * Fix a bug where an error message was not produced if the...
1410
Fredag_d13
Nov 15, 2009 3:16 pm
Hi JSON-fans PL/JSON is a JSON-implementation written in PL/SQL for Oracle. Since no bugs has been found in more than a month, I have changed the project...
1411
Kris Zyp
kriszyp
Dec 5, 2009 5:10 am
For those interested, JSON Schema has been submitted as an Internet Draft to the IETF: http://tools.ietf.org/html/draft-zyp-json-schema-01 -- Kris Zyp SitePen...
1412
Wayne
wain_mike
Dec 5, 2009 5:40 pm
Hi all, The latest version of jswoof has finally gone live. But its far from an update its a complete rewrite. enabling it to acheive speeds 3x faster than...
1413
Douglas Crockford
douglascrock...
Dec 10, 2009 5:24 am
The server at JSON.org is getting hammered. It turns out that there are some sites that are linking directly to json2.js instead of dispensing it from their...
1414
brianmario
gislobber
Dec 10, 2009 5:32 am
Any interest in moving your code to an account on Github? Might also help with people's desire for versioned-versions of your various code currently hosted...
1415
Douglas Crockford
douglascrock...
Dec 13, 2009 1:00 am
There is more information at http://www.stevesouders.com/blog/2009/12/10/crockford-alert/ and...
1416
Wayne
wain_mike
Dec 13, 2009 5:32 pm
Hi All, Jswoof tiny has now been re-built using the new jswoof v1.12 core library. As usual you can get the jswoof from http://www.waynemike.co.uk/jswoof ...
1417
Andrea Giammarchi
an_red...
Dec 13, 2009 6:12 pm
Douglas, I think this move was brilliant, but as I have twitted, I wonder how many devs wrote a: window.alert = function(){}; before including external...
1418
Douglas Crockford
douglascrock...
Dec 13, 2009 6:38 pm
... The point I was making was that if you care about reliability, security, and performance, then you shouldn't load scripts directly from third party...
1419
Philip Tellis
philiptellis
Dec 13, 2009 7:18 pm
2009/12/14 Douglas Crockford <douglas@...> ... I think he's suggesting that the people who need to get the point may not actually get it - they'll...
1420
Andrea Giammarchi
an_red...
Dec 14, 2009 12:49 am
Just to underline another thing: ... reliability ... they are including the de facto official JSON library for JavaScript security ... they trust your...
1421
Andrea Giammarchi
an_red...
Dec 14, 2009 12:52 am
If you go in YUI 3 Configurator the Result page provides a script to copy and paste to include remotely the library. ...
1422
Leen Besselink
leen@...
Dec 14, 2009 11:36 am
... Hi Andrea, I think you are forgetting that the (current) json.org website is probably just a shared-hosting account. So that probably means it's not as...
1423
nostalgiker
Dec 17, 2009 7:51 am
i noticed that this works with the native JSON object in FF3.5.5 JSON.parse(["true"]) but with the json2.js this throws an error. which one is the intended...
1424
Fredag_d13
Dec 17, 2009 10:41 am
I guess that json2.js is supposed to work on Json-Text and not java arrays with json-text. You could do this instead: JSON.parse(39;["true"]');...
1425
nostalgiker
Dec 17, 2009 10:51 am
okay, i figured that out ;) bwt it's a plain javascript array, not java. but i was actually wondering why IE8 and FF3.5+ allow this with their native JSON...
1426
Alexandre Morgaut
alexandre_mo...
Dec 17, 2009 11:12 am
JavaScript provides automatic type conversions on a lot of action So if you do var foo = ["bar"] + " baz"; ["bar"] will be converted into "bar" and you'll have...
1427
Petri Lehtinen
akhern...
Dec 18, 2009 9:00 pm
Jansson v1.1.3 is out. This is a bug fix release in the 1.1 release series. Changes since v1.1.2: * Encode reals correctly, so that first encoding and then...
1428
Fredag_d13
Dec 20, 2009 11:28 am
Hi JSON fans I'm currently creating a project where I need a JSON parser in Java. There's no lack of Java JSON-parsers at json.org, in fact there's 18...
1429
Wayne
wain_mike
Dec 23, 2009 10:24 pm
Hi all, The first port of jswoof has now been uploaded. You can now get jswoof for c#. You can download the beta from: http://www.waynemike.co.uk/jswoof/csharp...
1430
Henri Gourvest
hgourvest
Dec 25, 2009 1:18 pm
I just found an interesting json validator "Orderly is a textual format for describing JSON. Orderly can be compiled into JSONSchema. It is designed to be easy...
1431
Wayne
wain_mike
Jan 1, 2010 10:06 pm
Hi all, The jswoof website has now been updated to reflect all changes that have recently been made to the library. Work is also under on the C# version of the...
1432
Wayne
wain_mike
Jan 3, 2010 3:09 pm
Hi all. Jswoof version 1.13 is ready for download. Its contains a new clause in the parseObject function that throws an exception if no key is present. as...
1433
nostalgiker
Jan 4, 2010 1:11 pm
... i realize this is mailinglist is about json2.js. but i was wondering why firefox allows passing an array and json2.js not. and which one is the "correct"...
1434
Fredag_d13
Jan 4, 2010 2:35 pm
According to this page: http://www.west-wind.com/weblog/posts/729630.aspx, the native implementation is based upon the interface of json2.js. In fact you...
1435
Luke
y_lsmith
Jan 5, 2010 5:16 pm
Neither are correct. The ECMAScript 5 spec states the first step of JSON.parse is to call ToString( text ). That means JSON.parse(["true"]); should be...
1436
nostalgiker
Jan 7, 2010 12:07 pm
... thank you, that was the answer is was looking for. should have checked the spec......
1437
nostalgiker
Jan 7, 2010 12:16 pm
is mr.crockford reading this list? imo this is then a bug in json2.js since JSON.parse(['true39;]) fails in his implementation but it should behave like ecma5's...