-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
130 lines (115 loc) · 4.27 KB
/
config.js
File metadata and controls
130 lines (115 loc) · 4.27 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
let respecConfig = {
useLogo: true,
useLabel: true,
// TODO: title is verplicht! Neem hieronder de titel van het document op
title: "GeoBIM BIM naar Geo brengen",
//-- 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: "3dbv",
//-- 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: "GeoBIM_BIM_naar_Geo",
//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: "2025-03-28",
//-- 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: "Rolf Jonker",
company: "Geonovum",
companyURL: "https://www.geonovum.nl",
}
],
//-- de namen van de auteur(s)
//-- vul in: per auteur: name:, company:, companyURL:
authors:
[
{
name: "Jasper van der Vaart",
company: "TU Delft",
companyURL: "https://3d.bk.tudelft.nl/",
},
{
name: "Jantien Stoter",
company: "TU Delft",
companyURL: "https://3d.bk.tudelft.nl/",
},
{
name: "Jeffrey Truijens",
company: "VDNDP",
companyURL: "https://vdndp.nl/",
},
{
name: "Wouter Lubbers",
company: "Semmtech",
companyURL: "https://semmtech.com/",
},
{
name: "Amir Hakim",
company: "Future Insight",
companyURL: "https://www.futureinsight.nl/",
},
{
name: "Dirkjan Schenau",
company: "Van Hattum en Blankevoort",
companyURL: "https://www.vhbinfra.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/GeoBIM_BIM_naar_Geo",
// 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.
// - 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"
}
}
};