Skip to content

Commit

Permalink
2024.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pvlasov committed Jun 24, 2024
1 parent bdcbf6e commit 8ee24ea
Show file tree
Hide file tree
Showing 79 changed files with 3,816 additions and 1,791 deletions.
32 changes: 16 additions & 16 deletions docs/1.html

Large diffs are not rendered by default.

38 changes: 19 additions & 19 deletions docs/core/capability/index.html

Large diffs are not rendered by default.

38 changes: 19 additions & 19 deletions docs/core/cli/index.html

Large diffs are not rendered by default.

38 changes: 19 additions & 19 deletions docs/core/common/index.html

Large diffs are not rendered by default.

38 changes: 19 additions & 19 deletions docs/core/diagram/index.html

Large diffs are not rendered by default.

38 changes: 19 additions & 19 deletions docs/core/drawio/index.html

Large diffs are not rendered by default.

38 changes: 19 additions & 19 deletions docs/core/emf/index.html

Large diffs are not rendered by default.

38 changes: 19 additions & 19 deletions docs/core/exec/index.html

Large diffs are not rendered by default.

157 changes: 99 additions & 58 deletions docs/core/graph/index.html

Large diffs are not rendered by default.

38 changes: 19 additions & 19 deletions docs/core/http/index.html

Large diffs are not rendered by default.

34 changes: 17 additions & 17 deletions docs/core/index.html

Large diffs are not rendered by default.

38 changes: 19 additions & 19 deletions docs/core/maven/index.html

Large diffs are not rendered by default.

38 changes: 19 additions & 19 deletions docs/core/persistence/index.html

Large diffs are not rendered by default.

38 changes: 19 additions & 19 deletions docs/core/resources/index.html

Large diffs are not rendered by default.

72 changes: 72 additions & 0 deletions docs/demos/module-graph-full.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,78 @@
<script>
// Script for full-text search of JsTree

window.nsdJsTreeSearchCallback = function(str, node) {
var sf = new $.vakata.search(str, true, { caseSensitive : false, fuzzy : false });
if (sf.search(node.text).isMatch) {
return true;
}
let searchResult = this.search(str);
for (const sr in searchResult) {
if (searchResult[sr].ref === node.original['data-nsd-label-uuid']) {
return true;
}
}
return false;
}.bind(lunr(function () {
this.ref('id');
this.field('title');
this.field('content');

for (const key in searchDocuments) {
let doc = searchDocuments[key];
this.add({
id: doc['action-uuid'],
title: doc.title,
path: doc.path,
content: doc.content
});
}
}));
</script>

<script src="../search-documents.js"></script>

<script src="https://cdn.jsdelivr.net/gh/olivernn/lunr.js@v2.3.9/lunr.js"></script>

<script>
// Script for full-text search of JsTree

window.nsdJsTreeSearchCallback = function(str, node) {
var sf = new $.vakata.search(str, true, { caseSensitive : false, fuzzy : false });
if (sf.search(node.text).isMatch) {
return true;
}
let searchResult = this.search(str);
for (const sr in searchResult) {
if (searchResult[sr].ref === node.original['data-nsd-label-uuid']) {
return true;
}
}
return false;
}.bind(lunr(function () {
this.ref('id');
this.field('title');
this.field('content');

for (const key in searchDocuments) {
let doc = searchDocuments[key];
this.add({
id: doc['action-uuid'],
title: doc.title,
path: doc.path,
content: doc.content
});
}
}));
</script>

<script src="../search-documents.js"></script>

<script src="https://cdn.jsdelivr.net/gh/olivernn/lunr.js@v2.3.9/lunr.js"></script>

<script>
// Script for full-text search of JsTree

