From 5cdc678d244723626067cbda5702a7e7d481fd6d Mon Sep 17 00:00:00 2001 From: Zooko O'Whielacronx Date: Fri, 29 Feb 2008 18:39:25 -0700 Subject: [PATCH] docs: fix example JSON in webapi.txt to be legal JSON. ;-) --- docs/webapi.txt | 44 ++++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/docs/webapi.txt b/docs/webapi.txt index 5fa6301a..e5e492ef 100644 --- a/docs/webapi.txt +++ b/docs/webapi.txt @@ -120,11 +120,11 @@ d. examining files or directories GET $FILEURL?t=json : - [ 'filenode', { 'ro_uri': file_uri, - 'size': bytes, - 'metadata': {'ctime': 1202777696.7564139, - 'mtime': 1202777696.7564139, - }, + [ "filenode", { "ro_uri": file_uri, + "size": bytes, + "metadata": {"ctime": 1202777696.7564139, + "mtime": 1202777696.7564139 + } } ] If it is a directory, then it includes information about the children of @@ -136,24 +136,24 @@ d. examining files or directories GET $DIRURL?t=json : - [ 'dirnode', { 'rw_uri': read_write_uri, - 'ro_uri': read_only_uri, - 'children': [ - 'foo.txt': [ 'filenode', { 'ro_uri': uri, - 'size': bytes, - 'metadata': { - 'ctime': 1202777696.7564139, - 'mtime': 1202777696.7564139, - }, + [ "dirnode", { "rw_uri": read_write_uri, + "ro_uri": read_only_uri, + "children": { + "foo.txt": [ "filenode", { "ro_uri": uri, + "size": bytes, + "metadata": { + "ctime": 1202777696.7564139, + "mtime": 1202777696.7564139 + } } ], - 'subdir': [ 'dirnode', { 'rw_uri': rwuri, - 'ro_uri': rouri, - 'metadata': { - 'ctime': 1202778102.7589991, - 'mtime': 1202778111.2160511, - }, - } ], - ] } ] + "subdir": [ "dirnode", { "rw_uri": rwuri, + "ro_uri": rouri, + "metadata": { + "ctime": 1202778102.7589991, + "mtime": 1202778111.2160511, + } + } ] + } } ] In the above example, note how 'children' is a dictionary in which the keys are child names and the values depend upon whether the child is a file or a -- 2.45.2