From f4ef7ea4f2662bd8e5d8aab50803846897dee2c5 Mon Sep 17 00:00:00 2001 From: DMGithubPublisher Date: Fri, 19 Jan 2024 01:07:28 -0800 Subject: [PATCH] update to internal commit 9b50672e --- _config.yml | 3 +++ .../release-notes/product-highlight-2.0.0.md | 20 +++++++++---------- _layouts/default-layout.html | 4 ++++ .../android/api-reference/code-parser.md | 2 +- programming/android/api-reference/index.md | 8 ++++---- .../api-reference/parsed-result-item.md | 8 ++++---- programming/ios/api-reference/code-parser.md | 2 +- programming/ios/api-reference/index.md | 6 +++--- .../ios/api-reference/parsed-result-item.md | 4 ++-- 9 files changed, 32 insertions(+), 25 deletions(-) diff --git a/_config.yml b/_config.yml index c5d4528..a77227b 100644 --- a/_config.yml +++ b/_config.yml @@ -19,6 +19,9 @@ dcv_android_api: /capture-vision/docs/mobile/programming/android/api-reference/ dcv_ios_api: /capture-vision/docs/mobile/programming/ios/api-reference/ dcv_enumerations: /capture-vision/docs/core/enums/ dcv_parameter_reference: /capture-vision/docs/core/parameters/reference/ +dcv_parameter: /capture-vision/docs/core/parameters/ + +code_types: /code-parser/docs/core/code-types/ assets: /code-parser/docs/mobile/assets/ edit_icon: /code-parser/docs/mobile/assets/img-icon/edit-icon.png diff --git a/_includes/release-notes/product-highlight-2.0.0.md b/_includes/release-notes/product-highlight-2.0.0.md index 45247a6..47c59dd 100644 --- a/_includes/release-notes/product-highlight-2.0.0.md +++ b/_includes/release-notes/product-highlight-2.0.0.md @@ -2,14 +2,14 @@ * `DynamsoftCodeParser` SDK has been revamped to integrate with `DynamsoftCaptureVision (DCV)` architecture, which is newly established to aggregate the features of functional products powered by Dynamsoft. The features are designed to be pluggable, customizable and interactable. In addition, the functional products share the computation so that their processing speed is much higher than working individually. * Added Mobile Editions. With these new editions, developers can effortlessly integrate code parsing capabilities into their Android and iOS applications. * Added supports to parse following code types: - * [MRTD_TD1_ID]({{ site.code_types }}mrtd.html) - * [MRTD_TD2_ID]({{ site.code_types }}mrtd.html) - * [MRTD_TD2_VISA]({{ site.code_types }}mrtd.html) - * [MRTD_TD3_PASSPORT]({{ site.code_types }}mrtd.html) - * [MRTD_TD3_VISA]({{ site.code_types }}mrtd.html) - * [VIN]({{ site.code_types }}vin.html) - * [AAMVA_DL_ID]({{ site.code_types }}aamva-dl-id.html) - * [AAMVA_DL_ID_WITH_MAG_STRIPE]({{ site.code_types }}aamva-dl-id.html) - * [AADHAAR]({{ site.code_types }}aadhaar.html) - * [SOUTH_AFRICA_DL]({{ site.code_types }}za-dl.html) + * MRTD_TD1_ID + * MRTD_TD2_ID + * MRTD_TD2_VISA + * MRTD_TD3_PASSPORT + * MRTD_TD3_VISA + * VIN + * AAMVA_DL_ID + * AAMVA_DL_ID_WITH_MAG_STRIPE + * AADHAAR + * SOUTH_AFRICA_DL diff --git a/_layouts/default-layout.html b/_layouts/default-layout.html index 0529fbb..75a8efa 100644 --- a/_layouts/default-layout.html +++ b/_layouts/default-layout.html @@ -2,6 +2,10 @@ {%- include head.html -%} +{%- assign noTitleIndex = "" -%} +{%- if page.noTitleIndex or page.url contains 'release-notes' -%} + {%- assign noTitleIndex = "noTitleIndex" -%} +{%- endif -%} {% assign url = 'https://www.dynamsoft.com/shared/head/' %} diff --git a/programming/android/api-reference/code-parser.md b/programming/android/api-reference/code-parser.md index ec17028..a68f43a 100644 --- a/programming/android/api-reference/code-parser.md +++ b/programming/android/api-reference/code-parser.md @@ -48,7 +48,7 @@ ParsedResultItem parse(byte[] bytes, String taskSettingName) throws CodeParserEx `[in] bytes` The array of bytes which contain the code string. -`[in] taskSettingName`Optional The name of [`CodeParserTaskSetting`]({{site.parameters}}file/task-settings/code-parser-task-settings.html) which defines the settings used for code parsing. +`[in] taskSettingName`Optional The name of [`CodeParserTaskSetting`]({{site.dcv_parameter}}file/task-settings/code-parser-task-settings.html) which defines the settings used for code parsing. **Return Value** diff --git a/programming/android/api-reference/index.md b/programming/android/api-reference/index.md index 3295398..7aab8e6 100644 --- a/programming/android/api-reference/index.md +++ b/programming/android/api-reference/index.md @@ -12,12 +12,12 @@ needGenerateH3Content: true ## Classes * [`CodeParser`](code-parser.html) -* [`LicenseManager`]({{ site.dcv_cpp_api }}license/license-manager.html) +* [`LicenseManager`]({{ site.dcv_android_api }}license/license-manager.html) * [`ParsedResultItem`](parsed-result-item.html) * [`ParsedResult`](parsed-result.html) ## Enumerations -* [`ErrorCode`]({{ site.enumerations }}core/error-code.html?lang=android) -* [`MappingStatus`]({{ site.enumerations }}code-parser/mapping-status.html?lang=android) -* [`ValidationStatus`]({{ site.enumerations }}code-parser/validation-status.html?lang=android) +* [`ErrorCode`]({{ site.dcv_enumerations }}core/error-code.html?lang=android) +* [`MappingStatus`]({{ site.dcv_enumerations }}code-parser/mapping-status.html?lang=android) +* [`ValidationStatus`]({{ site.dcv_enumerations }}code-parser/validation-status.html?lang=android) diff --git a/programming/android/api-reference/parsed-result-item.md b/programming/android/api-reference/parsed-result-item.md index 294e90c..cf156b9 100644 --- a/programming/android/api-reference/parsed-result-item.md +++ b/programming/android/api-reference/parsed-result-item.md @@ -82,11 +82,11 @@ EnumMappingStatus getFieldMappingStatus(String fieldName); **Return Value** -Returns a [MappingStatus]({{ site.enumerations }}code-parser/mapping-status.html?lang=android) enumeration value representing the mapping status of a specified field. +Returns a [MappingStatus]({{ site.dcv_enumerations }}code-parser/mapping-status.html?lang=android) enumeration value representing the mapping status of a specified field. **See Also** -[MappingStatus]({{ site.enumerations }}code-parser/mapping-status.html?lang=android) +[MappingStatus]({{ site.dcv_enumerations }}code-parser/mapping-status.html?lang=android) ## getFieldValidationStatus @@ -102,11 +102,11 @@ EnumValidationStatus getFieldValidationStatus(String fieldName); **Return Value** -Returns a [ValidationStatus]({{ site.enumerations }}code-parser/validation-status.html?lang=android) enumeration value representing the validation status of a specified field. +Returns a [ValidationStatus]({{ site.dcv_enumerations }}code-parser/validation-status.html?lang=android) enumeration value representing the validation status of a specified field. **See Also** -[ValidationStatus]({{ site.enumerations }}code-parser/validation-status.html?lang=android) +[ValidationStatus]({{ site.dcv_enumerations }}code-parser/validation-status.html?lang=android) ## getParsedFields diff --git a/programming/ios/api-reference/code-parser.md b/programming/ios/api-reference/code-parser.md index b4cc301..fe20b41 100644 --- a/programming/ios/api-reference/code-parser.md +++ b/programming/ios/api-reference/code-parser.md @@ -123,7 +123,7 @@ func parse(_ bytes:Data, taskSettingName:String) throws -> ParsedResultItem `bytes` The array of bytes which contain the code string. -`taskSettingName`Optional The name of [`CodeParserTaskSetting`]({{site.parameters}}file/task-settings/code-parser-task-settings.html) which defines the settings used for code parsing. +`taskSettingName`Optional The name of [`CodeParserTaskSetting`]({{site.dcv_parameter}}file/task-settings/code-parser-task-settings.html) which defines the settings used for code parsing. **Return Value** diff --git a/programming/ios/api-reference/index.md b/programming/ios/api-reference/index.md index fa1721d..abd3b10 100644 --- a/programming/ios/api-reference/index.md +++ b/programming/ios/api-reference/index.md @@ -18,6 +18,6 @@ needGenerateH3Content: true ## Enumerations -* [`ErrorCode`]({{ site.enumerations }}core/error-code.html?lang=objc,swift) -* [`MappingStatus`]({{ site.enumerations }}code-parser/mapping-status.html?lang=objc,swift) -* [`ValidationStatus`]({{ site.enumerations }}code-parser/validation-status.html?lang=objc,swift) +* [`ErrorCode`]({{ site.dcv_enumerations }}core/error-code.html?lang=objc,swift) +* [`MappingStatus`]({{ site.dcv_enumerations }}code-parser/mapping-status.html?lang=objc,swift) +* [`ValidationStatus`]({{ site.dcv_enumerations }}code-parser/validation-status.html?lang=objc,swift) diff --git a/programming/ios/api-reference/parsed-result-item.md b/programming/ios/api-reference/parsed-result-item.md index 5c9c885..f4822b5 100644 --- a/programming/ios/api-reference/parsed-result-item.md +++ b/programming/ios/api-reference/parsed-result-item.md @@ -69,7 +69,7 @@ func getFieldMappingStatus(_ fieldName:String) -> MappingStatus **Return Value** -Returns a [MappingStatus]({{ site.enumerations }}code-parser/mapping-status.html?lang=objc,swift) enumeration value representing the mapping status of a specified field. +Returns a [MappingStatus]({{ site.dcv_enumerations }}code-parser/mapping-status.html?lang=objc,swift) enumeration value representing the mapping status of a specified field. ### getFieldValidationStatus @@ -94,7 +94,7 @@ func getFieldValidationStatus(_ fieldName:String) -> ValidationStatus **Return Value** -Returns a [ValidationStatus]({{ site.enumerations }}code-parser/validation-status.html?lang=objc,swift) enumeration value representing the validation status of a specified field. +Returns a [ValidationStatus]({{ site.dcv_enumerations }}code-parser/validation-status.html?lang=objc,swift) enumeration value representing the validation status of a specified field. ### getFieldValue