-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Accepteer documentor functionaliteit wanneer geen configuratie beschikbaar. Er wordt terugevallen op een default "Imvertor" configuratie met een minimum document struktuur. Improvement.
- Loading branch information
arjan
authored and
arjan
committed
Dec 4, 2024
1 parent
df8d472
commit 1fc4937
Showing
5 changed files
with
142 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file added
BIN
+44.9 KB
src/main/resources/etc/respec/documentor/modeldoc/default/default.docx
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
121 changes: 121 additions & 0 deletions
121
src/main/resources/input/Imvertor/cfg/docrules/documentor/js/owner.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
var organisationConfig = { | ||
|
||
nl_organisationName: "Imvertor OS", | ||
|
||
nl_organisationStylesURL: "https://gitdocumentatie.logius.nl/publicatie/respec/style/", | ||
|
||
nl_organisationPublishURL: "https://imvertor.org/publicatie", | ||
|
||
// Het hier gedefinieerde logo wordt helemaal bovenaan het Respec document aan de rechterzijde geplaatst. | ||
// Er is voor gekozen de 'width' property niet te gebruiken waardoor het logo automatisch in de juiste verhoudingen wordt geplaatst. | ||
|
||
logos:[ { | ||
src: "documentor/img/logo.png", | ||
alt: "Logo Imvertor OS", | ||
id: "Logo-ImvertorOS", | ||
height: 77, | ||
url: "https://imvertor.org", | ||
}], | ||
|
||
// De hier gedefinieerde variabelen kunnen door ze nogmaals in de config.js te plaatsen overruled worden. | ||
|
||
pubDomain: "cim", | ||
|
||
//this: "this", <-- Zo kun je dus eigen variabelen introduceren die je ergens anders kunt gebruiken. | ||
// Zoals bijv. hier --> 'thisVersion: ["nl_organisationPublishURL", "this", "/", "shortName"],' | ||
|
||
latestVersion:[ "nl_organisationPublishURL", "pubDomain", "/", "shortName"], | ||
thisVersion:[ "nl_organisationPublishURL", "pubDomain", "/", "shortName", "/", "publishVersion"], | ||
prevVersion:[ "nl_organisationPublishURL", "pubDomain", "/", "shortName", "/", "previousPublishVersion"], | ||
|
||
useLogo: true, | ||
useLabel: true, | ||
// noTOC: true, | ||
maxTocLevel: 4, | ||
|
||
license: "eupl", | ||
addSectionLinks: true, | ||
|
||
localizationStrings: { | ||
nl: { | ||
// Specificatie-statussen | ||
cv: "Consultatieversie", | ||
vv: "Ter vaststelling", | ||
ig: "In gebruik", | ||
io: "In ontwikkeling", | ||
// Specificatie-types | ||
im: "Informatiemodel", | ||
hl: "Handleiding", | ||
}, | ||
en: { | ||
// Specificatie-statussen | ||
cv: "Consultation", | ||
vv: "Proposed recommendation", | ||
ig: "In use", | ||
io: "In development", | ||
// Specificatie-types | ||
im: "Information model", | ||
hl: "Guideline", | ||
}, | ||
}, | ||
|
||
sotdText: { | ||
nl: { | ||
sotd: "Status van dit document", | ||
cv: `Dit is een goedgekeurde consultatieversie. Commentaar over dit document kan gestuurd worden naar `, | ||
vv: `Dit is een definitief concept van de nieuwe versie van dit document. Wijzigingen naar aanleiding van consultaties zijn doorgevoerd.`, | ||
ig: "Dit document is 'In Gebruik'.", | ||
io: "Dit document is nog 'In Ontwikkeling'.", | ||
}, | ||
en: { | ||
sotd: "Status of This Document", | ||
cv: `This is a proposed recommendation approved by TO. Comments regarding this document may be sent to `, | ||
vv: `This is the definitive concept of this document. Edits resulting from consultations have been applied.`, | ||
ig: "This document is 'In Use'.", | ||
io: "This document is is still 'Under Development'.", | ||
}, | ||
}, | ||
|
||
labelColor: { | ||
cv: "#154273", | ||
vv: "#39870c", | ||
ig: "#A569BD", | ||
io: "#DC7633" | ||
}, | ||
|
||
licenses: { | ||
cc0: { | ||
name: "Creative Commons 0 Public Domain Dedication", | ||
short: "CC0", | ||
url: "https://creativecommons.org/publicdomain/zero/1.0/", | ||
image: "https://gitdocumentatie.logius.nl/publicatie/respec/media/logos/cc-zero.svg", | ||
}, | ||
"cc-by": { | ||
name: "Creative Commons Attribution 4.0 International Public License", | ||
short: "CC-BY", | ||
url: "https://creativecommons.org/licenses/by/4.0/legalcode", | ||
image: "https://gitdocumentatie.logius.nl/publicatie/respec/media/logos/cc-by.svg", | ||
}, | ||
"cc-by-nd": { | ||
name: "Creative Commons Naamsvermelding-GeenAfgeleideWerken 4.0 Internationaal", | ||
short: "CC-BY-ND", | ||
url: "https://creativecommons.org/licenses/by-nd/4.0/legalcode.nl", | ||
image: "https://gitdocumentatie.logius.nl/publicatie/respec/media/logos/cc-by-nd.svg", | ||
}, | ||
"eupl": { | ||
name: "EUROPEAN UNION PUBLIC LICENCE v. 1.2", | ||
short: "EUPL", | ||
url: "https://eupl.eu/", | ||
image: "https://eupl.eu/eu.png", | ||
}, | ||
}, | ||
|
||
localBiblio: { | ||
"SemVer": { | ||
href: "https://semver.org", | ||
title: "Semantic Versioning 2.0.0", | ||
authors:[ "T. Preston-Werner"], | ||
date: "June 2013" | ||
}, | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters