Skip to content

Commit 24c79fe

Browse files
update to internal commit d6eb2508
1 parent e4271ba commit 24c79fe

File tree

12 files changed

+189
-98
lines changed

12 files changed

+189
-98
lines changed

_config.yml

Lines changed: 5 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -84,54 +84,28 @@ plugins:
8484
edition: desktop
8585

8686
defaults:
87-
- scope:
88-
path: ""
89-
values:
90-
category: "original-repo"
91-
edition: "algorithm"
92-
- scope:
93-
path: "programming/javascript"
94-
values:
95-
category: "js-repo"
96-
edition: "js"
97-
- scope:
98-
path: "programming/android"
99-
values:
100-
category: "mobile-repo"
101-
edition: "mobile"
102-
- scope:
103-
path: "programming/objectivec-swift"
104-
values:
105-
category: "mobile-repo"
106-
edition: "mobile"
10787
- scope:
10888
path: "programming/c"
10989
values:
110-
category: "original-repo"
111-
edition: "desktop"
11290
docRootName: "Barcode Reader C Edition"
11391
docHomePage: "/barcode-reader/docs/server/programming/c/"
11492
- scope:
11593
path: "programming-old/c"
11694
values:
117-
category: "original-repo"
118-
edition: "desktop"
11995
docRootName: "Barcode Reader C Edition"
12096
docHomePage: "/barcode-reader/docs/server/programming/c/"
97+
ignore: true
12198
- scope:
12299
path: "programming/cplusplus"
123100
values:
124-
category: "original-repo"
125-
edition: "desktop"
126101
docRootName: "Barcode Reader C++ Edition"
127102
docHomePage: "/barcode-reader/docs/server/programming/cplusplus/"
128103
- scope:
129104
path: "programming-old/cplusplus"
130105
values:
131-
category: "original-repo"
132-
edition: "desktop"
133106
docRootName: "Barcode Reader C++ Edition"
134107
docHomePage: "/barcode-reader/docs/server/programming/cplusplus/"
108+
ignore: true
135109
- scope:
136110
path: "programming/c-cplusplus"
137111
values:
@@ -140,45 +114,36 @@ defaults:
140114
- scope:
141115
path: "programming/dotnet"
142116
values:
143-
category: "original-repo"
144-
edition: "desktop"
145117
docRootName: "Barcode Reader DotNet Edition"
146118
docHomePage: "/barcode-reader/docs/server/programming/dotnet/"
147119
- scope:
148120
path: "programming-old/dotnet"
149121
values:
150-
category: "original-repo"
151-
edition: "desktop"
152122
docRootName: "Barcode Reader DotNet Edition"
153123
docHomePage: "/barcode-reader/docs/server/programming/dotnet/"
124+
ignore: true
154125
- scope:
155126
path: "programming/python"
156127
values:
157-
category: "original-repo"
158-
edition: "desktop"
159128
docRootName: "Barcode Reader Python Edition"
160129
docHomePage: "/barcode-reader/docs/server/programming/python/"
161130
- scope:
162131
path: "programming-old/python"
163132
values:
164-
category: "original-repo"
165-
edition: "desktop"
166133
docRootName: "Barcode Reader Python Edition"
167134
docHomePage: "/barcode-reader/docs/server/programming/python/"
135+
ignore: true
168136
- scope:
169137
path: "programming/java"
170138
values:
171-
category: "original-repo"
172-
edition: "desktop"
173139
docRootName: "Barcode Reader Java Edition"
174140
docHomePage: "/barcode-reader/docs/server/programming/java/"
175141
- scope:
176142
path: "programming-old/java"
177143
values:
178-
category: "original-repo"
179-
edition: "desktop"
180144
docRootName: "Barcode Reader Java Edition"
181145
docHomePage: "/barcode-reader/docs/server/programming/java/"
146+
ignore: true
182147
- scope:
183148
path: ""
184149
values:

_includes/dbrNav.html

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@
1212
}
1313
</style>
1414

