metanorma-ogc 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (42) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +1 -0
  3. data/.hound.yml +3 -0
  4. data/.rubocop.yml +10 -0
  5. data/.travis.yml +16 -0
  6. data/CODE_OF_CONDUCT.md +74 -0
  7. data/Gemfile +4 -0
  8. data/LICENSE +25 -0
  9. data/README.adoc +323 -0
  10. data/Rakefile +6 -0
  11. data/bin/console +14 -0
  12. data/bin/rspec +17 -0
  13. data/bin/setup +8 -0
  14. data/lib/asciidoctor/ogc.rb +7 -0
  15. data/lib/asciidoctor/ogc/biblio.rng +890 -0
  16. data/lib/asciidoctor/ogc/converter.rb +253 -0
  17. data/lib/asciidoctor/ogc/front.rb +163 -0
  18. data/lib/asciidoctor/ogc/isodoc.rng +1091 -0
  19. data/lib/asciidoctor/ogc/isostandard.rng +1068 -0
  20. data/lib/asciidoctor/ogc/ogc.rng +210 -0
  21. data/lib/isodoc/ogc.rb +10 -0
  22. data/lib/isodoc/ogc/html/header.html +181 -0
  23. data/lib/isodoc/ogc/html/html_ogc_intro.html +85 -0
  24. data/lib/isodoc/ogc/html/html_ogc_titlepage.html +172 -0
  25. data/lib/isodoc/ogc/html/htmlstyle.scss +1054 -0
  26. data/lib/isodoc/ogc/html/ogc.scss +644 -0
  27. data/lib/isodoc/ogc/html/scripts.html +82 -0
  28. data/lib/isodoc/ogc/html/scripts.pdf.html +70 -0
  29. data/lib/isodoc/ogc/html/word_ogc_intro.html +92 -0
  30. data/lib/isodoc/ogc/html/word_ogc_titlepage.html +194 -0
  31. data/lib/isodoc/ogc/html/wordstyle.scss +1104 -0
  32. data/lib/isodoc/ogc/html_convert.rb +355 -0
  33. data/lib/isodoc/ogc/i18n-en.yaml +1 -0
  34. data/lib/isodoc/ogc/metadata.rb +102 -0
  35. data/lib/isodoc/ogc/pdf_convert.rb +357 -0
  36. data/lib/isodoc/ogc/word_convert.rb +345 -0
  37. data/lib/metanorma-ogc.rb +8 -0
  38. data/lib/metanorma/ogc.rb +11 -0
  39. data/lib/metanorma/ogc/processor.rb +43 -0
  40. data/lib/metanorma/ogc/version.rb +5 -0
  41. data/metanorma-ogc.gemspec +45 -0
  42. metadata +338 -0
