Skip to content

Commit 875da56

Browse files
update to internal commit da58b66e
1 parent ad6f60f commit 875da56

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

_config.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ productUrl: https://www.dynamsoft.com/web-twain/overview/
77
#productUrl: https://demo3.dynamsoft.com:808/dwt-harry/web-twain/overview/ # Preview URL
88
productName: Dynamic Web TWAIN
99
docHomePage: /web-twain/docs/
10+
searchIndexName: Crawler-DWT-Docs-New
11+
1012
dynamsoft_logo: /web-twain/docs/assets/img-icon/dynamsoft-logo.png
1113
dwt_logo: /web-twain/docs/assets/img-icon/dwt-logo.png
1214
edit_icon: /web-twain/docs/assets/img-icon/edit-icon.png

articles/hello-world/editing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ APIs used:
125125
if (DWTObject && DWTObject.HowManyImagesInBuffer > 0) {
126126
var strUrl = "https://demo.dynamsoft.com/sample-uploads/";
127127
var imgAry = [DWTObject.CurrentImageIndexInBuffer];
128-
DWTObject.HTTPupload(
128+
DWTObject.HTTPUpload(
129129
strUrl,
130130
imgAry,
131131
Dynamsoft.DWT.EnumDWT_ImageType.IT_PNG,

articles/hello-world/scan-settings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ function AcquireImage() {
9090
if (DWTObject && DWTObject.HowManyImagesInBuffer > 0) {
9191
var strUrl = "https://demo.dynamsoft.com/sample-uploads/";
9292
var imgAry = [DWTObject.CurrentImageIndexInBuffer];
93-
DWTObject.HTTPupload(
93+
DWTObject.HTTPUpload(
9494
strUrl,
9595
imgAry,
9696
Dynamsoft.DWT.EnumDWT_ImageType.IT_PNG,

articles/hello-world/uploading.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ function upload() {
3636
if (DWTObject && DWTObject.HowManyImagesInBuffer > 0) {
3737
var strUrl = "https://demo.dynamsoft.com/sample-uploads/";
3838
var imgAry = [DWTObject.CurrentImageIndexInBuffer];
39-
DWTObject.HTTPupload(
39+
DWTObject.HTTPUpload(
4040
strUrl,
4141
imgAry,
4242
Dynamsoft.DWT.EnumDWT_ImageType.IT_PNG,
@@ -65,7 +65,7 @@ APIs used:
6565

6666
- [`HowManyImagesInBuffer`]({{site.info}}api/WebTwain_Buffer.html#howmanyimagesinbuffer){:target="_blank" rel="noreferrer noopener"}
6767
- [`CurrentImageIndexInBuffer`]({{site.info}}api/WebTwain_Buffer.html#currentimageindexinbuffer){:target="_blank" rel="noreferrer noopener"}
68-
- [`HTTPupload()`]({{site.info}}api/WebTwain_IO.html#httpupload){:target="_blank" rel="noreferrer noopener"}
68+
- [`HTTPUpload()`]({{site.info}}api/WebTwain_IO.html#httpupload){:target="_blank" rel="noreferrer noopener"}
6969
- [`Dynamsoft.DWT.EnumDWT_ImageType`]({{site.info}}api/Dynamsoft_Enum.html#dynamsoftdwtenumdwt_imagetype){:target="_blank" rel="noreferrer noopener"}
7070
- [`Dynamsoft.DWT.EnumDWT_UploadDataFormat`]({{site.info}}api/Dynamsoft_Enum.html#dynamsoftdwtenumdwt_uploaddataformat){:target="_blank" rel="noreferrer noopener"}
7171

@@ -113,7 +113,7 @@ Following this guide, your `HelloWorld.html` should look similar to this:
113113
if (DWTObject && DWTObject.HowManyImagesInBuffer > 0) {
114114
var strUrl = "https://demo.dynamsoft.com/sample-uploads/";
115115
var imgAry = [DWTObject.CurrentImageIndexInBuffer];
116-
DWTObject.HTTPupload(
116+
DWTObject.HTTPUpload(
117117
strUrl,
118118
imgAry,
119119
Dynamsoft.DWT.EnumDWT_ImageType.IT_PNG,

search.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ description: Dynamic Web Twain SDK Documentation Search
55
breadcrumbText: HomePage
66
h1: Dynamsoft Web TWAIN Document Search
77
permalink: /search.html
8+
indexName: Crawler-DWT-Docs-New
89
---

0 commit comments

Comments
 (0)