diff --git a/articles/hello-world/index.md b/articles/hello-world/index.md index 85013226..4dd9d2e3 100644 --- a/articles/hello-world/index.md +++ b/articles/hello-world/index.md @@ -21,4 +21,6 @@ The Hello World web app covers the following features: 3. [Specifying Scan Settings]({{site.hello-world}}scan-settings.html) 4. [Editing Images]({{site.hello-world}}editing.html) -> Note: JavaScript in this section follows ECMAScript 5 for backward-compatibility reasons. Please modify the code to use modern features if you are targeting modern environments. \ No newline at end of file +Download the Code of the Hello World + +> Note: JavaScript in this section follows ECMAScript 5 for backward-compatibility reasons. Please modify the code to use modern features if you are targeting modern environments. diff --git a/assets/HelloWorld-Code.zip b/assets/HelloWorld-Code.zip new file mode 100644 index 00000000..a04fee6f Binary files /dev/null and b/assets/HelloWorld-Code.zip differ diff --git a/info/api/restful.md b/info/api/restful.md index 7baa0efb..e98e719d 100644 --- a/info/api/restful.md +++ b/info/api/restful.md @@ -279,7 +279,7 @@ fetch(url, requestOptions) |HTTP Status Code |Meaning|Description|Data Schema| |---|---|---|---| -|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|Successful operation.|[`[Scanner]`](#scanner)| +|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|Successful operation.|[`Scanner[]`](#scanner)| |400|[Bad Request](https://tools.ietf.org/html/rfc7231#section-6.5.1)|Bad request, e.g. parameter is invalid.|[`Error`](#error)| |405|[Method Not Allowed](https://tools.ietf.org/html/rfc7231#section-6.5.5)|Method not allowed.|[`Error`](#error)| @@ -513,7 +513,7 @@ fetch(url, requestOptions) |200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|Successful operation.|[`ScannerJobInfo`](#scannerjobinfo)| |404|[Not Found](https://tools.ietf.org/html/rfc7231#section-6.5.4)|The provided job UID is invalid.|[`Error`](#error)| |405|[Method Not Allowed](https://tools.ietf.org/html/rfc7231#section-6.5.5)|Method not allowed.|[`Error`](#error)| -|410|[Gone](https://tools.ietf.org/html/rfc7231#section-6.5.9)|Job deleted. Return 404 instead upon restart of the Dynamic Web TWAIN Service as that clears all job info.|[`Error`](#error)| +|410|[Gone](https://tools.ietf.org/html/rfc7231#section-6.5.9)|Job was deleted. Return 404 instead upon restart of the Dynamic Web TWAIN Service as that clears all job info.|[`Error`](#error)| #### Response Examples @@ -552,7 +552,7 @@ fetch(url, requestOptions) ```json { "code": -1034, - "message": "Job deleted.", + "message": "Job was deleted.", "statusCode": 410 } ``` @@ -609,7 +609,7 @@ fetch(url, requestOptions) |404|[Not Found](https://tools.ietf.org/html/rfc7231#section-6.5.4)|The provided job UID is invalid.|[`Error`](#error)| |405|[Method Not Allowed](https://tools.ietf.org/html/rfc7231#section-6.5.5)|Method not allowed.|[`Error`](#error)| |409|[Conflict](https://tools.ietf.org/html/rfc7231#section-6.5.8)|Attempted to cancel non-pending or non-running job, or update a non-pending job to running.|[`Error`](#error)| -|410|[Gone](https://tools.ietf.org/html/rfc7231#section-6.5.9)|Job deleted. Return 404 instead upon restart of the Dynamic Web TWAIN Service as that clears all job info.|[`Error`](#error)| +|410|[Gone](https://tools.ietf.org/html/rfc7231#section-6.5.9)|Job was deleted. Return 404 instead upon restart of the Dynamic Web TWAIN Service as that clears all job info.|[`Error`](#error)|