metanorma-cli 1.3.6 → 1.3.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.adoc +46 -0
- data/exe/index.html +1025 -0
- data/exe/index.xml +43 -0
- data/exe/metanorma.old +178 -0
- data/exe/rfc2629-other.ent +61 -0
- data/exe/rfc2629-xhtml.ent +165 -0
- data/exe/rfc2629.dtd +312 -0
- data/exe/rfc6350.adoc +3505 -0
- data/exe/rfc6350.xml +3319 -0
- data/lib/metanorma/cli/command.rb +19 -0
- data/lib/metanorma/cli/version.rb +1 -1
- data/metanorma-cli.gemspec +13 -16
- metadata +69 -38
- data/.github/workflows/dependent_repos.env +0 -3
- data/.github/workflows/macos.yml +0 -38
- data/.github/workflows/ubuntu.yml +0 -72
- data/.github/workflows/windows.yml +0 -40
- data/.gitignore +0 -21
- data/.hound.yml +0 -3
- data/.rspec +0 -2
- data/.rubocop.yml +0 -515
- data/templates/base/.github/workflows/docker.yml +0 -74
- data/templates/base/.github/workflows/macos.yml +0 -50
- data/templates/base/.github/workflows/ubuntu.yml +0 -55
- data/templates/base/.github/workflows/windows.yml +0 -42
- data/templates/base/.gitignore +0 -6
- data/templates/base/.gitlab-ci.yml +0 -45
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0bf83d595a57ad66ccd46a13369959bbbbedb12f8862de67dbb52866cd3f61c1
|
4
|
+
data.tar.gz: 54436b4066c82e5e756bcf2c80d060d5cc23d3baea6428bca490d7b41585b2c0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 58e694c9325bbbc824f6d56143b0fc3904a5d652cbd6eebbf9b4b31ff10f3c42bad4da50daf1866cce21a02ee89034df68ab245b2960e83ff6a0937c8cbcc149
|
7
|
+
data.tar.gz: 87a4173fee1fc642be7773ad7b637ab70849d9326456ec35d94c682f7dcf31c3dbecc12e17e4c8d49f1fbc1e642c1ba10865d2246fcbb3d377312f6175ec94ac
|
data/README.adoc
CHANGED
@@ -183,6 +183,52 @@ This should compile any valid document, but if there are some issues then it
|
|
183
183
|
will also print those out in the terminal. Currently, the supported flavors
|
184
184
|
are `ietf`, `iso`, `gb`, `csd`, `csand`, `m3d` and `rsd`.
|
185
185
|
|
186
|
+
=== Compile a document collection (`metanorma collection`)
|
187
|
+
|
188
|
+
(_This is placeholder for more complete documentation later._)
|
189
|
+
|
190
|
+
This functionality compiles collections of Metanorma documents. It compiles
|
191
|
+
the individual documents comprising the collection; then it compiles a document
|
192
|
+
acting as a container for those collections. See
|
193
|
+
https://github.com/metanorma/metanorma/wiki/Metanorma-collections[],
|
194
|
+
https://github.com/metanorma/metanorma-cli/blob/master/spec/fixtures/collection1.yml[]
|
195
|
+
|
196
|
+
The file argument to the collection command is a Metanorma Collections YAML file,
|
197
|
+
which contains:
|
198
|
+
|
199
|
+
* Directives on how the collection should be generated
|
200
|
+
* Metadata about the collection
|
201
|
+
* A manifest listing the documents contained in the collection, in nested hierarchy
|
202
|
+
* Content to put at the beginning of the collection container
|
203
|
+
* Content to put at the endeginning of the collection container
|
204
|
+
|
205
|
+
Documents within a collection
|
206
|
+
may cross-reference each other using the syntax
|
207
|
+
`* [[[myanchor,repo:(current-metanorma-collection/mydoc)]]]`,
|
208
|
+
as proposed in https://github.com/metanorma/metanorma/issues/57, where
|
209
|
+
`mydoc` is be the value of docref/identifier corresponding to the target document,
|
210
|
+
as set in the YAML manifest.
|
211
|
+
|
212
|
+
The output directory will contain:
|
213
|
+
|
214
|
+
* The documents referenced in the manifest, with any citations of other documents in the collection
|
215
|
+
resolved, in the output formats requested
|
216
|
+
* If `xml` or `presentation` are requested as formats, a concatenated `collection.xml` and/or
|
217
|
+
`collection.presentation.xml` file, containing all the documents in the collection.
|
218
|
+
* If `html` is requested as a format, an `index.html` HTML page, populated from a provided
|
219
|
+
Liquid template coverpage, and linking to all the documents in the manifest.
|
220
|
+
|
221
|
+
|
222
|
+
[source]
|
223
|
+
----
|
224
|
+
Usage:
|
225
|
+
metanorma collection FILENAME [..options]
|
226
|
+
|
227
|
+
Options:
|
228
|
+
-x, [--extensions=EXTENSIONS] # Type of extension to generate
|
229
|
+
-w, [--output-folder=FOLDER] # Folder to generate collection in
|
230
|
+
-c, [--coverpage=COVERPAGE] # Cover page as Liquid template for collection (currently HTML only)
|
231
|
+
----
|
186
232
|
|
187
233
|
=== List supported output formats (`metanorma list-extensions`)
|
188
234
|
|
data/exe/index.html
ADDED
@@ -0,0 +1,1025 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<!DOCTYPE html SYSTEM "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
3
|
+
<html xmlns:epub="http://www.idpf.org/2007/ops">
|
4
|
+
<head><style>
|
5
|
+
<!--
|
6
|
+
@charset "UTF-8";
|
7
|
+
/*
|
8
|
+
0 CSS RESET
|
9
|
+
*/
|
10
|
+
/* http://meyerweb.com/eric/tools/css/reset/
|
11
|
+
v2.0 | 20110126
|
12
|
+
License: none (public domain)
|
13
|
+
*/
|
14
|
+
html, body, div, span, applet, object, iframe,
|
15
|
+
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
16
|
+
a, abbr, acronym, address, big, cite, code,
|
17
|
+
del, dfn, em, img, ins, kbd, q, s, samp,
|
18
|
+
small, strike, strong, sub, sup, tt, var,
|
19
|
+
b, u, i, center,
|
20
|
+
ol, ul, li,
|
21
|
+
fieldset, form, label, legend,
|
22
|
+
table, caption, tbody, tfoot, thead, tr, th, td,
|
23
|
+
article, aside, canvas, details, embed,
|
24
|
+
figure, figcaption, footer, header, hgroup,
|
25
|
+
menu, nav, output, ruby, section, summary,
|
26
|
+
time, mark, audio, video {
|
27
|
+
margin: 0;
|
28
|
+
padding: 0; }
|
29
|
+
|
30
|
+
html, body, div, span, applet, object, iframe,
|
31
|
+
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
32
|
+
a, abbr, acronym, address, big, cite, code,
|
33
|
+
del, dfn, em, img, ins, kbd, q, s, samp,
|
34
|
+
small, strike, strong, sub, sup, tt, var,
|
35
|
+
b, u, i, center,
|
36
|
+
dl, dt, dd, ol, ul, li,
|
37
|
+
fieldset, form, label, legend,
|
38
|
+
table, caption, tbody, tfoot, thead, tr, th, td,
|
39
|
+
article, aside, canvas, details, embed,
|
40
|
+
figure, figcaption, footer, header, hgroup,
|
41
|
+
menu, nav, output, ruby, section, summary,
|
42
|
+
time, mark, audio, video {
|
43
|
+
border: 0;
|
44
|
+
font-size: 100%; }
|
45
|
+
|
46
|
+
html, body, div, span, applet, object, iframe,
|
47
|
+
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
48
|
+
a, abbr, acronym, address, big, cite, code,
|
49
|
+
del, dfn, em, img, ins, kbd, q, s, samp,
|
50
|
+
small, strike, strong, tt, var,
|
51
|
+
b, u, i, center,
|
52
|
+
dl, dd, ol, ul, li,
|
53
|
+
fieldset, form, label, legend,
|
54
|
+
table, caption, tbody, tfoot, thead, tr, th, td,
|
55
|
+
article, aside, canvas, details, embed,
|
56
|
+
figure, figcaption, footer, header, hgroup,
|
57
|
+
menu, nav, output, ruby, section, summary,
|
58
|
+
time, mark, audio, video {
|
59
|
+
vertical-align: baseline; }
|
60
|
+
|
61
|
+
html, body, div, span, applet, object, iframe,
|
62
|
+
p, blockquote,
|
63
|
+
a, abbr, acronym, address, big, cite,
|
64
|
+
del, dfn, em, img, ins, q, s,
|
65
|
+
small, strike, strong, sub, sup, var,
|
66
|
+
b, u, i, center,
|
67
|
+
dl, dt, dd, ol, ul, li,
|
68
|
+
fieldset, form, label, legend,
|
69
|
+
table, caption, tbody, tfoot, thead, tr, th, td,
|
70
|
+
article, aside, canvas, details, embed,
|
71
|
+
figure, figcaption, footer, header, hgroup,
|
72
|
+
menu, nav, output, ruby, section, summary,
|
73
|
+
time, mark, audio, video {
|
74
|
+
font-family: "Overpass", sans-serif; }
|
75
|
+
|
76
|
+
code, pre, tt, kbd, samp {
|
77
|
+
font-family: "Space Mono", monospace; }
|
78
|
+
|
79
|
+
h1, h2, h3, h4, h5, h6, .h2Annex {
|
80
|
+
font-family: "Overpass", sans-serif; }
|
81
|
+
|
82
|
+
dl {
|
83
|
+
display: grid;
|
84
|
+
grid-template-columns: max-content auto; }
|
85
|
+
|
86
|
+
dt {
|
87
|
+
grid-column-start: 1; }
|
88
|
+
|
89
|
+
dd {
|
90
|
+
grid-column-start: 2; }
|
91
|
+
|
92
|
+
dd p, dt p {
|
93
|
+
margin-top: 0px; }
|
94
|
+
|
95
|
+
/* HTML5 display-role reset for older browsers */
|
96
|
+
article, aside, details, figcaption, figure,
|
97
|
+
footer, header, hgroup, menu, nav, section {
|
98
|
+
display: block; }
|
99
|
+
|
100
|
+
body {
|
101
|
+
line-height: 1; }
|
102
|
+
|
103
|
+
blockquote, q {
|
104
|
+
quotes: none; }
|
105
|
+
|
106
|
+
blockquote:before, blockquote:after,
|
107
|
+
q:before, q:after {
|
108
|
+
content: '';
|
109
|
+
content: none; }
|
110
|
+
|
111
|
+
table {
|
112
|
+
border-collapse: collapse;
|
113
|
+
border-spacing: 0; }
|
114
|
+
|
115
|
+
/*
|
116
|
+
1. HTML & Body
|
117
|
+
*/
|
118
|
+
body {
|
119
|
+
margin: 0;
|
120
|
+
margin-left: auto;
|
121
|
+
margin-right: auto;
|
122
|
+
max-width: 100%;
|
123
|
+
color: #1d1d1d;
|
124
|
+
font-weight: 300;
|
125
|
+
font-size: 15px;
|
126
|
+
line-height: 1.4em;
|
127
|
+
background-color: #ffffff; }
|
128
|
+
|
129
|
+
main {
|
130
|
+
margin: 0 3em 0 6em; }
|
131
|
+
|
132
|
+
#toc {
|
133
|
+
font-family: "Overpass", sans-serif;
|
134
|
+
font-weight: 400; }
|
135
|
+
|
136
|
+
/*
|
137
|
+
2. Responsive navigation layout
|
138
|
+
*/
|
139
|
+
@media screen and (min-width: 768px) {
|
140
|
+
nav {
|
141
|
+
position: fixed;
|
142
|
+
top: 0;
|
143
|
+
bottom: 0;
|
144
|
+
left: 0;
|
145
|
+
width: 323px;
|
146
|
+
font-size: 0.9em;
|
147
|
+
overflow: auto;
|
148
|
+
padding: 0 0 0 45px;
|
149
|
+
margin-right: 30px;
|
150
|
+
background-color: #f7f7f7; }
|
151
|
+
#toggle {
|
152
|
+
position: fixed;
|
153
|
+
height: 100%;
|
154
|
+
width: 30px;
|
155
|
+
background-color: #1d1d1d;
|
156
|
+
color: white !important;
|
157
|
+
cursor: pointer;
|
158
|
+
z-index: 100; }
|
159
|
+
#toggle span {
|
160
|
+
text-align: center;
|
161
|
+
width: 100%;
|
162
|
+
position: absolute;
|
163
|
+
top: 50%;
|
164
|
+
transform: translate(0, -50%); }
|
165
|
+
.container {
|
166
|
+
padding-left: 360px; }
|
167
|
+
.rule.toc {
|
168
|
+
display: none; }
|
169
|
+
h1.toc-contents {
|
170
|
+
margin-top: 1em; }
|
171
|
+
ul#toc-list {
|
172
|
+
padding: 0;
|
173
|
+
margin: 0; } }
|
174
|
+
|
175
|
+
@media screen and (max-width: 768px) {
|
176
|
+
#toc {
|
177
|
+
padding: 0 1.5em 0 1.5em;
|
178
|
+
overflow: visible; } }
|
179
|
+
|
180
|
+
#toc ul {
|
181
|
+
margin: 0;
|
182
|
+
padding: 0;
|
183
|
+
list-style: none; }
|
184
|
+
|
185
|
+
#toc li {
|
186
|
+
padding: 5px 10px; }
|
187
|
+
|
188
|
+
#toc a {
|
189
|
+
color: #485094;
|
190
|
+
text-decoration: none;
|
191
|
+
display: block; }
|
192
|
+
|
193
|
+
#toc a:hover {
|
194
|
+
color: white; }
|
195
|
+
|
196
|
+
#toc .h2 {
|
197
|
+
padding-left: 30px; }
|
198
|
+
|
199
|
+
#toc .h3 {
|
200
|
+
padding-left: 50px; }
|
201
|
+
|
202
|
+
#toc .toc-active a {
|
203
|
+
color: white; }
|
204
|
+
|
205
|
+
#toc .toc-active, #toc li:hover {
|
206
|
+
background: #1d1d1d;
|
207
|
+
box-shadow: inset -5px 0px 10px -5px #1d1d1d !important; }
|
208
|
+
|
209
|
+
#toc li:hover a {
|
210
|
+
color: white; }
|
211
|
+
|
212
|
+
/*
|
213
|
+
Document types + stages
|
214
|
+
*/
|
215
|
+
.document-type-band {
|
216
|
+
left: 0;
|
217
|
+
top: 180px;
|
218
|
+
height: 100%;
|
219
|
+
position: fixed;
|
220
|
+
display: block;
|
221
|
+
z-index: 99;
|
222
|
+
/*box-shadow: -5px 0px 10px #1d1d1d*/ }
|
223
|
+
|
224
|
+
.document-stage-band {
|
225
|
+
left: 0;
|
226
|
+
top: 0;
|
227
|
+
height: 100%;
|
228
|
+
position: fixed;
|
229
|
+
display: block;
|
230
|
+
z-index: 98;
|
231
|
+
box-shadow: -5px 0px 10px #1d1d1d; }
|
232
|
+
|
233
|
+
.document-type {
|
234
|
+
position: relative;
|
235
|
+
width: 25px; }
|
236
|
+
|
237
|
+
.document-stage {
|
238
|
+
position: relative;
|
239
|
+
width: 25px; }
|
240
|
+
|
241
|
+
p.document-type, p.document-stage {
|
242
|
+
color: white;
|
243
|
+
text-transform: uppercase;
|
244
|
+
font-size: 0.9em;
|
245
|
+
font-weight: 400;
|
246
|
+
letter-spacing: 0.05em;
|
247
|
+
margin: 0;
|
248
|
+
margin-left: 6px;
|
249
|
+
writing-mode: tb-rl;
|
250
|
+
-webkit-transform: rotate(180deg);
|
251
|
+
-moz-transform: rotate(180deg);
|
252
|
+
-o-transform: rotate(180deg);
|
253
|
+
white-space: nowrap;
|
254
|
+
display: block;
|
255
|
+
bottom: 0; }
|
256
|
+
|
257
|
+
p.document-type {
|
258
|
+
font-weight: 400;
|
259
|
+
height: 210px; }
|
260
|
+
|
261
|
+
#governance-band p.document-type {
|
262
|
+
font-weight: 400;
|
263
|
+
height: 230px !important; }
|
264
|
+
|
265
|
+
p.document-stage {
|
266
|
+
font-weight: 300;
|
267
|
+
height: 160px; }
|
268
|
+
|
269
|
+
#standard-band {
|
270
|
+
background-color: #0ac442; }
|
271
|
+
|
272
|
+
#standard {
|
273
|
+
border-bottom: solid 3px #0ac442; }
|
274
|
+
|
275
|
+
#governance {
|
276
|
+
border-bottom: solid 3px #750697; }
|
277
|
+
|
278
|
+
#governance-band {
|
279
|
+
background-color: #750697; }
|
280
|
+
|
281
|
+
#guide {
|
282
|
+
border-bottom: solid 3px #48a0e7; }
|
283
|
+
|
284
|
+
#guide-band {
|
285
|
+
background-color: #48a0e7; }
|
286
|
+
|
287
|
+
.coverpage-maturity {
|
288
|
+
font-family: "Overpass", sans-serif;
|
289
|
+
font-weight: 400;
|
290
|
+
font-size: 1em;
|
291
|
+
margin: 0 0 2em 0;
|
292
|
+
text-transform: uppercase; }
|
293
|
+
|
294
|
+
#proposal {
|
295
|
+
border-bottom: solid 3px #00BFFF; }
|
296
|
+
|
297
|
+
#proposal-band {
|
298
|
+
background-color: #00BFFF; }
|
299
|
+
|
300
|
+
#working-draft {
|
301
|
+
border-bottom: solid 3px #fda706; }
|
302
|
+
|
303
|
+
#working-draft-band {
|
304
|
+
background-color: #fda706; }
|
305
|
+
|
306
|
+
#committee-draft {
|
307
|
+
border-bottom: solid 3px #fd06fd; }
|
308
|
+
|
309
|
+
#committee-draft-band {
|
310
|
+
background-color: #fd06fd; }
|
311
|
+
|
312
|
+
#draft-standard {
|
313
|
+
border-bottom: solid 3px #fdf906; }
|
314
|
+
|
315
|
+
#draft-standard-band {
|
316
|
+
background-color: #fdf906; }
|
317
|
+
|
318
|
+
#final-draft {
|
319
|
+
border-bottom: solid 3px #7e0d13; }
|
320
|
+
|
321
|
+
#final-draft-band {
|
322
|
+
background-color: #7e0d13; }
|
323
|
+
|
324
|
+
#published {
|
325
|
+
border-bottom: solid 3px #0ac442; }
|
326
|
+
|
327
|
+
#published-band {
|
328
|
+
background-color: #0ac442; }
|
329
|
+
|
330
|
+
#withdrawn {
|
331
|
+
border-bottom: solid 3px #a0a0a0; }
|
332
|
+
|
333
|
+
#withdrawn-band {
|
334
|
+
background-color: #a0a0a0; }
|
335
|
+
|
336
|
+
/*
|
337
|
+
3. TYPOGRAPHY
|
338
|
+
*/
|
339
|
+
/*
|
340
|
+
3.1 Titles
|
341
|
+
*/
|
342
|
+
h1, h2, h3, h4, h5, h6 {
|
343
|
+
font-family: "Overpass", sans-serif;
|
344
|
+
color: #0e1a85;
|
345
|
+
font-weight: 600;
|
346
|
+
margin-top: 2em;
|
347
|
+
margin-bottom: 0.3em; }
|
348
|
+
|
349
|
+
h1 {
|
350
|
+
font-size: 1.4em;
|
351
|
+
text-transform: uppercase;
|
352
|
+
margin-top: 2em; }
|
353
|
+
|
354
|
+
h1#content {
|
355
|
+
margin-top: 2em; }
|
356
|
+
|
357
|
+
h2 {
|
358
|
+
font-size: 1.3em;
|
359
|
+
font-weight: 400; }
|
360
|
+
|
361
|
+
h3 {
|
362
|
+
font-size: 1.1em;
|
363
|
+
font-weight: 400; }
|
364
|
+
|
365
|
+
/*
|
366
|
+
span[id^="toc"]:after {
|
367
|
+
float: left;
|
368
|
+
padding-right: 4px;
|
369
|
+
margin-left: -20px;
|
370
|
+
font-family: "Font Awesome 5 Free";
|
371
|
+
font-weight: 900;
|
372
|
+
font-size: 0.8em;
|
373
|
+
color: #cfcfcf;
|
374
|
+
content: "\f0c1";
|
375
|
+
}
|
376
|
+
*/
|
377
|
+
.TermNum, .Terms, .AltTerms {
|
378
|
+
color: #485094;
|
379
|
+
font-weight: 400; }
|
380
|
+
|
381
|
+
p.TermNum {
|
382
|
+
font-size: 0.9em;
|
383
|
+
line-height: 1em;
|
384
|
+
margin: 0;
|
385
|
+
margin-top: 2em; }
|
386
|
+
|
387
|
+
p.Terms {
|
388
|
+
font-size: 1.1em;
|
389
|
+
line-height: 1.7em;
|
390
|
+
margin: 0; }
|
391
|
+
|
392
|
+
/*
|
393
|
+
p.AltTerms {
|
394
|
+
font-style: italic;
|
395
|
+
margin: 0;
|
396
|
+
}
|
397
|
+
*/
|
398
|
+
span.obligation {
|
399
|
+
font-weight: 400; }
|
400
|
+
|
401
|
+
/*
|
402
|
+
3.2 Links
|
403
|
+
*/
|
404
|
+
a, a:visited {
|
405
|
+
text-decoration: none;
|
406
|
+
color: #485094; }
|
407
|
+
|
408
|
+
a:hover {
|
409
|
+
color: white;
|
410
|
+
background: #1d1d1d;
|
411
|
+
box-shadow: 3px 0 0 #1d1d1d, -3px 0 0 #1d1d1d;
|
412
|
+
/* padding: 2px 0 2px 0; */ }
|
413
|
+
|
414
|
+
::selection {
|
415
|
+
background: #1d1d1d;
|
416
|
+
/* WebKit/Blink Browsers */
|
417
|
+
color: white; }
|
418
|
+
|
419
|
+
::-moz-selection {
|
420
|
+
background: #1d1d1d;
|
421
|
+
/* Gecko Browsers */
|
422
|
+
color: white; }
|
423
|
+
|
424
|
+
.contact-info a:hover {
|
425
|
+
color: #485094;
|
426
|
+
text-decoration: underline;
|
427
|
+
background: none;
|
428
|
+
box-shadow: 0 0 0 0; }
|
429
|
+
|
430
|
+
/*
|
431
|
+
3.3 Lists
|
432
|
+
*/
|
433
|
+
ul {
|
434
|
+
margin-left: 1.2em; }
|
435
|
+
|
436
|
+
ol {
|
437
|
+
margin-left: 1.2em; }
|
438
|
+
|
439
|
+
ul > li {
|
440
|
+
list-style: none; }
|
441
|
+
|
442
|
+
ul > li:before {
|
443
|
+
content: "—";
|
444
|
+
display: inline-block;
|
445
|
+
width: 1em;
|
446
|
+
margin-left: -1.2em; }
|
447
|
+
|
448
|
+
li p {
|
449
|
+
display: inline; }
|
450
|
+
|
451
|
+
li:first-child {
|
452
|
+
margin-top: 1em; }
|
453
|
+
|
454
|
+
#toc ul {
|
455
|
+
margin-bottom: 0.25em; }
|
456
|
+
|
457
|
+
#toc li {
|
458
|
+
list-style-type: none; }
|
459
|
+
|
460
|
+
#toc li:before {
|
461
|
+
content: " ";
|
462
|
+
display: none; }
|
463
|
+
|
464
|
+
/*
|
465
|
+
3.4 Rules
|
466
|
+
*/
|
467
|
+
.rule {
|
468
|
+
width: 100%;
|
469
|
+
height: 1px;
|
470
|
+
background-color: #0e1a85;
|
471
|
+
margin: 2em 0; }
|
472
|
+
|
473
|
+
h2 p {
|
474
|
+
display: inline; }
|
475
|
+
|
476
|
+
/*
|
477
|
+
3.5 Bibliograhy
|
478
|
+
*/
|
479
|
+
p.Biblio, p.NormRef {
|
480
|
+
margin-top: 1em;
|
481
|
+
margin-left: 2em;
|
482
|
+
text-indent: -2em; }
|
483
|
+
|
484
|
+
/*
|
485
|
+
3.6 Source Code + figures
|
486
|
+
*/
|
487
|
+
.figure, .Sourcecode {
|
488
|
+
font-family: "Space Mono", monospace;
|
489
|
+
background-color: #f7f7f7;
|
490
|
+
font-size: 0.8em;
|
491
|
+
line-height: 1.6em;
|
492
|
+
padding: 1.5em;
|
493
|
+
margin: 2em 0 1em 0;
|
494
|
+
overflow: auto; }
|
495
|
+
|
496
|
+
.FigureTitle {
|
497
|
+
font-weight: 700;
|
498
|
+
font-size: 1em;
|
499
|
+
text-align: center; }
|
500
|
+
|
501
|
+
/*
|
502
|
+
3.7 Notes
|
503
|
+
*/
|
504
|
+
.Note {
|
505
|
+
background-color: #fff495;
|
506
|
+
color: #47430c;
|
507
|
+
padding: 1.2em;
|
508
|
+
margin: 2em 0 1em 0; }
|
509
|
+
|
510
|
+
/*
|
511
|
+
3.8 Examples
|
512
|
+
*/
|
513
|
+
table.example {
|
514
|
+
background-color: #e1eef1; }
|
515
|
+
|
516
|
+
td.example {
|
517
|
+
padding: 0 1em 0 1em;
|
518
|
+
margin: 2em 0 1em 0; }
|
519
|
+
|
520
|
+
.example .example-title {
|
521
|
+
font-weight: 700;
|
522
|
+
text-transform: uppercase;
|
523
|
+
text-align: center;
|
524
|
+
margin-top: 0; }
|
525
|
+
|
526
|
+
/*
|
527
|
+
3.9 Tables
|
528
|
+
*/
|
529
|
+
table {
|
530
|
+
border-collapse: collapse;
|
531
|
+
width: 100%;
|
532
|
+
font-weight: 300;
|
533
|
+
margin: 1em 0 2em 0;
|
534
|
+
margin-left: auto;
|
535
|
+
margin-right: auto;
|
536
|
+
padding-right: 2em; }
|
537
|
+
|
538
|
+
table, th, td {
|
539
|
+
border: 1px solid black;
|
540
|
+
font-size: 0.95em; }
|
541
|
+
|
542
|
+
td, th {
|
543
|
+
padding: 1em; }
|
544
|
+
|
545
|
+
td.header {
|
546
|
+
font-weight: 400; }
|
547
|
+
|
548
|
+
p.TableTitle {
|
549
|
+
text-align: center;
|
550
|
+
margin-top: 2.5em;
|
551
|
+
font-weight: 400; }
|
552
|
+
|
553
|
+
/*
|
554
|
+
3.10 Footnotes
|
555
|
+
*/
|
556
|
+
a.footnote-number {
|
557
|
+
vertical-align: super;
|
558
|
+
font-size: 0.8em; }
|
559
|
+
|
560
|
+
.footnote {
|
561
|
+
font-size: 0.9em; }
|
562
|
+
|
563
|
+
/*
|
564
|
+
3.11 Blockquotes
|
565
|
+
*/
|
566
|
+
.Quote {
|
567
|
+
background-color: #f7f7f7;
|
568
|
+
font-style: italic;
|
569
|
+
width: 80%;
|
570
|
+
padding: 1.5em;
|
571
|
+
margin-top: 2em;
|
572
|
+
margin-left: auto;
|
573
|
+
margin-right: auto; }
|
574
|
+
|
575
|
+
.QuoteAttribution {
|
576
|
+
text-align: right; }
|
577
|
+
|
578
|
+
/*
|
579
|
+
3.12 Formulas
|
580
|
+
*/
|
581
|
+
.formula, .Formula {
|
582
|
+
background-color: #f7f7f7;
|
583
|
+
padding: 1.5em;
|
584
|
+
margin-top: 2em;
|
585
|
+
text-align: center; }
|
586
|
+
|
587
|
+
/*
|
588
|
+
3.13 Contact Info
|
589
|
+
*/
|
590
|
+
.contact-info {
|
591
|
+
background-color: #f7f7f7;
|
592
|
+
padding: 2em;
|
593
|
+
margin-top: 5em;
|
594
|
+
width: auto;
|
595
|
+
margin-left: auto;
|
596
|
+
margin-right: auto;
|
597
|
+
text-align: left; }
|
598
|
+
|
599
|
+
.contact-info p, .contact-info a {
|
600
|
+
font-family: "Space Mono", monospace;
|
601
|
+
font-weight: 400; }
|
602
|
+
|
603
|
+
.contact-info .name {
|
604
|
+
font-weight: 700;
|
605
|
+
font-size: 1.2em;
|
606
|
+
margin-bottom: 0; }
|
607
|
+
|
608
|
+
.contact-info .address {
|
609
|
+
font-size: 1em;
|
610
|
+
line-height: 1.3em;
|
611
|
+
margin-top: 0; }
|
612
|
+
|
613
|
+
/*
|
614
|
+
Keywords
|
615
|
+
*/
|
616
|
+
span.keyword {
|
617
|
+
font-weight: 600; }
|
618
|
+
|
619
|
+
/*
|
620
|
+
Paragraphs
|
621
|
+
*/
|
622
|
+
p {
|
623
|
+
margin-top: 1em;
|
624
|
+
margin-bottom: 1em; }
|
625
|
+
|
626
|
+
/* Admonitions */
|
627
|
+
.Admonition, .admonition {
|
628
|
+
background-color: #ffb3b3;
|
629
|
+
/* color: #47430c;*/
|
630
|
+
padding: 0.5em;
|
631
|
+
margin: 1.5em 0 1.5em 0;
|
632
|
+
text-align: left; }
|
633
|
+
|
634
|
+
.Admonition p, .admonition p {
|
635
|
+
margin: 0; }
|
636
|
+
|
637
|
+
/*
|
638
|
+
4.0 Page header
|
639
|
+
*/
|
640
|
+
/*
|
641
|
+
4.1 Top Logo
|
642
|
+
*/
|
643
|
+
.wrapper-top {
|
644
|
+
background-color: #0e1a85;
|
645
|
+
/* background-image: url("img/dots@2x.png"); */
|
646
|
+
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAEACAYAAABccqhmAAAACXBIWXMAABYlAAAWJQFJUiTwAAADwUlEQVR4nO3YgQ2AMAwDwcAiWZ1NizrH30lIeIEq9nPOGSDqPgC7+93v/suy3Mmvhx+6VAAIcwFAmc4nyzYAIMgGAGEuACirdyBZtgEASTYACHMBQFm9A8myDQBIsgFAmAsAyuodSJZtAECSDQDCXABQVu9AsmwDAJJsABDmAoCyegeSZRsAkGQDgDAXAJTVO5As2wCAJBsAhLkAoKzegWTZBgAk2QAgzAUAZfUOJMs2ACDJBgBhLgAoq3cgWbYBAEk2AAhzAUBZvQPJsg0ASLIBQJgLAMrqHUiWbQBAkg0AwlwAUFbvQLJsAwCSbAAQ5gKAsnoHkmUbAJBkA4AwFwCU1TuQLNsAgCQbAIS5AKCs3oFk2QYAJNkAIMwFAGX1DiTLNgAgyQYAYS4AKKt3IFm2AQBJNgAIcwFAWb0DybINAEiyAUCYCwDK6h1Ilm0AQJINAMJcAFBW70CybAMAkmwAEOYCgLJ6B5JlGwCQZAOAMBcAlNU7kCzbAIAkGwCEuQCgrN6BZNkGACTZACDMBQBl9Q4kyzYAIMkGAGEuACirdyBZtgEASTYACHMBQFm9A8myDQBIsgFAmAsAyuodSJZtAECSDQDCXABQVu9AsmwDAJJsABDmAoCyegeSZRsAkGQDgDAXAJTVO5As2wCAJBsAhLkAoKzegWTZBgAk2QAgzAUAZfUOJMs2ACDJBgBhLgAoq3cgWbYBAEk2AAhzAUBZvQPJsg0ASLIBQJgLAMrqHUiWbQBAkg0AwlwAUFbvQLJsAwCSbAAQ5gKAsnoHkmUbAJBkA4AwFwCU1TuQLNsAgCQbAIS5AKCs3oFk2QYAJNkAIMwFAGX1DiTLNgAgyQYAYS4AKKt3IFm2AQBJNgAIcwFAWb0DybINAEiyAUCYCwDK6h1Ilm0AQJINAMJcAFBW70CybAMAkmwAEOYCgLJ6B5JlGwCQZAOAMBcAlNU7kCzbAIAkGwCEuQCgrN6BZNkGACTZACDMBQBl9Q4kyzYAIMkGAGEuACirdyBZtgEASTYACHMBQFm9A8myDQBIsgFAmAsAyuodSJZtAECSDQDCXABQVu9AsmwDAJJsABDmAoCyegeSZRsAkGQDgDAXAJTVO5As2wCAJBsAhLkAoKzegWTZBgAk2QAgzAUAZfUOJMs2ACDJBgBhLgAoq3cgWbYBAEk2AAhzAUBZvQPJsg0ASLIBQJgLAMrqHUiWbQBAkg0AwlwAUFbvQLJsAwCSbAAQ5gKAsnoHkmUbAJBkA4AwFwCU1TuQLNsAgCQbAFTNzA9ggAr9aahO8QAAAABJRU5ErkJggg==");
|
647
|
+
color: #ffffff;
|
648
|
+
padding: 2em 0; }
|
649
|
+
|
650
|
+
.doc-number {
|
651
|
+
font-size: 0.5em;
|
652
|
+
font-family: "Overpass", sans-serif; }
|
653
|
+
|
654
|
+
.coverpage-title {
|
655
|
+
padding-bottom: 0.5em;
|
656
|
+
font-family: "Overpass", sans-serif;
|
657
|
+
font-size: 1.2em;
|
658
|
+
line-height: 1.2em;
|
659
|
+
font-weight: 900;
|
660
|
+
padding-left: 1em;
|
661
|
+
padding-right: 1em; }
|
662
|
+
|
663
|
+
.title-section1 {
|
664
|
+
padding: 0 2em 0 3em; }
|
665
|
+
|
666
|
+
.prefatory-section {
|
667
|
+
padding: 0 3em 0 6em; }
|
668
|
+
|
669
|
+
.zzSTDTitle1, .MsoCommentText {
|
670
|
+
display: none; }
|
671
|
+
|
672
|
+
.coverpage {
|
673
|
+
text-align: center;
|
674
|
+
padding-left: 1.5em; }
|
675
|
+
|
676
|
+
.coverpage-logo span, .coverpage-tc-name span {
|
677
|
+
font-family: "Overpass", sans-serif;
|
678
|
+
text-transform: uppercase;
|
679
|
+
font-weight: 600; }
|
680
|
+
|
681
|
+
.coverpage-tc-name {
|
682
|
+
font-size: 1.2em;
|
683
|
+
line-height: 1.2em;
|
684
|
+
margin: 0.25em 0; }
|
685
|
+
|
686
|
+
/*
|
687
|
+
4.2 Document Identity
|
688
|
+
*/
|
689
|
+
.coverpage-doc-identity {
|
690
|
+
font-size: 2em;
|
691
|
+
line-height: 2em; }
|
692
|
+
|
693
|
+
.coverpage-title .title-second {
|
694
|
+
display: none; }
|
695
|
+
|
696
|
+
.coverpage-stage-block {
|
697
|
+
font-family: "Overpass", sans-serif;
|
698
|
+
font-weight: 700;
|
699
|
+
font-size: 1.25em;
|
700
|
+
margin: 2em 0em 2em 0em;
|
701
|
+
text-transform: uppercase; }
|
702
|
+
|
703
|
+
/*
|
704
|
+
4.3 Draft Warning
|
705
|
+
*/
|
706
|
+
.coverpage-warning {
|
707
|
+
border-top: solid 1px #f36f36;
|
708
|
+
border-bottom: solid 1px #f36f36;
|
709
|
+
margin: 1em 2em;
|
710
|
+
color: #485094;
|
711
|
+
padding: 1em; }
|
712
|
+
|
713
|
+
.coverpage-warning .title {
|
714
|
+
color: #f36f36;
|
715
|
+
font-family: "Overpass", sans-serif;
|
716
|
+
font-weight: 700;
|
717
|
+
text-transform: uppercase;
|
718
|
+
font-size: 1.2em; }
|
719
|
+
|
720
|
+
/*
|
721
|
+
4.4 Copyright
|
722
|
+
*/
|
723
|
+
.copyright {
|
724
|
+
padding: 1em;
|
725
|
+
font-size: 0.8em;
|
726
|
+
text-align: left; }
|
727
|
+
|
728
|
+
.copyright .name, .copyright .address {
|
729
|
+
color: #485094; }
|
730
|
+
|
731
|
+
/*
|
732
|
+
5.0 Other styles
|
733
|
+
*/
|
734
|
+
/*
|
735
|
+
To top button
|
736
|
+
*/
|
737
|
+
#myBtn {
|
738
|
+
font-family: "Space Mono", monospace;
|
739
|
+
display: none;
|
740
|
+
position: fixed;
|
741
|
+
bottom: 20px;
|
742
|
+
right: 30px;
|
743
|
+
z-index: 99;
|
744
|
+
font-size: 12px;
|
745
|
+
border: none;
|
746
|
+
outline: none;
|
747
|
+
background-color: #1d1d1d;
|
748
|
+
opacity: 0.15;
|
749
|
+
color: white;
|
750
|
+
cursor: pointer;
|
751
|
+
padding: 10px 15px 10px 15px;
|
752
|
+
border-radius: 4px; }
|
753
|
+
|
754
|
+
#myBtn:hover {
|
755
|
+
opacity: 1; }
|
756
|
+
|
757
|
+
a.anchorjs-link:hover {
|
758
|
+
background: none;
|
759
|
+
color: #485094;
|
760
|
+
box-shadow: none; }
|
761
|
+
|
762
|
+
@page {
|
763
|
+
margin: 2cm 1cm 2cm 1cm; }
|
764
|
+
|
765
|
+
@media print {
|
766
|
+
h1, .title-section1 {
|
767
|
+
page-break-before: always; }
|
768
|
+
#toggle, .document-stage-band,
|
769
|
+
.document-type-band, #myBtn {
|
770
|
+
display: none; }
|
771
|
+
.container {
|
772
|
+
padding-left: 0; }
|
773
|
+
nav {
|
774
|
+
position: relative;
|
775
|
+
width: auto;
|
776
|
+
font-size: 0.9em;
|
777
|
+
overflow: auto;
|
778
|
+
padding: 0;
|
779
|
+
margin-right: 0;
|
780
|
+
background-color: white; }
|
781
|
+
#toc .toc-active a {
|
782
|
+
color: #485094; }
|
783
|
+
#toc .toc-active, #toc li:hover {
|
784
|
+
background: white;
|
785
|
+
box-shadow: none !important; }
|
786
|
+
#toc li:hover a {
|
787
|
+
color: black; }
|
788
|
+
h1.toc-contents {
|
789
|
+
margin-top: 2em; } }
|
790
|
+
|
791
|
+
-->
|
792
|
+
</style><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title></title>
|
793
|
+
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
|
794
|
+
|
795
|
+
<!--TOC script import-->
|
796
|
+
<script type="text/javascript" src="https://cdn.rawgit.com/jgallen23/toc/0.3.2/dist/toc.min.js"></script>
|
797
|
+
|
798
|
+
<!--Google fonts-->
|
799
|
+
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i|Space+Mono:400,700" rel="stylesheet" />
|
800
|
+
<link href="https://fonts.googleapis.com/css?family=Overpass:300,300i,600,900" rel="stylesheet" />
|
801
|
+
<!--Font awesome import for the link icon-->
|
802
|
+
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.8/css/solid.css" integrity="sha384-v2Tw72dyUXeU3y4aM2Y0tBJQkGfplr39mxZqlTBDUZAb9BGoC40+rdFCG0m10lXk" crossorigin="anonymous" />
|
803
|
+
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.8/css/fontawesome.css" integrity="sha384-q3jl8XQu1OpdLgGFvNRnPdj5VIlCvgsDQTQB6owSOHWlAurxul7f+JpUOVdAiJ5P" crossorigin="anonymous" />
|
804
|
+
<style class="anchorjs"></style>
|
805
|
+
</head>
|
806
|
+
<body lang="EN-US" link="blue" vlink="#954F72" xml:lang="EN-US" class="container">
|
807
|
+
<div class="title-section"><div class="document-stage-band" id="standard-band">
|
808
|
+
<p class="document-stage">XXX</p>
|
809
|
+
</div>
|
810
|
+
|
811
|
+
<div class="document-type-band" id="standard-band">
|
812
|
+
<p class="document-type">Calconnect Standard</p>
|
813
|
+
</div>
|
814
|
+
|
815
|
+
|
816
|
+
|
817
|
+
<div id="toggle"> <span>•</span> </div>
|
818
|
+
|
819
|
+
<header>
|
820
|
+
|
821
|
+
<!--<div class="WordSection1">-->
|
822
|
+
<div class="coverpage">
|
823
|
+
<div class="wrapper-top">
|
824
|
+
|
825
|
+
<div class="coverpage-doc-identity">
|
826
|
+
<div class="doc-number">
|
827
|
+
<span class="docnumber">CD 0403</span>
|
828
|
+
<span class="docnumber-separator">:</span>
|
829
|
+
<span class="docyear"></span>
|
830
|
+
</div>
|
831
|
+
|
832
|
+
<div class="coverpage-title">
|
833
|
+
<span class="title-first"></span>
|
834
|
+
<!--<span class="title-second"></span>-->
|
835
|
+
</div>
|
836
|
+
</div>
|
837
|
+
|
838
|
+
<div class="coverpage-logo">
|
839
|
+
<span>The Calendaring and Scheduling Consortium</span>
|
840
|
+
</div>
|
841
|
+
|
842
|
+
<div class="coverpage-tc-name">
|
843
|
+
<span>TC XXXX</span>
|
844
|
+
</div>
|
845
|
+
</div>
|
846
|
+
|
847
|
+
<div class="title-section1">
|
848
|
+
<div class="coverpage-stage-block">
|
849
|
+
<span class="coverpage-stage" id="standard">Calconnect Standard</span>
|
850
|
+
</div>
|
851
|
+
|
852
|
+
<div class="coverpage-stage-block">
|
853
|
+
<span class="coverpage-maturity" id="xxx">XXX</span>
|
854
|
+
</div>
|
855
|
+
|
856
|
+
|
857
|
+
<div class="coverpage-warning">
|
858
|
+
<span class="title">Warning for Drafts</span>
|
859
|
+
|
860
|
+
<p class="content">
|
861
|
+
This document is not a CalConnect Standard. It is distributed for review and
|
862
|
+
comment, and is subject to change without notice and may not be referred to as
|
863
|
+
a Standard. Recipients of this draft are invited to submit, with their
|
864
|
+
comments, notification of any relevant patent rights of which they are aware
|
865
|
+
and to provide supporting documentation.
|
866
|
+
</p>
|
867
|
+
</div>
|
868
|
+
|
869
|
+
|
870
|
+
<div class="copyright">
|
871
|
+
<p class="year">
|
872
|
+
© The Calendaring and Scheduling Consortium, Inc.
|
873
|
+
</p>
|
874
|
+
|
875
|
+
<p class="message">
|
876
|
+
All rights reserved. Unless otherwise specified, no part of this
|
877
|
+
publication may be reproduced or utilized otherwise in any form or by any
|
878
|
+
means, electronic or mechanical, including photocopying, or posting on the
|
879
|
+
internet or an intranet, without prior written permission. Permission can
|
880
|
+
be requested from the address below.
|
881
|
+
</p>
|
882
|
+
|
883
|
+
<div class="contact-info">
|
884
|
+
<p class="name">The Calendaring and Scheduling Consortium, Inc.</p>
|
885
|
+
<p class="address">
|
886
|
+
4390 Chaffin Lane<br />
|
887
|
+
McKinleyville<br />
|
888
|
+
California 95519<br />
|
889
|
+
United States of America<br />
|
890
|
+
<br />
|
891
|
+
<a href="mailto:copyright@calconnect.org">copyright@calconnect.org</a><br />
|
892
|
+
<a href="www.calconnect.org">www.calconnect.org</a>
|
893
|
+
</p>
|
894
|
+
</div>
|
895
|
+
</div>
|
896
|
+
|
897
|
+
<div class="rule"></div>
|
898
|
+
</div>
|
899
|
+
|
900
|
+
|
901
|
+
|
902
|
+
</div></header>
|
903
|
+
<p> </p>
|
904
|
+
</div>
|
905
|
+
<br />
|
906
|
+
<div class="prefatory-section"><nav>
|
907
|
+
<h1 id="content">Contents</h1>
|
908
|
+
<div id="toc"></div>
|
909
|
+
|
910
|
+
</nav>
|
911
|
+
|
912
|
+
|
913
|
+
<div class="rule toc"></div>
|
914
|
+
|
915
|
+
<p> </p>
|
916
|
+
</div>
|
917
|
+
<br />
|
918
|
+
<main class="main-section"><button onclick="topFunction()" id="myBtn" title="Go to top">Top</button>
|
919
|
+
<p class="zzSTDTitle1"></p>
|
920
|
+
<div id="d8ab6f15-4bd3-4c73-bf9b-a9f4a831769d">
|
921
|
+
<h1>CD 0403. July 2004 CalConnect Interoperability Test Report V1.0</h1>
|
922
|
+
<p><a href="http://calconnect.org/pubdocs/CD0403%20July%202004%20CalConnect%20Interoperability%20Test%20Report%20V1.0.pdf">HTML</a> |<a href="http://calconnect.org/pubdocs/CD0403%20July%202004%20CalConnect%20Interoperability%20Test%20Report%20V1.0.pdf">PDF</a> |<a href="http://calconnect.org/pubdocs/CD0403%20July%202004%20CalConnect%20Interoperability%20Test%20Report%20V1.0.pdf">XML</a> | <a href="/Users/nickn/Documents/Arbeit/upwork/ribose/relaton-server-csd/data/out/id/CD%200403.xml">Relaton XML</a> </p>
|
923
|
+
<p align="right" style="text-align:right">2004-07-30</p>
|
924
|
+
</div>
|
925
|
+
<div id="34598538-b007-40bd-ab99-655e974cb5a3">
|
926
|
+
<h1>CD 0404. Report on Roundtable I</h1>
|
927
|
+
<p><a href="http://calconnect.org/pubdocs/roundtable1rpt.pdf">HTML</a> |<a href="http://calconnect.org/pubdocs/roundtable1rpt.pdf">PDF</a> |<a href="http://calconnect.org/pubdocs/roundtable1rpt.pdf">XML</a> | <a href="/Users/nickn/Documents/Arbeit/upwork/ribose/relaton-server-csd/data/out/id/CD%200404.xml">Relaton XML</a> </p>
|
928
|
+
<p align="right" style="text-align:right">2004-09-25</p>
|
929
|
+
</div>
|
930
|
+
<div id="6de1b683-eddf-4d12-829f-b553fb223df0">
|
931
|
+
<h1>CD 0507. CalDAV Use Cases V1.0</h1>
|
932
|
+
<p><a href="http://calconnect.org/pubdocs/CD0507%20CalDAV%20Use%20Cases%20V1.0.pdf">HTML</a> |<a href="http://calconnect.org/pubdocs/CD0507%20CalDAV%20Use%20Cases%20V1.0.pdf">PDF</a> |<a href="http://calconnect.org/pubdocs/CD0507%20CalDAV%20Use%20Cases%20V1.0.pdf">XML</a> | <a href="/Users/nickn/Documents/Arbeit/upwork/ribose/relaton-server-csd/data/out/id/CD%200507.xml">Relaton XML</a> </p>
|
933
|
+
<p align="right" style="text-align:right">2005-09-26</p>
|
934
|
+
</div>
|
935
|
+
</main>
|
936
|
+
<script type="text/x-mathjax-config">
|
937
|
+
MathJax.Hub.Config({
|
938
|
+
asciimath2jax: {
|
939
|
+
delimiters: [['(#(', ')#)']]
|
940
|
+
}
|
941
|
+
});
|
942
|
+
</script>
|
943
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=AM_HTMLorMML"></script>
|
944
|
+
<script>
|
945
|
+
//TOC generation
|
946
|
+
$('#toc').toc({
|
947
|
+
'selectors': 'h1,h2:not(.TermNum)', //elements to use as headings
|
948
|
+
'container': 'main', //element to find all selectors in
|
949
|
+
'smoothScrolling': true, //enable or disable smooth scrolling on click
|
950
|
+
'prefix': 'toc', //prefix for anchor tags and class names
|
951
|
+
'onHighlight': function(el) {}, //called when a new section is highlighted
|
952
|
+
'highlightOnScroll': true, //add class to heading that is currently in focus
|
953
|
+
'highlightOffset': 100, //offset to trigger the next headline
|
954
|
+
'anchorName': function(i, heading, prefix) { //custom function for anchor name
|
955
|
+
return prefix+i;
|
956
|
+
},
|
957
|
+
'headerText': function(i, heading, $heading) { //custom function building the header-item text
|
958
|
+
return $heading.text();
|
959
|
+
},
|
960
|
+
'itemClass': function(i, heading, $heading, prefix) { // custom function for item class
|
961
|
+
return $heading[0].tagName.toLowerCase();
|
962
|
+
}
|
963
|
+
});
|
964
|
+
|
965
|
+
</script>
|
966
|
+
|
967
|
+
<script>
|
968
|
+
//TOC toggle animation
|
969
|
+
$('#toggle').on('click', function(){
|
970
|
+
if( $('nav').is(':visible') ) {
|
971
|
+
$('nav').animate({ 'left': '-353px' }, 'slow', function(){
|
972
|
+
$('nav').hide();
|
973
|
+
});
|
974
|
+
$('.container').animate({ 'padding-left': '31px' }, 'slow');
|
975
|
+
}
|
976
|
+
else {
|
977
|
+
$('nav').show();
|
978
|
+
$('nav').animate({ 'left': '0px' }, 'slow');
|
979
|
+
$('.container').animate({ 'padding-left': '360px' }, 'slow');
|
980
|
+
}
|
981
|
+
});
|
982
|
+
</script>
|
983
|
+
|
984
|
+
<script>
|
985
|
+
// Scroll to top button
|
986
|
+
window.onscroll = function() {scrollFunction()};
|
987
|
+
|
988
|
+
function scrollFunction() {
|
989
|
+
if (document.body.scrollTop > 100 || document.documentElement.scrollTop > 100) {
|
990
|
+
document.getElementById("myBtn").style.display = "block";
|
991
|
+
} else {
|
992
|
+
document.getElementById("myBtn").style.display = "none";
|
993
|
+
}
|
994
|
+
}
|
995
|
+
|
996
|
+
// When the user clicks on the button, scroll to the top of the document
|
997
|
+
function topFunction() {
|
998
|
+
document.body.scrollTop = 0;
|
999
|
+
document.documentElement.scrollTop = 0;
|
1000
|
+
}
|
1001
|
+
</script>
|
1002
|
+
|
1003
|
+
<script>
|
1004
|
+
/**
|
1005
|
+
* AnchorJS - v4.1.0 - 2017-09-20
|
1006
|
+
* https://github.com/bryanbraun/anchorjs
|
1007
|
+
* Copyright (c) 2017 Bryan Braun; Licensed MIT
|
1008
|
+
*/
|
1009
|
+
!function(A,e){"use strict";"function"==typeof define&&define.amd?define([],e):"object"==typeof module&&module.exports?module.exports=e():(A.AnchorJS=e(),A.anchors=new A.AnchorJS)}(this,function(){"use strict";return function(A){function e(A){A.icon=A.hasOwnProperty("icon")?A.icon:"",A.visible=A.hasOwnProperty("visible")?A.visible:"hover",A.placement=A.hasOwnProperty("placement")?A.placement:"right",A.ariaLabel=A.hasOwnProperty("ariaLabel")?A.ariaLabel:"Anchor",A.class=A.hasOwnProperty("class")?A.class:"",A.truncate=A.hasOwnProperty("truncate")?Math.floor(A.truncate):64}function t(A){var e;if("string"==typeof A||A instanceof String)e=[].slice.call(document.querySelectorAll(A));else{if(!(Array.isArray(A)||A instanceof NodeList))throw new Error("The selector provided to AnchorJS was invalid.");e=[].slice.call(A)}return e}function i(){if(null===document.head.querySelector("style.anchorjs")){var A,e=document.createElement("style");e.className="anchorjs",e.appendChild(document.createTextNode("")),void 0===(A=document.head.querySelector('[rel="stylesheet"], style'))?document.head.appendChild(e):document.head.insertBefore(e,A),e.sheet.insertRule(" .anchorjs-link { opacity: 0; text-decoration: none; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }",e.sheet.cssRules.length),e.sheet.insertRule(" *:hover > .anchorjs-link, .anchorjs-link:focus { opacity: 1; }",e.sheet.cssRules.length),e.sheet.insertRule(" [data-anchorjs-icon]::after { content: attr(data-anchorjs-icon); }",e.sheet.cssRules.length),e.sheet.insertRule(' @font-face { font-family: "anchorjs-icons"; src: url(data:n/a;base64,AAEAAAALAIAAAwAwT1MvMg8yG2cAAAE4AAAAYGNtYXDp3gC3AAABpAAAAExnYXNwAAAAEAAAA9wAAAAIZ2x5ZlQCcfwAAAH4AAABCGhlYWQHFvHyAAAAvAAAADZoaGVhBnACFwAAAPQAAAAkaG10eASAADEAAAGYAAAADGxvY2EACACEAAAB8AAAAAhtYXhwAAYAVwAAARgAAAAgbmFtZQGOH9cAAAMAAAAAunBvc3QAAwAAAAADvAAAACAAAQAAAAEAAHzE2p9fDzz1AAkEAAAAAADRecUWAAAAANQA6R8AAAAAAoACwAAAAAgAAgAAAAAAAAABAAADwP/AAAACgAAA/9MCrQABAAAAAAAAAAAAAAAAAAAAAwABAAAAAwBVAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAMCQAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAg//0DwP/AAEADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAAIAAAACgAAxAAAAAwAAAAMAAAAcAAEAAwAAABwAAwABAAAAHAAEADAAAAAIAAgAAgAAACDpy//9//8AAAAg6cv//f///+EWNwADAAEAAAAAAAAAAAAAAAAACACEAAEAAAAAAAAAAAAAAAAxAAACAAQARAKAAsAAKwBUAAABIiYnJjQ3NzY2MzIWFxYUBwcGIicmNDc3NjQnJiYjIgYHBwYUFxYUBwYGIwciJicmNDc3NjIXFhQHBwYUFxYWMzI2Nzc2NCcmNDc2MhcWFAcHBgYjARQGDAUtLXoWOR8fORYtLTgKGwoKCjgaGg0gEhIgDXoaGgkJBQwHdR85Fi0tOAobCgoKOBoaDSASEiANehoaCQkKGwotLXoWOR8BMwUFLYEuehYXFxYugC44CQkKGwo4GkoaDQ0NDXoaShoKGwoFBe8XFi6ALjgJCQobCjgaShoNDQ0NehpKGgobCgoKLYEuehYXAAAADACWAAEAAAAAAAEACAAAAAEAAAAAAAIAAwAIAAEAAAAAAAMACAAAAAEAAAAAAAQACAAAAAEAAAAAAAUAAQALAAEAAAAAAAYACAAAAAMAAQQJAAEAEAAMAAMAAQQJAAIABgAcAAMAAQQJAAMAEAAMAAMAAQQJAAQAEAAMAAMAAQQJAAUAAgAiAAMAAQQJAAYAEAAMYW5jaG9yanM0MDBAAGEAbgBjAGgAbwByAGoAcwA0ADAAMABAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAH//wAP) format("truetype"); }',e.sheet.cssRules.length)}}this.options=A||{},this.elements=[],e(this.options),this.isTouchDevice=function(){return!!("ontouchstart"in window||window.DocumentTouch&&document instanceof DocumentTouch)},this.add=function(A){var n,o,s,a,r,c,h,l,u,d,f,p=[];if(e(this.options),"touch"===(f=this.options.visible)&&(f=this.isTouchDevice()?"always":"hover"),A||(A="h2, h3, h4, h5, h6"),0===(n=t(A)).length)return this;for(i(),o=document.querySelectorAll("[id]"),s=[].map.call(o,function(A){return A.id}),r=0;r<n.length;r++)if(this.hasAnchorJSLink(n[r]))p.push(r);else{if(n[r].hasAttribute("id"))a=n[r].getAttribute("id");else if(n[r].hasAttribute("data-anchor-id"))a=n[r].getAttribute("data-anchor-id");else{u=l=this.urlify(n[r].textContent),h=0;do{void 0!==c&&(u=l+"-"+h),c=s.indexOf(u),h+=1}while(-1!==c);c=void 0,s.push(u),n[r].setAttribute("id",u),a=u}a.replace(/-/g," "),(d=document.createElement("a")).className="anchorjs-link "+this.options.class,d.href="#"+a,d.setAttribute("aria-label",this.options.ariaLabel),d.setAttribute("data-anchorjs-icon",this.options.icon),"always"===f&&(d.style.opacity="1"),""===this.options.icon&&(d.style.font="1em/1 anchorjs-icons","left"===this.options.placement&&(d.style.lineHeight="inherit")),"left"===this.options.placement?(d.style.position="absolute",d.style.marginLeft="-1em",d.style.paddingRight="0.5em",n[r].insertBefore(d,n[r].firstChild)):(d.style.paddingLeft="0.375em",n[r].appendChild(d))}for(r=0;r<p.length;r++)n.splice(p[r]-r,1);return this.elements=this.elements.concat(n),this},this.remove=function(A){for(var e,i,n=t(A),o=0;o<n.length;o++)(i=n[o].querySelector(".anchorjs-link"))&&(-1!==(e=this.elements.indexOf(n[o]))&&this.elements.splice(e,1),n[o].removeChild(i));return this},this.removeAll=function(){this.remove(this.elements)},this.urlify=function(A){var t=/[& +$,:;=?@"#{}|^~[`%!'<>\]\.\/\(\)\*\\]/g;return this.options.truncate||e(this.options),A.trim().replace(/\'/gi,"").replace(t,"-").replace(/-{2,}/g,"-").substring(0,this.options.truncate).replace(/^-+|-+$/gm,"").toLowerCase()},this.hasAnchorJSLink=function(A){var e=A.firstChild&&(" "+A.firstChild.className+" ").indexOf(" anchorjs-link ")>-1,t=A.lastChild&&(" "+A.lastChild.className+" ").indexOf(" anchorjs-link ")>-1;return e||t||!1}}}); </script>
|
1010
|
+
|
1011
|
+
<script>
|
1012
|
+
$(document).ready(function() {
|
1013
|
+
$('[id^=toc]').each(function ()
|
1014
|
+
{
|
1015
|
+
var currentToc = $(this);
|
1016
|
+
var url = window.location.href;
|
1017
|
+
currentToc.wrap("<a href='" + url + "#" + currentToc.attr("id") + "' </a>");
|
1018
|
+
});
|
1019
|
+
});
|
1020
|
+
anchors.options = {
|
1021
|
+
placement: 'left'
|
1022
|
+
};
|
1023
|
+
anchors.add('h1, h2, h3, h4');
|
1024
|
+
</script></body>
|
1025
|
+
</html>
|