15+
{%- assign docHomePage = site.docHomePage -%}
16+
{%- if page.docHomePage -%}
17+
{%- assign docHomePage = page.docHomePage -%}
18+
{%- endif -%}
19+
1520
<div id="BarcodeReader" class="main">
1621
<div id="BarcodeReaderMenu" class="productMenu">
1722
<div class="container pcProductMenu">
@@ -38,7 +43,7 @@
3843
<span class="showMenuMore textUpperCase">Dev Center <i class="icon-orange-angle"></i></span>
3944
<ul class="ct-more" style="display: none">
4045
<i class="icon-orange-angle"></i>
41-
<li class="item"><a href="https://www.dynamsoft.com/barcode-reader/docs/core/introduction/">Documentation</a></li>
46+
<li class="item"><a href="{{docHomePage}}">Documentation</a></li>
4247
<li class="item"><a href="https://www.dynamsoft.com/barcode-reader/resources/code-gallery/">Code Gallery</a></li>
4348
<li class="item"><a href="https://www.dynamsoft.com/barcode-reader/docs/core/release-notes/">Release Notes</a></li>
4449
<li class="item"><a class="all-resources f16 mt20 orangeLink" href="https://www.dynamsoft.com/barcode-reader/resources/">See All resources ></a></li>
@@ -81,7 +86,7 @@
8186
<li class="item resources">
8287
<span class="showMenuMore textUpperCase">Dev Center <i class="icon-orange-angle"></i></span>
8388
<ul class="ct-more" style="display: none">
84-
<li class="item"><a href="https://www.dynamsoft.com/barcode-reader/docs/core/introduction/">Documentation</a></li>
89+
<li class="item"><a href="{{docHomePage}}">Documentation</a></li>
8590
<li class="item"><a href="https://www.dynamsoft.com/barcode-reader/resources/code-gallery/">Code Gallery</a></li>
8691
<li class="item"><a href="https://www.dynamsoft.com/barcode-reader/docs/core/release-notes/">Release Notes</a></li>
8792
<li class="item"><a class="all-resources f16 mt20 orangeLink" href="https://www.dynamsoft.com/barcode-reader/resources/">See All resources ></a></li>

_includes/sidelist-programming/programming-dotnet.html

Lines changed: 53 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,57 @@
11
<li lang="dotnet" class="category">DEVELOPMENT</li>
2-
<li lang="dotnet" ><a href="{{ site.dbr_dotnet }}user-guide.html" class="otherLinkColour">User Guide</a></li>
2+
<li lang="dotnet" ><a href="{{ site.dbr_dotnet }}user-guide/index.html" class="otherLinkColour">User Guide</a>
3+
<ul>
4+
<li><a href="{{ site.dbr_dotnet }}user-guide.html" class="otherLinkColour">Getting Started</a> </li>
5+
6+
<li><a href="{{ site.dbr_dotnet }}user-guide/explore-features/index.html" class="otherLinkColour">Explore Features</a>
7+
<ul>
8+
<li><a class="otherLinkColour">Basic Features</a>
9+
<ul>
10+
<li><a href="{{ site.features }}barcode-formats-and-count.html?lang=csharp" class="otherLinkColour">Specify barcode formats and count</a></li>
11+
<li><a href="{{ site.features }}barcode-scan-region.html?lang=csharp" class="otherLinkColour">Read a specific area/region</a></li>
12+
</ul>
13+
</li>
14+
<li><a class="otherLinkColour">Handle Different Scenarios</a>
15+
<ul>
16+
<li><a href="{{ site.features }}read-inverted-barcodes.html?lang=csharp" class="otherLinkColour">Read inverted barcodes</a></li>
17+
<li><a href="{{ site.features }}read-deformed-barcodes.html?lang=csharp" class="otherLinkColour">Read deformed barcodes</a></li>
18+
<li><a href="{{ site.features }}read-incomplete-barcodes.html?lang=csharp" class="otherLinkColour">Read incomplete barcodes</a></li>
19+
<li><a href="{{ site.features }}read-a-large-image.html?lang=csharp" class="otherLinkColour">Read barcodes from a large image</a></li>
20+
<li><a href="{{ site.features }}read-barcodes-with-small-module-size.html?lang=csharp" class="otherLinkColour">Read barcodes with small module size</a></li>
21+
<li><a href="{{ site.features }}read-barcodes-with-imbalanced-colour.html?lang=csharp" class="otherLinkColour">Read images with imbalanced colors</a></li>
22+
<li><a href="{{ site.features }}read-barcodes-with-uneven-lighting.html?lang=csharp" class="otherLinkColour">Read images with uneven lighting</a></li>
23+
<li><a href="{{ site.features }}read-images-with-texture.html?lang=csharp" class="otherLinkColour">Read images with texture</a></li>
24+
<li><a href="{{ site.features }}read-images-with-lots-of-text.html?lang=csharp" class="otherLinkColour">Read images with lots of text</a></li>
25+
<li><a href="{{ site.features }}read-dense-barcodes.html?lang=csharp" class="otherLinkColour">Read high-density QR Codes</a></li>
26+
<li><a href="{{ site.features }}preprocess-images.html?lang=csharp" class="otherLinkColour">Preprocess images to read difficult barcodes</a></li>
27+
<li><a href="{{ site.features }}use-region-predetection.html?lang=csharp" class="otherLinkColour">Automatically detect barcode Region of Interest</a></li>
28+
</ul>
29+
</li>
30+
<li><a class="otherLinkColour">Barcode Results</a>
31+
<ul>
32+
<li><a href="{{ site.features }}get-confidence-rotation.html?lang=csharp" class="otherLinkColour">Get barcode confidence and rotation</a></li>
33+
<li><a href="{{ site.features }}get-barcode-location.html?lang=csharp" class="otherLinkColour">Get barcode location</a></li>
34+
<li><a href="{{ site.features }}get-detailed-info.html?lang=csharp" class="otherLinkColour">Get detailed barcode information</a></li>
35+
<li><a href="{{ site.features }}filter-and-sort.html?lang=csharp" class="otherLinkColour">Filter and sort decoding results</a></li>
36+
</ul>
37+
</li>
38+
<li><a class="otherLinkColour">Advanced Features</a>
39+
<ul>
40+
<li><a href="{{ site.features }}control-terminate-phase.html?lang=csharp" class="otherLinkColour">Control when to terminate a decoding process</a></li>
41+
<li><a href="{{ site.features }}use-runtimesettings-or-templates.html?lang=csharp" class="otherLinkColour">Use SimplifiedSettings or Templates</a></li>
42+
<li><a href="{{ site.features }}use-format-specific-configuration.html?lang=csharp" class="otherLinkColour">Use format specific configurations</a></li>
43+
</ul>
44+
</li>
45+
</ul>
46+
</li>
47+
<li><a href="{{ site.dbr_dotnet }}user-guide/use-cases/index.html" class="otherLinkColour">Check Use Cases</a>
48+
<ul>
49+
<li><a href="{{ site.usecases }}read-dpm-codes.html?lang=csharp" class="otherLinkColour">Read DPM codes</a></li>
50+
<li><a href="{{ site.usecases }}read-postal-codes.html?lang=csharp" class="otherLinkColour">Read Postal codes</a></li>
51+
</ul>
52+
</li>
53+
</ul>
54+
</li>
355
<li lang="dotnet"><a href="{{ site.dbr_dotnet }}samples/index.html" class="otherLinkColour">Samples and Demo</a></li>
456
<li lang="dotnet"><a href="{{ site.dbr_dotnet_api }}" class="otherLinkColour">API Reference</a>
557
<ul>