window.nsdJsTreeSearchCallback = function(str, node) {
var sf = new $.vakata.search(str, true, { caseSensitive : false, fuzzy : false });
if (sf.search(node.text).isMatch) {
Expand Down
72 changes: 72 additions & 0 deletions docs/demos/module-graph.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,78 @@
<script>
// Script for full-text search of JsTree

window.nsdJsTreeSearchCallback = function(str, node) {
var sf = new $.vakata.search(str, true, { caseSensitive : false, fuzzy : false });
if (sf.search(node.text).isMatch) {
return true;
}
let searchResult = this.search(str);
for (const sr in searchResult) {
if (searchResult[sr].ref === node.original['data-nsd-label-uuid']) {
return true;
}
}
return false;
}.bind(lunr(function () {
this.ref('id');
this.field('title');
this.field('content');

for (const key in searchDocuments) {
let doc = searchDocuments[key];
this.add({
id: doc['action-uuid'],
title: doc.title,
path: doc.path,
content: doc.content
});
}
}));
</script>

<script src="../search-documents.js"></script>

<script src="https://cdn.jsdelivr.net/gh/olivernn/lunr.js@v2.3.9/lunr.js"></script>

<script>
// Script for full-text search of JsTree

window.nsdJsTreeSearchCallback = function(str, node) {
var sf = new $.vakata.search(str, true, { caseSensitive : false, fuzzy : false });
if (sf.search(node.text).isMatch) {
return true;
}
let searchResult = this.search(str);
for (const sr in searchResult) {
if (searchResult[sr].ref === node.original['data-nsd-label-uuid']) {
return true;
}
}
return false;
}.bind(lunr(function () {
this.ref('id');
this.field('title');
this.field('content');

for (const key in searchDocuments) {
let doc = searchDocuments[key];
this.add({
id: doc['action-uuid'],
title: doc.title,
path: doc.path,
content: doc.content
});
}
}));
</script>

<script src="../search-documents.js"></script>

<script src="https://cdn.jsdelivr.net/gh/olivernn/lunr.js@v2.3.9/lunr.js"></script>

<script>
// Script for full-text search of JsTree

window.nsdJsTreeSearchCallback = function(str, node) {
var sf = new $.vakata.search(str, true, { caseSensitive : false, fuzzy : false });
if (sf.search(node.text).isMatch) {
Expand Down
36 changes: 18 additions & 18 deletions docs/glossary.html

Large diffs are not rendered by default.

38 changes: 19 additions & 19 deletions docs/html/bootstrap/index.html

Large diffs are not rendered by default.

38 changes: 19 additions & 19 deletions docs/html/emf/index.html

Large diffs are not rendered by default.

38 changes: 19 additions & 19 deletions docs/html/html/index.html

Large diffs are not rendered by default.

34 changes: 17 additions & 17 deletions docs/html/index.html

Large diffs are not rendered by default.

38 changes: 19 additions & 19 deletions docs/html/jstree/index.html

Large diffs are not rendered by default.

40 changes: 20 additions & 20 deletions docs/html/models/app/index.html

Large diffs are not rendered by default.

40 changes: 20 additions & 20 deletions docs/html/models/bootstrap/index.html

Large diffs are not rendered by default.

40 changes: 20 additions & 20 deletions docs/html/models/html/index.html

Large diffs are not rendered by default.

38 changes: 19 additions & 19 deletions docs/html/models/index.html

Large diffs are not rendered by default.

34 changes: 17 additions & 17 deletions docs/index.html

Large diffs are not rendered by default.

34 changes: 17 additions & 17 deletions docs/nsd-cli/index.html

Large diffs are not rendered by default.

42 changes: 21 additions & 21 deletions docs/nsd-cli/nsd/app/index.html

Large diffs are not rendered by default.

65 changes: 34 additions & 31 deletions docs/nsd-cli/nsd/app/site/index.html

Large diffs are not rendered by default.

203 changes: 203 additions & 0 deletions docs/nsd-cli/nsd/architecture/action-model/index.html

Large diffs are not rendered by default.

171 changes: 171 additions & 0 deletions docs/nsd-cli/nsd/architecture/index.html

Large diffs are not rendered by default.

247 changes: 247 additions & 0 deletions docs/nsd-cli/nsd/architecture/site/index.html

Large diffs are not rendered by default.

40 changes: 20 additions & 20 deletions docs/nsd-cli/nsd/help/index.html

Large diffs are not rendered by default.

58 changes: 30 additions & 28 deletions docs/nsd-cli/nsd/help/site/index.html

Large diffs are not rendered by default.

40 changes: 20 additions & 20 deletions docs/nsd-cli/nsd/http-server/index.html

Large diffs are not rendered by default.

54 changes: 28 additions & 26 deletions docs/nsd-cli/nsd/index.html

Large diffs are not rendered by default.

42 changes: 21 additions & 21 deletions docs/nsd-cli/nsd/java/index.html

Large diffs are not rendered by default.

66 changes: 34 additions & 32 deletions docs/nsd-cli/nsd/java/junit/index.html

Large diffs are not rendered by default.

42 changes: 21 additions & 21 deletions docs/nsd-cli/nsd/launcher/index.html

Large diffs are not rendered by default.

103 changes: 54 additions & 49 deletions docs/nsd-cli/nsd/rules/action-model/index.html

Large diffs are not rendered by default.

40 changes: 20 additions & 20 deletions docs/nsd-cli/nsd/rules/index.html

Large diffs are not rendered by default.

79 changes: 41 additions & 38 deletions docs/nsd-cli/nsd/rules/list/index.html

Large diffs are not rendered by default.

56 changes: 29 additions & 27 deletions docs/nsd-cli/nsd/rules/site/index.html

Large diffs are not rendered by default.

166 changes: 166 additions & 0 deletions docs/nsd-cli/nsd/shell/index.html

Large diffs are not rendered by default.

34 changes: 17 additions & 17 deletions docs/nsd-demo-cli/index.html

Large diffs are not rendered by default.

42 changes: 21 additions & 21 deletions docs/nsd-demo-cli/nsd/app/index.html

Large diffs are not rendered by default.

65 changes: 34 additions & 31 deletions docs/nsd-demo-cli/nsd/app/site/index.html

Large diffs are not rendered by default.

203 changes: 203 additions & 0 deletions docs/nsd-demo-cli/nsd/architecture/action-model/index.html

Large diffs are not rendered by default.

171 changes: 171 additions & 0 deletions docs/nsd-demo-cli/nsd/architecture/index.html

Large diffs are not rendered by default.

247 changes: 247 additions & 0 deletions docs/nsd-demo-cli/nsd/architecture/site/index.html

Large diffs are not rendered by default.

40 changes: 20 additions & 20 deletions docs/nsd-demo-cli/nsd/help/index.html

Large diffs are not rendered by default.

58 changes: 30 additions & 28 deletions docs/nsd-demo-cli/nsd/help/site/index.html

Large diffs are not rendered by default.

40 changes: 20 additions & 20 deletions docs/nsd-demo-cli/nsd/http-server/index.html

Large diffs are not rendered by default.

42 changes: 22 additions & 20 deletions docs/nsd-demo-cli/nsd/index.html

Large diffs are not rendered by default.

57 changes: 30 additions & 27 deletions docs/nsd-demo-cli/nsd/inspect-yaml/index.html

Large diffs are not rendered by default.

42 changes: 21 additions & 21 deletions docs/nsd-demo-cli/nsd/java/index.html

Large diffs are not rendered by default.

66 changes: 34 additions & 32 deletions docs/nsd-demo-cli/nsd/java/junit/index.html

Large diffs are not rendered by default.

42 changes: 21 additions & 21 deletions docs/nsd-demo-cli/nsd/launcher/index.html

Large diffs are not rendered by default.

69 changes: 36 additions & 33 deletions docs/nsd-demo-cli/nsd/list-inspectable-rules/index.html

Large diffs are not rendered by default.

42 changes: 21 additions & 21 deletions docs/nsd-demo-cli/nsd/list-rules/index.html

Large diffs are not rendered by default.

42 changes: 21 additions & 21 deletions docs/nsd-demo-cli/nsd/module-graph/index.html

Large diffs are not rendered by default.

103 changes: 54 additions & 49 deletions docs/nsd-demo-cli/nsd/rules/action-model/index.html

Large diffs are not rendered by default.

40 changes: 20 additions & 20 deletions docs/nsd-demo-cli/nsd/rules/index.html

Large diffs are not rendered by default.

79 changes: 41 additions & 38 deletions docs/nsd-demo-cli/nsd/rules/list/index.html

Large diffs are not rendered by default.

56 changes: 29 additions & 27 deletions docs/nsd-demo-cli/nsd/rules/site/index.html

Large diffs are not rendered by default.

166 changes: 166 additions & 0 deletions docs/nsd-demo-cli/nsd/shell/index.html

Large diffs are not rendered by default.

38 changes: 19 additions & 19 deletions docs/practices/generic/index.html

Large diffs are not rendered by default.

34 changes: 17 additions & 17 deletions docs/practices/index.html

Large diffs are not rendered by default.

38 changes: 19 additions & 19 deletions docs/practices/java/index.html

Large diffs are not rendered by default.

38 changes: 19 additions & 19 deletions docs/practices/junit/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/search-documents.js

Large diffs are not rendered by default.

36 changes: 18 additions & 18 deletions docs/search.html

Large diffs are not rendered by default.

Loading

0 comments on commit 8ee24ea

Please sign in to comment.