]> xenbits.xensource.com Git - xenclient/toolstack.git/commitdiff
Update json/README.
authorPrashanth Mundkur <prashanth.mundkur@citrix.com>
Fri, 24 Apr 2009 18:12:19 +0000 (11:12 -0700)
committerPrashanth Mundkur <prashanth.mundkur@citrix.com>
Fri, 24 Apr 2009 18:12:19 +0000 (11:12 -0700)
libs/json/README

index 51b9a10487df2917f644fda4ccae9568634a5b5d..873ccb5ab85e0777f46d471f60c03f00dfa244c3 100644 (file)
@@ -1,5 +1,5 @@
-This directory contains an incremental JSON parser, and a JSON<->OCaml
-conversion function generator.
+This directory contains an incremental JSON parser, a JSON<->OCaml
+conversion function generator, and a JSON-RPC boilerplate generator.
 
 JSON parser:
 ------------
@@ -18,7 +18,7 @@ the input), or (c) a parsing exception.
 JSON <-> OCaml conversion function generator:
 ---------------------------------------------
 
-The generator (in gen_json_conv/) takes as input a file containing _only_ OCaml
+The generator (in gen/json_conv/) takes as input a file containing _only_ OCaml
 type definitions, and generates an output file containing functions to
 convert ocaml values of the specified types to and from json values.
 
@@ -53,7 +53,12 @@ can fail with a conversion exception.
 JSON-RPC boilerplate generator:
 -------------------------------
 
-This generator (in gen_rpc/) takes JSON-RPC definitions specified in a
+This uses the following spec for JSON-RPC:
+
+The JSON-RPC spec being considered here is:
+http://groups.google.com/group/json-rpc/web/json-rpc-1-2-proposal
+
+This generator (in gen/rpc/) takes JSON-RPC definitions specified in a
 json-format, and generates the client-side boilerplate to invoke, and
 the server-side boilerplate to implement, these RPCs.