_includes/sidelist-programming/programming-python.html

Lines changed: 53 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,57 @@
11
<li lang="python" class="category">DEVELOPMENT</li>
2-
<li lang="python" ><a href="{{ site.dbr_python }}user-guide.html" class="otherLinkColour">User Guide</a></li>
2+
<li lang="python" ><a href="{{ site.dbr_python }}user-guide/index.html" class="otherLinkColour">User Guide</a>
3+
<ul>
4+
<li><a href="{{ site.dbr_python }}user-guide.html" class="otherLinkColour">Getting Started</a> </li>
5+
6+
<li><a href="{{ site.dbr_python }}user-guide/explore-features/index.html" class="otherLinkColour">Explore Features</a>
7+
<ul>
8+
<li><a class="otherLinkColour">Basic Features</a>
9+
<ul>
10+
<li><a href="{{ site.features }}barcode-formats-and-count.html?lang=python" class="otherLinkColour">Specify barcode formats and count</a></li>
11+
<li><a href="{{ site.features }}barcode-scan-region.html?lang=python" class="otherLinkColour">Read a specific area/region</a></li>
12+
</ul>
13+
</li>
14+
<li><a class="otherLinkColour">Handle Different Scenarios</a>
15+
<ul>
16+
<li><a href="{{ site.features }}read-inverted-barcodes.html?lang=python" class="otherLinkColour">Read inverted barcodes</a></li>
17+
<li><a href="{{ site.features }}read-deformed-barcodes.html?lang=python" class="otherLinkColour">Read deformed barcodes</a></li>
18+
<li><a href="{{ site.features }}read-incomplete-barcodes.html?lang=python" class="otherLinkColour">Read incomplete barcodes</a></li>
19+
<li><a href="{{ site.features }}read-a-large-image.html?lang=python" class="otherLinkColour">Read barcodes from a large image</a></li>
20+
<li><a href="{{ site.features }}read-barcodes-with-small-module-size.html?lang=python" class="otherLinkColour">Read barcodes with small module size</a></li>
21+
<li><a href="{{ site.features }}read-barcodes-with-imbalanced-colour.html?lang=python" class="otherLinkColour">Read images with imbalanced colors</a></li>
22+
<li><a href="{{ site.features }}read-barcodes-with-uneven-lighting.html?lang=python" class="otherLinkColour">Read images with uneven lighting</a></li>
23+
<li><a href="{{ site.features }}read-images-with-texture.html?lang=python" class="otherLinkColour">Read images with texture</a></li>
24+
<li><a href="{{ site.features }}read-images-with-lots-of-text.html?lang=python" class="otherLinkColour">Read images with lots of text</a></li>
25+
<li><a href="{{ site.features }}read-dense-barcodes.html?lang=python" class="otherLinkColour">Read high-density QR Codes</a></li>
26+
<li><a href="{{ site.features }}preprocess-images.html?lang=python" class="otherLinkColour">Preprocess images to read difficult barcodes</a></li>
27+
<li><a href="{{ site.features }}use-region-predetection.html?lang=python" class="otherLinkColour">Automatically detect barcode Region of Interest</a></li>
28+
</ul>
29+
</li>
30+
<li><a class="otherLinkColour">Barcode Results</a>
31+
<ul>
32+
<li><a href="{{ site.features }}get-confidence-rotation.html?lang=python" class="otherLinkColour">Get barcode confidence and rotation</a></li>
33+
<li><a href="{{ site.features }}get-barcode-location.html?lang=python" class="otherLinkColour">Get barcode location</a></li>
34+
<li><a href="{{ site.features }}get-detailed-info.html?lang=python" class="otherLinkColour">Get detailed barcode information</a></li>
35+
<li><a href="{{ site.features }}filter-and-sort.html?lang=python" class="otherLinkColour">Filter and sort decoding results</a></li>
36+
</ul>
37+
</li>
38+
<li><a class="otherLinkColour">Advanced Features</a>
39+
<ul>
40+
<li><a href="{{ site.features }}control-terminate-phase.html?lang=python" class="otherLinkColour">Control when to terminate a decoding process</a></li>
41+
<li><a href="{{ site.features }}use-runtimesettings-or-templates.html?lang=python" class="otherLinkColour">Use SimplifiedSettings or Templates</a></li>
42+
<li><a href="{{ site.features }}use-format-specific-configuration.html?lang=python" class="otherLinkColour">Use format specific configurations</a></li>
43+
</ul>
44+
</li>
45+
</ul>
46+
</li>
47+
<li><a href="{{ site.dbr_python }}user-guide/use-cases/index.html" class="otherLinkColour">Check Use Cases</a>
48+
<ul>
49+
<li><a href="{{ site.usecases }}read-dpm-codes.html?lang=python" class="otherLinkColour">Read DPM codes</a></li>
50+
<li><a href="{{ site.usecases }}read-postal-codes.html?lang=python" class="otherLinkColour">Read Postal codes</a></li>
51+
</ul>
52+
</li>
53+
</ul>
54+
</li>
355
<li lang="python"><a href="{{ site.dbr_python }}samples/index.html" class="otherLinkColour">Samples and Demo</a></li>
456
<li lang="python"><a href="{{ site.dbr_python_api }}" class="otherLinkColour">API Reference</a>
557
<ul>

