Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
eSSIF-Lab framework
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
9
Issues
9
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ESSIF-Lab
eSSIF-Lab framework
Commits
26020985
Commit
26020985
authored
Oct 29, 2020
by
Rieks Joosten
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New glossary version is here!
parent
dd8305d4
Pipeline
#17217
passed with stage
in 2 minutes and 21 seconds
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
5 deletions
+9
-5
docs/terms/business-transaction.md
docs/terms/business-transaction.md
+1
-1
docs/terms/credential-catalogue.md
docs/terms/credential-catalogue.md
+2
-2
plugins/terminology-parser/index.js
plugins/terminology-parser/index.js
+6
-2
No files found.
docs/terms/business-transaction.md
View file @
26020985
...
...
@@ -6,7 +6,7 @@ type: concept
typeid
:
business-transaction
stage
:
draft
hoverText
:
"
Business
Transaction:
a
Transaction
that
constitutes
business
of
its
participating
Parties."
glossaryText
:
"
See:
%%transaction^transaction%%
)
."
glossaryText
:
"
See:
%%transaction^transaction%%."
---
See: %%transaction^transaction%%
docs/terms/credential-catalogue.md
View file @
26020985
...
...
@@ -5,8 +5,8 @@ scopeid: essifLab
type
:
concept
typeid
:
credential-catalogue
stage
:
draft
hoverText
:
"
Credential
Catalogue
(functional
component):
the
capability
to
register
and
advertise
the
information
about
Credential
Types
that
their
respective
Governing
Parties
have
decided
to
disclose
so
as
to
enable
other
Parties
to
decide
whether
or
not
it
is
beneficial
for
them
to
use
Credentials
of
such
types."
glossaryText
:
"
the
capability
to
register
and
advertise
the
information
about
%%credential
types^credential-type%%
that
their
respective
%%governing
parties^governor%%
have
decided
to
disclose
so
as
to
enable
other
%%parties^party%%
to
decide
whether
or
not
it
is
beneficial
for
them
to
use
%%credentials^credential%%
of
such
types."
hoverText
:
"
Credential
Catalogue
:
a
functional
component
that
has
the
capability
to
register
and
advertise
the
information
about
Credential
Types
that
their
respective
Governing
Parties
have
decided
to
disclose
so
as
to
enable
other
Parties
to
decide
whether
or
not
it
is
beneficial
for
them
to
use
Credentials
of
such
types."
glossaryText
:
"
a
functional
component
that
has
the
capability
to
register
and
advertise
the
information
about
%%credential
types^credential-type%%
that
their
respective
%%governing
parties^governor%%
have
decided
to
disclose
so
as
to
enable
other
%%parties^party%%
to
decide
whether
or
not
it
is
beneficial
for
them
to
use
%%credentials^credential%%
of
such
types."
---
:::info Editor's note
...
...
plugins/terminology-parser/index.js
View file @
26020985
...
...
@@ -170,15 +170,19 @@ async function getGlossaryTerms(files) {
function
generateGlossary
(
data
)
{
//append all markdown terms in a variable
let
content
=
""
;
let
undefineds
=
""
;
data
.
forEach
(
item
=>
{
if
(
item
.
title
!==
undefined
)
{
if
(
item
.
hoverText
===
undefined
)
{
content
=
content
+
`\n\n- **[
${
item
.
title
}
](
${
item
.
filepath
}
)**
\n`
;
undefineds
=
undefineds
+
`\n- [
${
item
.
title
}
](
${
item
.
filepath
}
)
\n`
;
}
else
{
content
=
content
+
`\n\n
- **[
${
item
.
title
}
](
${
item
.
filepath
}
)**:
${
item
.
glossaryText
}
\n`
;
content
=
content
+
`\n\n
### **[
${
item
.
title
}
](
${
item
.
filepath
}
)**\n
${
item
.
glossaryText
}
\n`
;
}
}
})
if
(
undefineds
!==
""
)
{
content
=
content
+
"
\n\n
## Terms without glossary texts
\n\n
"
+
undefineds
;
}
fs
.
readFile
(
glossaryPath
,
'
utf8
'
,
function
(
err
,
glossaryContent
)
{
if
(
err
)
throw
err
;
var
indexOfSecond
=
glossaryContent
.
indexOf
(
searchTerm
,
1
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment