-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.js
More file actions
136 lines (120 loc) · 4.83 KB
/
Copy pathconfig.js
File metadata and controls
136 lines (120 loc) · 4.83 KB
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
let respecConfig = {
useLogo: true,
useLabel: true,
// TODO: title is verplicht! Neem hieronder de titel van het document op
title: "MIM - Metamodel Informatiemodellering: Best Practices",
//-- 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
//-- TODO: vul pubDomain in
pubDomain: "mim",
//-- 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)
//-- Regel: shortName mag geen hoofdletters bevatten.
shortName: "mim-bp",
//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. Als je werkversie gekozen hebt dan pakt Respec
//-- de pushdate maar de publishDate is nog steeds verplicht.
publishDate: "2026-02-09",
//-- publishVersion is verplicht. Hij mag wel leeg zijn [], maar niet de lege string zijn "".
publishVersion: [],
//-- Voor dit blok geldt: alleen als er eerdere versies zijn en altijd beide aan/uit!
//previousPublishDate: "2014-05-01",
//previousMaturity: "CV",
//-- Deze gebruiken we niet binnen Geonovum
//prevVersion: "0.0.1",
//-- 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/mim-best-practices",
//Omdat de links in de 'Doe mee' sectie niet allemaal naar dezelfde repository moeten leiden is hier i.p.v. van de 'github' property een 'otherLinks'
//property geplaatst met de key die overeenkomt met de 'Doe mee' sectie en daarin de betreffende properties.
otherLinks: [{
key: "Doe mee",
data: [{
value: "Geonovum/mim-best-practices",
href: "https://github.com/Geonovum/mim-best-practices"
},
{
value: "All issues",
href: "https://github.com/orgs/Geonovum/projects/24/views/1?filterQuery=label%3A%22Best+practice%22&sortedBy%5Bdirection%5D=asc&sortedBy%5BcolumnId%5D=Created"
},
{
value: "Dien een melding in",
href: "https://github.com/Geonovum/mim-metamodel/issues/new"
},
{
value: "Revisiehistorie",
href: "https://github.com/Geonovum/mim-best-practices/commits"
},
{
value: "Pull requests",
href: "https://github.com/Geonovum/mim-best-practices/pulls"
},
]
}],
// Create PDF and link to file in header (optional):
// TODO: Change the filename as preferred.
//alternateFormats: [
// {
// label: "pdf",
// uri: "static/template.pdf",
// },
//],
//
// Lokale lijst voor bibliografie
// - Kijk eerst naar de beschikbare www.specref.org .
// - Kijk daarna in de organisatieconfig op: https://tools.geostandaarden.nl/specref/
// - Voeg dan pas hieronder toe.
// - Zie handleiding: https://geonovum.github.io/handleiding-tooling/ReSpec/ReSpec-onderdelen/#bibliografie
//
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"
}
}
};