programming-old/dotnet/user-guide/index-v9.6.40.md

Lines changed: 0 additions & 18 deletions
This file was deleted.

programming-old/dotnet/user-guide/use-cases/index-v9.6.40.md

Lines changed: 0 additions & 12 deletions
This file was deleted.

programming/cplusplus/user-guide/explore-features/index-v9.6.30.md renamed to programming/cplusplus/user-guide/explore-features/index-v9.6.40.md

File renamed without changes.

programming/cplusplus/user-guide/explore-features/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ title: Explore Features - Dynamsoft Barcode Reader SDK C++ Edition User Guide
44
description: This page lists the topics to explore the features of Dynamsoft Barcode Reader CPP Edition.
55
keywords: user guide, explore features, cpp
66
noTitleIndex: false
7-
permalink: /programming/cplusplus/user-guide/explore-features/index.html
87
---
98

109
# Explore Features

programming-old/dotnet/user-guide/explore-features/index-v9.6.40.md renamed to programming/dotnet/user-guide/explore-features/index-v9.6.40.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ title: Explore Features - Dynamsoft Barcode Reader SDK .NET Edition User Guide
44
description: This page lists the topics to explore the features of Dynamsoft Barcode Reader .NET Edition.
55
keywords: user guide, explore features, .NET
66
noTitleIndex: false
7-
permalink: /programming/dotnet/user-guide/explore-features/index-v9.6.40.html
87
---
98

109
# Explore Features

0 commit comments

Comments
 (0)