-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:
------------
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.
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.