Okay, let see if I can come up with something Himanshu Douglas Crockford <douglas@...> wrote: > I do not have access to...
951
Douglas Crockford
douglascrock...
Mar 1, 2008 3:23 pm
Support was added to the Java reference implementation for Apple's Old Style ASCII Property Lists. It recognizes strings, arrays, and dictionaries. It is...
952
rui.maciel
Mar 15, 2008 3:52 pm
I'm proud to announce that MJSON v0.8 has been released! MJSON is Maciel's JSON parser, a small light-weight library that handles documents written in the JSON...
953
Douglas Crockford
douglascrock...
Mar 17, 2008 1:24 pm
JSLint (www.JSLint.com) was updated recently to include new RegExp literal policies. http://www.JSON.org/json.js and http://www.JSON.org/json2.js have been...
954
Douglas Crockford
douglascrock...
Mar 22, 2008 8:28 pm
I have updated json2.js, adding features suggested by Mark Miller and Chris Zyp. JSON.parse can take a reviver function that is passed each key and value, with...
955
Douglas Crockford
douglascrock...
Mar 24, 2008 10:31 pm
I have updated json2.js to include a prettyprinting option. If the third parameter is a string (such as "\t" or " ") or a number of spaces, then nested...
956
Douglas Crockford
douglascrock...
Mar 26, 2008 11:48 pm
json_parse.js is a JSON parser written in JavaScript without any use of RegExp. http://json.org/json_parse.js...
957
Jorge Chamorro
george_of_th...
Mar 27, 2008 8:57 am
Line 170 is an enigma : (var) value, // Place holder for the value function. As (var) value = f() is defined later on @line 230... does 170 really make...
958
Douglas Crockford
douglascrock...
Mar 27, 2008 1:16 pm
... As a matter of discipline, I always declare things before I use them. ... Some people are distrustful of regular expressions. An implementation that does...
959
Tatu Saloranta
cowtowncoder
Mar 27, 2008 5:46 pm
On Thu, Mar 27, 2008 at 1:56 AM, Jorge Chamorro <jorge@...> wrote: ... You may well be right that a regexp based one is faster (given JS' lack of...
960
Thomas Jansen
tc.jansen
Mar 30, 2008 3:56 pm
Thanks for all the feedback on the initial release of TinyJSON ("A Minimalistic JSON Reader in C++"). Finally, I found some time to include most of the ideas...
961
plexium_nerd
Apr 1, 2008 5:13 pm
Howdy All, I'd just like to put my JPath library out there in case others might find it as useful as i did. http://bluelinecity.com/software/jpath ...
962
kriszyp
Apr 1, 2008 8:41 pm
Are you aware of JSONPath, and XPath-like functionality for JSON that it already provides? http://goessner.net/articles/JsonPath/...
963
plexium_nerd
Apr 1, 2008 10:11 pm
When I decided to make Jpath, no. It wasn't until afterwards when i found that library. However, they are still pretty different and each offer different...
964
osirisdf
Apr 2, 2008 12:04 am
Hello, I have a slight problem, an adequate explanation of which I have not been able to find. I'm hoping you can shed some light on the matter... I'm trying...
965
Michael Schøler
michael.scholer
Apr 2, 2008 6:14 am
Hi JSON group, I'm brand new here and was invited here by Douglas Crockford (thanks, I'm honored!) based on my work with a jsonDiff implementation, so I guess...
966
Tatu Saloranta
cowtowncoder
Apr 2, 2008 3:27 pm
Hi Michael! One quick suggestion: On Tue, Apr 1, 2008 at 11:14 PM, Michael Schøler <michael.scholer@...> wrote: ... You may be aware of this, but...
967
Stephen M. McKamey
stephen.mckamey
Apr 2, 2008 3:36 pm
Also a good mapping for round-trip support of JSON-XML conversion is JsonML: http://jsonml.org It works with any type of XML including XHTML....
968
Michael Schøler
michael.scholer
Apr 2, 2008 4:25 pm
... I was not aware, I'll have a look at it. But not for the current project which is done in C# / .net. ... Great - let me know if you like it. /Michael...
969
Gustavo Munoz
justavo_munoz
Apr 3, 2008 1:57 am
Have you run any benchmark between both libraries for some of the common features? ... -- Blog: http://justavo.blogsome.com/ [Non-text portions of this message...
970
plexium_nerd
Apr 4, 2008 3:08 am
I'm not sure if this benchmark is useful or not but i threw together a set of three tests which just iterates over equivalent queries 1000 times. Since there's...
971
Bill Guindon
webgorilla
Apr 4, 2008 3:37 am
I'm looking for a script/example/library written in VBA to parse JSON data. I didn't see one on json.org, and have had little luck with Google searches....
972
Atif Aziz
azizatif
Apr 4, 2008 10:46 am
The fastest way to get started would be to load the JScript (MS's JavaScript engine) and get it to parse the JSON, like this: Set sc =...
973
Gaetano Giunta
gaetanogiunt...
Apr 4, 2008 1:19 pm
a bit out of scope, but carefully written javascript libraries can all be used this way. And there should be a lot that support json via eg. regexps (if plain...
974
Atif Aziz
azizatif
Apr 4, 2008 1:51 pm
... Right and so one could leverage json2.js like this: Set sc = CreateObject("ScriptControl") sc.Language = "JScript" Set xhr =...
975
Matthew Morley
mpcmtechnolo...
Apr 4, 2008 2:06 pm
In the past I tried this within VB6 apps and using the script object seemed to cause Norton Anti-virus throw scripting alerts and halt execution until the user...
976
Bill Guindon
webgorilla
Apr 4, 2008 2:40 pm
Thanks to all who replied, we'll be experimenting with the suggestions. ... That would be a problem, in the long run, we're looking to ship this to customers. ...
977
Arthur Blake
blakesys
Apr 10, 2008 12:05 am
I have written a lot of applications that make heavy use of JSON data. In fact, I often store large amounts of JSON data in configuration files instead of...
978
Tatu Saloranta
cowtowncoder
Apr 10, 2008 4:29 am
One question: wouldn't it be easier to just use TreeMap for storing fields, instead of HashMap, if sorting is desired? -+ Tatu +-...
979
Arthur Blake
blakesys
Apr 10, 2008 12:13 pm
... That was my first thought when thinking about how to do it, as well. That would make sense if you wanted to always keep and use the JSON sorted. In one of...