generated from Logius-standaarden/ReSpec-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
90 lines (88 loc) · 3.92 KB
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
let respecConfig = {
useLogo: true,
useLabel: true,
// title is verplicht! Neem hier de titel van het document op ----------------------
title: "[TODO: Neem titel op in config.js]",
//-- specStatus is verplicht! (activeer 1 van de volgende) --------------------------
specStatus: "wv", // Werkversie
//specStatus: "cv", // Consultatieversie
//specStatus: "vv", // Versie ter vaststelling
//specStatus: "def", // Vastgestelde versie
//specStatus: "basis", // Basis Document
//-- specType is verplicht bij alle andere dan BASIS ---------------------------------
//specType: "NO", // Norm
//specType: "ST", // Standaard
//specType: "IM", // Informatie Model
//specType: "PR", // Praktijkrichtlijn
specType: "HR", // HandReiking
//specType: "WA", // Werkafspraak
//specType: "BD", // Beheer Documentatie
//specType: "AL", // Algemeen document
//specType: "BP", // Best Practice
//-- pubDomain is verplicht! (komt in de URL) -------------------------------------
//-- zie: https://geonovum.github.io/handleiding-tooling/ReSpec/#pubdomain
pubDomain: "TODO",
//-- license: voor de geldende gebruiksvoorwaarden. Default is cc-by.
//license: "cc-by-nd", // bronvermelding, geen afgeleide werken (default)
//license: "cc0", // Public Domain Dedication
license: "cc-by", // Attribution, met bronvermelding
//-- TODO shortName is verplicht! (komt in de URL: kies logische afkorting)--------------
shortName: "NL-ReSpec-GN-template",
//edDraftURI = De URI van de draft version. Deze wordt automatisch afgeleid van de github URI; maar kan hier overschreven worden.
//edDraftURI: ["https://geonovum.github.io", "/", "shortName"],
//-- publishDate is verplicht -------------------------------------------------------
//-- NB: in de werkversie uitzetten, want dan pakt Respec de pushdate ---------------
//publishDate: "2023-03-28",
//eventueel is het mogelijk een versienummer mee te geven, maar bij Geonovum werken we gewoonlijk alleen met datum als onderdeel van de permanente URI.
//publishVersion: "0.0.2",
//previousVersion: "0.0.1",
//-- Voor dit blok geldt: alleen als er eerdere versies zijn en altijd beiden aan/uit!
//previousPublishDate: "2014-05-01",
//previousMaturity: "CV",
//-- TODO: de namen van de Editor(s) / Redacteur(en)---------------------------------------
//-- vul in: per Editor: name:, company:, companyURL: -------------------------------
editors:
[
{
name: "voornaam achternaam",
company: "Geonovum",
companyURL: "https://www.geonovum.nl",
}
],
//-- de namen van de auteur(s) ------------------------------------------------------
//-- vul in: per auteur: name:, company:, companyURL: -------------------------------
authors:
[
{
name: "voornaam achternaam",
company: "Geonovum",
companyURL: "https://www.geonovum.nl",
}
],
// TODO: Vul de github URL in.
//neem hier de URL van de github repository op waar het respec document in staat
github: "https://github.com/Geonovum/NL-ReSpec-GN-template",
// Create PDF and link to file in header (optional):
// TODO: Change the filename as preferred.
alternateFormats: [
{
label: "pdf",
uri: "template.pdf",
},
],
// Lokale lijst voor bibliografie
// - Kijk eerst naar de beschikbare www.specref.org .
// - Kijk daarna in de organisatieconfig.
// - Voeg dan pas hieronder toe.
localBiblio:
{
MIM12: {
id: "MIM12",
title: "MIM - Metamodel Informatie Modellering (Versie 1.2)",
href: "https://docs.geostandaarden.nl/mim/def-st-mim-20240613/",
status: "Definitief",
publisher: "Geonovum",
date: "2024-06-13"
}
}
};