@@ -0,0 +1,210 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <grammar xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
3
+ <!--
4
+ Currently we inherit from a namespaced grammar, isostandard. Until we inherit from isodoc,
5
+ we cannot have a new default namespace: we will end up with a grammar with two different
6
+ namespaces, one for isostandard and one for csand additions. And we do not want that.
7
+ -->
8
+ <include href="isostandard.rng">
9
+ <start>
10
+ <ref name="ogc-standard"/>
11
+ </start>
12
+ <define name="language">
13
+ <element name="language">
14
+ <value>en</value>
15
+ </element>
16
+ </define>
17
+ <define name="docidentifier">
18
+ <element name="docidentifier">
19
+ <optional>
20
+ <attribute name="type"/>
21
+ </optional>
22
+ <text/>
23
+ </element>
24
+ </define>
25
+ <define name="btitle">
26
+ <element name="title">
27
+ <ref name="FormattedString"/>
28
+ </element>
29
+ </define>
30
+ <define name="figure">
31
+ <element name="figure">
32
+ <attribute name="id">
33
+ <data type="ID"/>
34
+ </attribute>
35
+ <optional>
36
+ <ref name="tname"/>
37
+ </optional>
38
+ <choice>
39
+ <ref name="image"/>
40
+ <ref name="pre"/>
41
+ <oneOrMore>
42
+ <ref name="subfigure"/>
43
+ </oneOrMore>
44
+ </choice>
45
+ <zeroOrMore>
46
+ <ref name="fn"/>
47
+ </zeroOrMore>
48
+ <optional>
49
+ <ref name="dl"/>
50
+ </optional>
51
+ <zeroOrMore>
52
+ <ref name="note"/>
53
+ </zeroOrMore>
54
+ </element>
55
+ </define>
56
+ <define name="subfigure">
57
+ <element name="figure">
58
+ <attribute name="id">
59
+ <data type="ID"/>
60
+ </attribute>
61
+ <optional>
62
+ <ref name="tname"/>
63
+ </optional>
64
+ <choice>
65
+ <ref name="image"/>
66
+ <ref name="pre"/>
67
+ </choice>
68
+ </element>
69
+ </define>
70
+ <define name="status">
71
+ <element name="status">
72
+ <choice>
73
+ <value>rfc</value>
74
+ <value>candidate</value>
75
+ <value>published</value>
76
+ <value>deprecated</value>
77
+ <value>retired</value>
78
+ </choice>
79
+ </element>
80
+ </define>
81
+ <define name="BibItemType" combine="choice">
82
+ <choice>
83
+ <value>standard</value>
84
+ <value>standard-with-suite</value>
85
+ <value>abstract-specification</value>
86
+ <value>community-standard</value>
87
+ <value>profile</value>
88
+ <value>best-practice</value>
89
+ <value>engineering-report</value>
90
+ <value>discussion-paper</value>
91
+ <value>reference-model</value>
92
+ <value>user-guide</value>
93
+ <value>policy</value>
94
+ <value>guide</value>
95
+ <value>amendment</value>
96
+ <value>technical-corrigendum</value>
97
+ <value>administrative</value>
98
+ </choice>
99
+ </define>
100
+ <define name="editorialgroup">
101
+ <element name="editorialgroup">
102
+ <ref name="committee"/>
103
+ <optional>
104
+ <ref name="subcommittee"/>
105
+ </optional>
106
+ <optional>
107
+ <ref name="workgroup"/>
108
+ </optional>
109
+ </element>
110
+ </define>
111
+ <define name="BibData">
112
+ <optional>
113
+ <attribute name="type">
114
+ <ref name="BibItemType"/>
115
+ </attribute>
116
+ </optional>
117
+ <oneOrMore>
118
+ <ref name="btitle"/>
119
+ </oneOrMore>
120
+ <optional>
121
+ <ref name="formattedref"/>
122
+ </optional>
123
+ <zeroOrMore>
124
+ <ref name="bsource"/>
125
+ </zeroOrMore>
126
+ <zeroOrMore>
127
+ <ref name="docidentifier"/>
128
+ </zeroOrMore>
129
+ <optional>
130
+ <ref name="docnumber"/>
131
+ </optional>
132
+ <zeroOrMore>
133
+ <ref name="bdate"/>
134
+ </zeroOrMore>
135
+ <zeroOrMore>
136
+ <ref name="contributor"/>
137
+ </zeroOrMore>
138
+ <optional>
139
+ <ref name="edition"/>
140
+ </optional>
141
+ <zeroOrMore>
142
+ <ref name="biblionote"/>
143
+ </zeroOrMore>
144
+ <zeroOrMore>
145
+ <ref name="language"/>
146
+ </zeroOrMore>
147
+ <zeroOrMore>
148
+ <ref name="script"/>
149
+ </zeroOrMore>
150
+ <zeroOrMore>
151
+ <ref name="abstract"/>
152
+ </zeroOrMore>
153
+ <optional>
154
+ <ref name="status"/>
155
+ </optional>
156
+ <ref name="copyright"/>
157
+ <zeroOrMore>
158
+ <ref name="docrelation"/>
159
+ </zeroOrMore>
160
+ <ref name="editorialgroup"/>
161
+ <zeroOrMore>
162
+ <ref name="ics"/>
163
+ </zeroOrMore>
164
+ </define>
165
+ <define name="preface">
166
+ <element name="preface">
167
+ <optional>
168
+ <ref name="preface_abstract"/>
169
+ </optional>
170
+ <ref name="foreword"/>
171
+ <optional>
172
+ <ref name="submitters"/>
173
+ </optional>
174
+ </element>
175
+ </define>
176
+ </include>
177
+ <define name="submitters">
178
+ <element name="submitters">
179
+ <ref name="Basic-Section"/>
180
+ </element>
181
+ </define>
182
+ <define name="committee">
183
+ <element name="committee">
184
+ <choice>
185
+ <value>technical</value>
186
+ <value>planning</value>
187
+ <value>strategic-member-advisory</value>
188
+ </choice>
189
+ </element>
190
+ </define>
191
+ <define name="ogc-standard">
192
+ <element name="ogc-standard">
193
+ <ref name="bibdata"/>
194
+ <optional>
195
+ <ref name="version"/>
196
+ </optional>
197
+ <zeroOrMore>
198
+ <ref name="termdocsource"/>
199
+ </zeroOrMore>
200
+ <ref name="preface"/>
201
+ <oneOrMore>
202
+ <ref name="sections"/>
203
+ </oneOrMore>
204
+ <zeroOrMore>
205
+ <ref name="annex"/>
206
+ </zeroOrMore>
207
+ <ref name="bibliography"/>
208
+ </element>
209
+ </define>
210
+ </grammar>
data/lib/isodoc/ogc.rb ADDED
@@ -0,0 +1,10 @@
1
+ require "isodoc/ogc/metadata"
2
+ require "isodoc/ogc/html_convert"
3
+ require "isodoc/ogc/pdf_convert"
4
+ require "isodoc/ogc/word_convert"
5
+
6
+ module IsoDoc
7
+ module Ogc
8
+
9
+ end
10
+ end
@@ -0,0 +1,181 @@
1
+ <html xmlns:v="urn:schemas-microsoft-com:vml"
2
+ xmlns:o="urn:schemas-microsoft-com:office:office"
3
+ xmlns:w="urn:schemas-microsoft-com:office:word"
4
+ xmlns:m="http://schemas.microsoft.com/office/2004/12/omml"
5
+ xmlns:mv="http://macVmlSchemaUri" xmlns="http://www.w3.org/TR/REC-html40">
6
+
7
+ <head>
8
+ <meta name=Title content="">
9
+ <meta name=Keywords content="">
10
+ <meta http-equiv=Content-Type content="text/html; charset=utf-8">
11
+ <meta name=ProgId content=Word.Document>
12
+ <meta name=Generator content="Microsoft Word 15">
13
+ <meta name=Originator content="Microsoft Word 15">
14
+ <link id=Main-File rel=Main-File href="../{{ filename }}.html">
15
+ <!--[if gte mso 9]><xml>
16
+ <o:shapedefaults v:ext="edit" spidmax="2049"/>
17
+ </xml><![endif]-->
18
+ </head>
19
+
20
+ <body lang=EN link=blue vlink="#954F72">
21
+
22
+ <div style='mso-element:footnote-separator' id=fs>
23
+
24
+ <p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
25
+ normal'><span lang=EN-GB><span style='mso-special-character:footnote-separator'><![if !supportFootnotes]>
26
+
27
+ <hr align=left size=1 width="33%">
28
+
29
+ <![endif]></span></span></p>
30
+
31
+ </div>
32
+
33
+ <div style='mso-element:footnote-continuation-separator' id=fcs>
34
+
35
+ <p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
36
+ normal'><span lang=EN-GB><span style='mso-special-character:footnote-continuation-separator'><![if !supportFootnotes]>
37
+
38
+ <hr align=left size=1>
39
+
40
+ <![endif]></span></span></p>
41
+
42
+ </div>
43
+
44
+ <div style='mso-element:endnote-separator' id=es>
45
+
46
+ <p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
47
+ normal'><span lang=EN-GB><span style='mso-special-character:footnote-separator'><![if !supportFootnotes]>
48
+
49
+ <hr align=left size=1 width="33%">
50
+
51
+ <![endif]></span></span></p>
52
+
53
+ </div>
54
+
55
+ <div style='mso-element:endnote-continuation-separator' id=ecs>
56
+
57
+ <p class=MsoNormal style='margin-bottom:0cm;margin-bottom:.0001pt;line-height:
58
+ normal'><span lang=EN-GB><span style='mso-special-character:footnote-continuation-separator'><![if !supportFootnotes]>
59
+
60
+ <hr align=left size=1>
61
+
62
+ <![endif]></span></span></p>
63
+
64
+ </div>
65
+
66
+ <div style='mso-element:header' id=eh1>
67
+
68
+ <p class=MsoHeader align=left style='text-align:left;line-height:12.0pt;
69
+ mso-line-height-rule:exactly'><span lang=EN-GB>CS&nbsp;{{ docnumber }}:{{ docyear }}</span></p>
70
+
71
+ </div>
72
+
73
+ <div style='mso-element:header' id=h1>
74
+
75
+ <p class=MsoHeader style='margin-bottom:18.0pt'><span lang=EN-GB
76
+ style='font-size:10.0pt;mso-bidi-font-size:11.0pt;font-weight:normal'>©
77
+ Open Geospatial Consortium&nbsp;{{ docyear }}&nbsp;– All rights reserved</span><span lang=EN-GB
78
+ style='font-weight:normal'><o:p></o:p></span></p>
79
+
80
+ </div>
81
+
82
+ <div style='mso-element:footer' id=ef1>
83
+
84
+ <p class=MsoFooter style='margin-top:12.0pt;line-height:12.0pt;mso-line-height-rule:
85
+ exactly'><!--[if supportFields]><b style='mso-bidi-font-weight:normal'><span
86
+ lang=EN-GB style='font-size:10.0pt;mso-bidi-font-size:11.0pt'><span
87
+ style='mso-element:field-begin'></span><span
88
+ style='mso-spacerun:yes'> </span>PAGE<span style='mso-spacerun:yes'>  
89
+ </span>\* MERGEFORMAT <span style='mso-element:field-separator'></span></span></b><![endif]--><b
90
+ style='mso-bidi-font-weight:normal'><span lang=EN-GB style='font-size:10.0pt;
91
+ mso-bidi-font-size:11.0pt'><span style='mso-no-proof:yes'>2</span></span></b><!--[if supportFields]><b
92
+ style='mso-bidi-font-weight:normal'><span lang=EN-GB style='font-size:10.0pt;
93
+ mso-bidi-font-size:11.0pt'><span style='mso-element:field-end'></span></span></b><![endif]--><span
94
+ lang=EN-GB style='font-size:10.0pt;mso-bidi-font-size:11.0pt'><span
95
+ style='mso-tab-count:1'>                                                                                                                                                                           </span>© {{ docyear }} OGC<o:p></o:p></span></p>
96
+
97
+ </div>
98
+
99
+ <div style='mso-element:header' id=eh2>
100
+
101
+ <p class=MsoHeader align=left style='text-align:left;line-height:12.0pt;
102
+ mso-line-height-rule:exactly'><span lang=EN-GB>Open Geospatial Consortium&nbsp;{{ docnumber }}:{{ docyear }}</span></p>
103
+
104
+ </div>
105
+
106
+ <div style='mso-element:header' id=h2>
107
+
108
+ <p class=MsoHeader align=right style='text-align:right;line-height:12.0pt;
109
+ mso-line-height-rule:exactly'><span lang=EN-GB>Open Geospatial Consortium&nbsp;{{ docnumber }}:{{ docyear }}</span></p>
110
+
111
+ </div>
112
+
113
+ <div style='mso-element:footer' id=ef2>
114
+
115
+ <p class=MsoFooter style='line-height:12.0pt;mso-line-height-rule:exactly'><!--[if supportFields]><span
116
+ lang=EN-GB style='font-size:10.0pt;mso-bidi-font-size:11.0pt'><span
117
+ style='mso-element:field-begin'></span><span
118
+ style='mso-spacerun:yes'> </span>PAGE<span style='mso-spacerun:yes'>  
119
+ </span>\* MERGEFORMAT <span style='mso-element:field-separator'></span></span><![endif]--><span
120
+ lang=EN-GB style='font-size:10.0pt;mso-bidi-font-size:11.0pt'><span
121
+ style='mso-no-proof:yes'>ii</span></span><!--[if supportFields]><span
122
+ lang=EN-GB style='font-size:10.0pt;mso-bidi-font-size:11.0pt'><span
123
+ style='mso-element:field-end'></span></span><![endif]--><span lang=EN-GB
124
+ style='font-size:10.0pt;mso-bidi-font-size:11.0pt'><span
125
+ style='mso-tab-count:1'>                                                                                                                                                                           </span>© {{ docyear }} OGC<o:p></o:p></span></p>
126
+
127
+ </div>
128
+
129
+ <div style='mso-element:footer' id=f2>
130
+
131
+ <p class=MsoFooter style='line-height:12.0pt'><span lang=EN-GB
132
+ style='font-size:10.0pt;mso-bidi-font-size:11.0pt'>© Open Geospatial Consortium&nbsp;{{ docyear }}&nbsp;– All
133
+ rights reserved<span style='mso-tab-count:1'>                                                                                                                                                                          </span></span><!--[if supportFields]><span
134
+ lang=EN-GB style='font-size:10.0pt;mso-bidi-font-size:11.0pt'><span
135
+ style='mso-element:field-begin'></span> PAGE<span style='mso-spacerun:yes'>  
136
+ </span>\* MERGEFORMAT <span style='mso-element:field-separator'></span></span><![endif]--><span
137
+ lang=EN-GB style='font-size:10.0pt;mso-bidi-font-size:11.0pt'><span
138
+ style='mso-no-proof:yes'>iii</span></span><!--[if supportFields]><span
139
+ lang=EN-GB style='font-size:10.0pt;mso-bidi-font-size:11.0pt'><span
140
+ style='mso-element:field-end'></span></span><![endif]--><span lang=EN-GB
141
+ style='font-size:10.0pt;mso-bidi-font-size:11.0pt'><o:p></o:p></span></p>
142
+
143
+ </div>
144
+
145
+ <div style='mso-element:footer' id=ef3>
146
+
147
+ <p class=MsoFooter style='margin-top:12.0pt;line-height:12.0pt;mso-line-height-rule:
148
+ exactly'><!--[if supportFields]><b style='mso-bidi-font-weight:normal'><span
149
+ lang=EN-GB style='font-size:10.0pt;mso-bidi-font-size:11.0pt'><span
150
+ style='mso-element:field-begin'></span><span
151
+ style='mso-spacerun:yes'> </span>PAGE<span style='mso-spacerun:yes'>  
152
+ </span>\* MERGEFORMAT <span style='mso-element:field-separator'></span></span></b><![endif]--><b
153
+ style='mso-bidi-font-weight:normal'><span lang=EN-GB style='font-size:10.0pt;
154
+ mso-bidi-font-size:11.0pt'><span style='mso-no-proof:yes'>2</span></span></b><!--[if supportFields]><b
155
+ style='mso-bidi-font-weight:normal'><span lang=EN-GB style='font-size:10.0pt;
156
+ mso-bidi-font-size:11.0pt'><span style='mso-element:field-end'></span></span></b><![endif]--><span
157
+ lang=EN-GB style='font-size:10.0pt;mso-bidi-font-size:11.0pt'><span
158
+ style='mso-tab-count:1'>                                                                                                                                                                           </span>© {{ docyear }} OGC<o:p></o:p></span></p>
159
+
160
+ </div>
161
+
162
+ <div style='mso-element:footer' id=f3>
163
+
164
+ <p class=MsoFooter style='line-height:12.0pt'><span lang=EN-GB
165
+ style='font-size:10.0pt;mso-bidi-font-size:11.0pt'>© Open Geospatial Consortium&nbsp;{{ docyear }}&nbsp;– All
166
+ rights reserved<span style='mso-tab-count:1'>                                                                                                                                                                           </span></span><!--[if supportFields]><b
167
+ style='mso-bidi-font-weight:normal'><span lang=EN-GB style='font-size:10.0pt;
168
+ mso-bidi-font-size:11.0pt'><span style='mso-element:field-begin'></span>
169
+ PAGE<span style='mso-spacerun:yes'>   </span>\* MERGEFORMAT <span
170
+ style='mso-element:field-separator'></span></span></b><![endif]--><b
171
+ style='mso-bidi-font-weight:normal'><span lang=EN-GB style='font-size:10.0pt;
172
+ mso-bidi-font-size:11.0pt'><span style='mso-no-proof:yes'>3</span></span></b><!--[if supportFields]><b
173
+ style='mso-bidi-font-weight:normal'><span lang=EN-GB style='font-size:10.0pt;
174
+ mso-bidi-font-size:11.0pt'><span style='mso-element:field-end'></span></span></b><![endif]--><span
175
+ lang=EN-GB style='font-size:10.0pt;mso-bidi-font-size:11.0pt'><o:p></o:p></span></p>
176
+
177
+ </div>
178
+
179
+ </body>
180
+
181
+ </html>
@@ -0,0 +1,85 @@
1
+ <div class="license">
2
+ <p><b>License Agreement</b></p>
3
+
4
+ <p>Permission is hereby granted by the Open Geospatial
5
+ Consortium, (&quot;Licensor&quot;), free of charge and subject to the terms set
6
+ forth below, to any person obtaining a copy of this Intellectual Property and
7
+ any associated documentation, to deal in the Intellectual Property without
8
+ restriction (except as set forth below), including without limitation the
9
+ rights to implement, use, copy, modify, merge, publish, distribute, and/or
10
+ sublicense copies of the Intellectual Property, and to permit persons to whom
11
+ the Intellectual Property is furnished to do so, provided that all copyright notices
12
+ on the intellectual property are retained intact and that each person to whom
13
+ the Intellectual Property is furnished agrees to the terms of this Agreement.</p>
14
+
15
+ <p>If you modify the Intellectual Property, all copies of
16
+ the modified Intellectual Property must include, in addition to the above
17
+ copyright notice, a notice that the Intellectual Property includes
18
+ modifications that have not been approved or adopted by LICENSOR.</p>
19
+
20
+ <p>THIS LICENSE IS A COPYRIGHT LICENSE ONLY, AND DOES NOT
21
+ CONVEY ANY RIGHTS UNDER ANY PATENTS THAT MAY BE IN FORCE ANYWHERE IN THE WORLD.</p>
22
+
23
+ <p>THE INTELLECTUAL PROPERTY IS PROVIDED &quot;AS
24
+ IS&quot;, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
25
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE,
26
+ AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. THE COPYRIGHT HOLDER OR HOLDERS
27
+ INCLUDED IN THIS NOTICE DO NOT WARRANT THAT THE FUNCTIONS CONTAINED IN THE
28
+ INTELLECTUAL PROPERTY WILL MEET YOUR REQUIREMENTS OR THAT THE OPERATION OF THE
29
+ INTELLECTUAL PROPERTY WILL BE UNINTERRUPTED OR ERROR FREE. ANY USE OF THE
30
+ INTELLECTUAL PROPERTY SHALL BE MADE ENTIRELY AT THE USER’S OWN RISK. IN NO
31
+ EVENT SHALL THE COPYRIGHT HOLDER OR ANY CONTRIBUTOR OF INTELLECTUAL PROPERTY
32
+ RIGHTS TO THE INTELLECTUAL PROPERTY BE LIABLE FOR ANY CLAIM, OR ANY DIRECT,
33
+ SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING
34
+ FROM ANY ALLEGED INFRINGEMENT OR ANY LOSS OF USE, DATA OR PROFITS, WHETHER IN
35
+ AN ACTION OF CONTRACT, NEGLIGENCE OR UNDER ANY OTHER LEGAL THEORY, ARISING OUT
36
+ OF OR IN CONNECTION WITH THE IMPLEMENTATION, USE, COMMERCIALIZATION OR
37
+ PERFORMANCE OF THIS INTELLECTUAL PROPERTY.</p>
38
+
39
+ <p>This license is effective until terminated. You may
40
+ terminate it at any time by destroying the Intellectual Property together with
41
+ all copies in any form. The license will also terminate if you fail to comply
42
+ with any term or condition of this Agreement. Except as provided in the
43
+ following sentence, no such termination of this license shall require the
44
+ termination of any third party end-user sublicense to the Intellectual Property
45
+ which is in force as of the date of notice of such termination. In addition,
46
+ should the Intellectual Property, or the operation of the Intellectual
47
+ Property, infringe, or in <span class=SpellE>LICENSOR’s</span> sole opinion be
48
+ likely to infringe, any patent, copyright, trademark or other right of a third
49
+ party, you agree that LICENSOR, in its sole discretion, may terminate this
50
+ license without any compensation or liability to you, your licensees or any
51
+ other party. You agree upon termination of any kind to destroy or cause to be
52
+ destroyed the Intellectual Property together with all copies in any form,
53
+ whether held by you or by any third party.</p>
54
+
55
+ <p>Except as contained in this notice, the name of
56
+ LICENSOR or of any other holder of a copyright in all or part of the Intellectual
57
+ Property shall not be used in advertising or otherwise to promote the sale, use
58
+ or other dealings in this Intellectual Property without prior written
59
+ authorization of LICENSOR or such copyright holder. LICENSOR is and shall at
60
+ all times be the sole entity that may authorize you or any third party to use
61
+ certification marks, trademarks or other special designations to indicate
62
+ compliance with any LICENSOR standards or specifications. This Agreement is
63
+ governed by the laws of the Commonwealth of Massachusetts. The application to
64
+ this Agreement of the United Nations Convention on Contracts for the
65
+ International Sale of Goods is hereby expressly excluded. In the event any
66
+ provision of this Agreement shall be deemed unenforceable, void or invalid, such
67
+ provision shall be modified so as to make it valid and enforceable, and as so
68
+ modified the entire Agreement shall remain in full force and effect. No
69
+ decision, action or inaction by LICENSOR shall be construed to be a waiver of
70
+ any rights or remedies available to it.</p>
71
+
72
+ {% if doctype == "Standard" or doctype == "Standard With Suite" %}
73
+ <p>Suggested additions, changes and comments on this standard are welcome and encouraged. Such suggestions may be submitted using the online change request form on OGC web site: <a href="http://portal.opengeospatial.org/public_ogc/change_request.php">http://portal.opengeospatial.org/public_ogc/change_request.php</a></p>
74
+ {% endif %}
75
+
76
+ </div>
77
+
78
+ <nav>
79
+ <h1 id="content">Contents</h1>
80
+ <div id="toc"></div>
81
+
82
+ </nav>
83
+
84
+
85
+ <div class="rule toc"></div>