Search the web
Sign In
New User? Sign Up
json · JSON JavaScript Object Notation
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 936 - 965 of 1408   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
936
FYI, an update for JsonFx JsonSerializer is available. Round-trip support is improved for strongly typed objects. http://jsonfx.net/BuildTools/ Features: -...
Stephen M. McKamey
stephen.mckamey
Offline Send Email
Feb 6, 2008
2:32 am
937
Is anyone aware of a JSON parser written in JavaScript that doesn't use the eval() function at all, but instead just does the entire parsing using regular...
Jesse Skinner
jessephrenic
Offline Send Email
Feb 7, 2008
11:12 am
938
The Jayrock project has a json.js version that supports both. A "safe eval" as well as a pure JavaScript JSON parser available via the "parse" method. See...
Atif Aziz
azizatif
Offline Send Email
Feb 7, 2008
11:40 am
939
Yes. Doug Crockford's ORIGINAL json parser {circa 2005 or so} did NOT use the eval function -- it was a strict tokenizer / regex mechanism both for parsing a...
Greg Patnude
gregpatnude
Offline Send Email
Feb 7, 2008
2:09 pm
940
json_parser.js is a JavaScript JSON parser that does not use eval. It can be used in environments in which Regexp or eval is not available. ...
Douglas Crockford
douglascrock...
Offline Send Email
Feb 9, 2008
12:30 am
941
Hi I have released a beta version of my Json.NET library. This new version adds LINQ to JSON. You can find out more about LINQ to JSON here: ...
james.newtonking
james.newton...
Offline Send Email
Feb 12, 2008
7:21 pm
942
Hi All, I have just started looking into using JSON as a way to send data between the client and server. I would like to know which JSON to use? I see...
Culbreth, Garland
gtcul
Offline Send Email
Feb 14, 2008
12:35 pm
943
Hi all, I would like to announce the release of my JSON Serialization library for C#. The project is called JsonExSerializer can be found at: ...
Ted Elliott
tedelliott24
Offline Send Email
Feb 18, 2008
1:35 pm
944
Hi all, I've developed a 1-1 (reversible) mapping from JSON into XML in order to be able to process JSON from XQuery. The current CVS version of XQilla ...
John Snelson
john_pc_snelson
Online Now Send Email
Feb 25, 2008
3:18 pm
945
Hi, Douglas Crockford asked me to report the problem on this yahoo group. I am using CLDC 1.1 and MIDP 2.1. If the json.me package was meant to support this...
Himanshu Ranavat
himanshu_ran...
Offline Send Email
Feb 26, 2008
5:54 am
946
It will work in CDC - Personal Profile http://java.sun.com/javame/reference/apis/jsr216/ Maybe its better, if we use a ported version of this class so it can...
Himanshu Ranavat
himanshu_ran...
Offline Send Email
Feb 26, 2008
5:59 am
947
Hi Himanshu, An update of the org.json.me library hosted at https://meapplicationdevelopers.dev.java.net/mobileajax.html worked around this issue by supplying...
Akhil Arora
akhilatsun
Offline Send Email
Feb 26, 2008
10:36 pm
948
Hi, I do not have access to the ability to upload or make changes to json.org website. However, my personal suggestion would be to take an updated zip file...
Himanshu Ranavat
himanshu_ran...
Offline Send Email
Feb 27, 2008
3:54 pm
949
... json.org website. ... on json.org website Send me a file of good stuff and I will put it on JSON.org....
Douglas Crockford
douglascrock...
Offline Send Email
Feb 28, 2008
3:34 pm
950
Okay, let see if I can come up with something Himanshu Douglas Crockford <douglas@...> wrote: > I do not have access to...
Himanshu Ranavat
himanshu_ran...
Offline Send Email
Feb 28, 2008
5:31 pm
951
Support was added to the Java reference implementation for Apple's Old Style ASCII Property Lists. It recognizes strings, arrays, and dictionaries. It is...
Douglas Crockford
douglascrock...
Offline Send Email
Mar 1, 2008
3:23 pm
952
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...
rui.maciel
Offline Send Email
Mar 15, 2008
3:52 pm
953
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...
Douglas Crockford
douglascrock...
Offline Send Email
Mar 17, 2008
1:24 pm
954
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...
Douglas Crockford
douglascrock...
Offline Send Email
Mar 22, 2008
8:28 pm
955
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...
Douglas Crockford
douglascrock...
Offline Send Email
Mar 24, 2008
10:31 pm
956
json_parse.js is a JSON parser written in JavaScript without any use of RegExp. http://json.org/json_parse.js...
Douglas Crockford
douglascrock...
Offline Send Email
Mar 26, 2008
11:48 pm
957
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...
Jorge Chamorro
george_of_th...
Offline Send Email
Mar 27, 2008
8:57 am
958
... As a matter of discipline, I always declare things before I use them. ... Some people are distrustful of regular expressions. An implementation that does...
Douglas Crockford
douglascrock...
Offline Send Email
Mar 27, 2008
1:16 pm
959
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...
Tatu Saloranta
cowtowncoder
Offline Send Email
Mar 27, 2008
5:46 pm
960
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...
Thomas Jansen
tc.jansen
Offline Send Email
Mar 30, 2008
3:56 pm
961
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 ...
plexium_nerd
Offline Send Email
Apr 1, 2008
5:13 pm
962
Are you aware of JSONPath, and XPath-like functionality for JSON that it already provides? http://goessner.net/articles/JsonPath/...
kriszyp
Online Now Send Email
Apr 1, 2008
8:41 pm
963
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...
plexium_nerd
Offline Send Email
Apr 1, 2008
10:11 pm
964
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...
osirisdf
Offline Send Email
Apr 2, 2008
12:04 am
965
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...
Michael Schøler
michael.scholer
Offline Send Email
Apr 2, 2008
6:14 am
Messages 936 - 965 of 1408   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help