-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.js
192 lines (185 loc) · 8.4 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
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
//-------------------------------------------------------------------------------------
//-- File. . . : config.js
//-- Bevat . . : Template voor de configuratie voor respec
//-- Gebaseerd op https://github.com/Geonovum/respec/wiki
//-- Deze file moet worden neergezet in de root-directory van de
//-- betreffende standaard.
//-- Door. . . : Jan van Gelder
//-------------------------------------------------------------------------------------
//-------------------------------------------------------------------------------------
//-- Log . . . : 20181015 - JvG - Initiele versie
//-- Log . . . : 20191022 - GRK - Handreiking Archiveren ruimtelijke plannen v2.0
//-------------------------------------------------------------------------------------
//-- Postprocessors -------------------------------------------------------------------
//-- haalt gh-pages weg aan het eind van een URL
//-- Stopt zodra de eerste is gevonden (want komt maar 1x voor)
//-- JvG 2019-11-12
function custGHPG(respecConfig)
{
var tags = document.getElementsByTagName("a");
var srch = "gh-pages";
var slen = srch.length;
var i;
for (i = 0; i < tags.length; i++)
{
if(tags[i].href.indexOf(srch) > -1)
{
console.log(tags[i].href + " is gevonden");
tags[i].href = tags[i].href.substring(0, tags[i].href.length - slen);
console.log(tags[i].href + " is aangepast");
break;
}
}
}
//-------------------------------------------------------------------------------------
var respecConfig =
{
//-- specStatus is verplicht! (activeer 1 van de volgende) --------------------------
//specStatus: "GN-BASIS", // Basis Document
specStatus: "GN-WV", // Werk Versie
//specStatus: "GN-CV", // Consultatie Versie
//specStatus: "GN-VV", // Vaststellings Versie
//specStatus: "GN-DEF", // Definitieve Versie
//-- 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
//-- format is verplicht! -----------------------------------------------------------
format: "markdown", // altijd "markdown" - JvG W3C aangepast, op 1 plek markdown aangeven
//-- publishDate is verplicht -------------------------------------------------------
//-- NB: in de werkversie uitzetten, want dan pakt Respec de pushdate ---------------
//publishDate: "2019-10-08", // Format is "YYYY-MM-DD"
//-- Repositorynaam op GitHub -------------------------------------------------------
github: "https://github.com/geonovum/OAPIF-PDOK-INSPIRE",
//-- Repositorynaam/issues op GitHub ------------------------------------------------
issueBase: "https://github.com/geonovum/OAPIF-PDOK-INSPIRE/issues",
//-- edDraftURI: de URI van de werkversie van het document
edDraftURI: "https://geonovum.github.io/OAPIF-PDOK-INSPIRE",
//-- de namen van de Editor(s) ------------------------------------------------------
//-- vul in: per Editor: name:, company:, companyURL: -------------------------------
editors:
[
{
name: "Pieter Bresters",
company: "Geonovum",
companyURL: "https://www.geonovum.nl"
},
{
name: "Ine de Visser",
company: "Geonovum",
companyURL: "https://www.geonovum.nl"
},
],
//-- de namen van de Author(s) ------------------------------------------------------
//-- vul in: per Author: name:, company:, companyURL: -------------------------------
authors:
[
{
name: "Pieter Bresters",
company: "Geonovum",
companyURL: "https://www.geonovum.nl"
},
{
name: "Ine de Visser",
company: "Geonovum",
companyURL: "https://www.geonovum.nl"
},
],
//-- shortName is verplicht! (komt in de URL: kies logische naam) --------------------
shortName: "OAPIF-PDOK-INSPIRE", // Wordt gebruikt in de document URL
//-- pubDomain is verplicht! (komt in de URL: Activeer 1 van de volgende) ------------
pubDomain: "oapif", // OGC API Features
//pubDomain: "et", // Energie transitie
//pubDomain: "mim", // Metamodel Informatie Modellering
//pubDomain: "bor", // Beheer Openbare Ruimte
//pubDomain: "bro", // Basisregistratie Ondergrond
//pubDomain: "imgeo", // IMGeo / BGT
//pubDomain: "kl", // Kabels en Leidingen
//pubDomain: "liv", // Landelijke Informatievoorziening Vastgoedgebruik
//pubDomain: "md", // Metadata
//pubDomain: "nen3610", // Basismodel NEN3610
//pubDomain: "oov", // Openbare Orde en Veiligheid
//pubDomain: "ro", // Ruimtelijke Ordening
//pubDomain: "serv", // Services
//pubDomain: "visu", // Visualisatie
//pubDomain: "wp", // White Paper
//-- license: voor de geldende gebruiksvoorwaarden
//licence: "cc-by-nd", // bronvermelding, geen afgeleide werken (default)
//licence: "cc0", // Public Domain Dedication
licence: "cc-by", // Attribution, met bronvermelding
//-- localBiblio: lokale bibliografie, voor verwijzigingen
//-- NB: kijk eesrt naar de beschikbare www.specref.org voor verwijziging
localBiblio:
{
"PUB-1":
{
title: "OGC API Features Part1:Core",
href: "https://docs.opengeospatial.org/is/17-069r4/17-069r4.html",
status: "V1.0",
publisher: "OGC",
company: "OGC",
},
"PUB-2":
{
title: "Setting up an INSPIRE Download service based on the OGC API-Features standard",
href: "https://github.com/INSPIRE-MIF/gp-ogc-api-features/blob/master/spec/oapif-inspire-download.md",
status: "V1.0",
publisher: "INSPIRE-MIF",
company: "Companynaam",
},
"PUB-3":
{
title: "Dutch API design rules",
href: "https://www.geonovum.nl/over-geonovum/actueel/rest-api-design-rules-op-pas-toe-leg-uit-lijst",
status: "19 JULI 2020",
publisher: "https://www.geonovum.nl",
company: "Geonovum",
},
"PUB-4":
{
title: "INSPIRE UML-to-GeoJSON encoding rule",
href: "https://github.com/INSPIRE-MIF/2017.2/blob/master/GeoJSON/geojson-encoding-rule.md#inspire-requirements-for-encoding-rules",
status: "V0.1",
publisher: "Working group on Inspire Action 2017.2",
company: "Companynaam",
},
"PUB-5":
{
title: "OGC API - Features - Part 2: Coordinate Reference Systems by Reference",
href: "http://docs.opengeospatial.org/is/18-058r1/18-058r1.html",
status: "V1.0",
publisher: "OGC",
company: "OGC",
},
"PUB-6":
{
title: "OGC API - Features - Part 3: Filtering and the Common Query Language (CQL)",
href: "https://docs.ogc.org/DRAFTS/19-079r1.html",
status: "V1.0.0, draft",
publisher: "OGC",
company: "OGC",
},
},
postProcess:[custGHPG], //-- Optioneel voor een multi document repository
//-- Voor dit blok geldt: alleen als er eerdere versies zijn en altijd beiden aan/uit!
//previousPublishDate: "2018-09-18", // Format is "YYY-MM-DD"
//previousMaturity: "CV", // kies 1 van deze 2 regels
//previousMaturity: "VV", // kies 1 van deze 2 regels
//-- Optionele parameters:
//emailComments: "[email protected]", // reactie mailadres, alleen bij CV!
//subtitle: "iets", // Subtitel van het document
//maxTocLevel: 3, // Aantal niveau's ToC, default is 0
//-- LOGO: Hier kan je een ander logo opgeven indien nodig
//logos: [{
// src: "https://tools.geostandaarden.nl/respec/style/logos/OmgevingswetLogo.svg",
// alt: "Standaarden Omgevingswet",
// id: "TopLogo",
// height: 67,
// width: 300,
// url: "https://www.geonovum.nl/geo-standaarden/omgevingswet/STOPTPOD"
// }],
};