metanorma-ogc 2.4.9 → 2.5.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (34) hide show
  1. checksums.yaml +4 -4
  2. data/lib/isodoc/ogc/html/htmlstyle.css +12 -0
  3. data/lib/isodoc/ogc/html/htmlstyle.scss +2 -0
  4. data/lib/isodoc/ogc/html_convert.rb +52 -5
  5. data/lib/isodoc/ogc/i18n-en.yaml +1 -0
  6. data/lib/isodoc/ogc/ogc.abstract-specification-topic.xsl +116 -21
  7. data/lib/isodoc/ogc/ogc.best-practice.xsl +116 -21
  8. data/lib/isodoc/ogc/ogc.change-request-supporting-document.xsl +116 -21
  9. data/lib/isodoc/ogc/ogc.community-practice.xsl +116 -21
  10. data/lib/isodoc/ogc/ogc.community-standard.xsl +116 -21
  11. data/lib/isodoc/ogc/ogc.discussion-paper.xsl +116 -21
  12. data/lib/isodoc/ogc/ogc.draft-standard.xsl +116 -21
  13. data/lib/isodoc/ogc/ogc.engineering-report.xsl +116 -21
  14. data/lib/isodoc/ogc/ogc.other.xsl +116 -21
  15. data/lib/isodoc/ogc/ogc.policy.xsl +116 -21
  16. data/lib/isodoc/ogc/ogc.reference-model.xsl +116 -21
  17. data/lib/isodoc/ogc/ogc.release-notes.xsl +116 -21
  18. data/lib/isodoc/ogc/ogc.standard.xsl +116 -21
  19. data/lib/isodoc/ogc/ogc.test-suite.xsl +116 -21
  20. data/lib/isodoc/ogc/ogc.user-guide.xsl +116 -21
  21. data/lib/isodoc/ogc/ogc.white-paper.xsl +63 -12
  22. data/lib/isodoc/ogc/presentation_sections.rb +112 -0
  23. data/lib/isodoc/ogc/presentation_xml_convert.rb +79 -104
  24. data/lib/metanorma/ogc/basicdoc.rng +94 -8
  25. data/lib/metanorma/ogc/biblio-standoc.rng +44 -1
  26. data/lib/metanorma/ogc/biblio.rng +11 -0
  27. data/lib/metanorma/ogc/boilerplate.adoc +29 -1
  28. data/lib/metanorma/ogc/cleanup.rb +9 -8
  29. data/lib/metanorma/ogc/converter.rb +5 -2
  30. data/lib/metanorma/ogc/isodoc.rng +13 -64
  31. data/lib/metanorma/ogc/reqt.rng +0 -16
  32. data/lib/metanorma/ogc/version.rb +1 -1
  33. data/metanorma-ogc.gemspec +1 -1
  34. metadata +5 -4
@@ -1,6 +1,6 @@
1
1
  require_relative "init"
2
- require "uuidtools"
3
2
  require_relative "../../relaton/render/general"
3
+ require_relative "presentation_sections"
4
4
 
5
5
  module IsoDoc
6
6
  module Ogc
@@ -10,8 +10,6 @@ module IsoDoc
10
10
  super
11
11
  end
12
12
 
13
- def middle_title(docxml); end
14
-
15
13
  def convert1(docxml, filename, dir)
16
14
  info docxml, nil
17
15
  super
@@ -21,123 +19,100 @@ module IsoDoc
21
19
  File.read(File.join(@libdir, "html", "rouge.css"))
22
20
  end
23
21
 
24
- def preface_rearrange(doc)
25
- super
26
- insert_preface_sections(doc)
27
- end
28
-
29
- def insert_preface_sections(doc)
30
- preface_insert(doc.at(ns("//preface/clause" \
31
- "[@type = 'executivesummary']")),
32
- doc.at(ns("//preface/abstract")), doc)
33
- preface_insert(doc.at(ns("//preface//submitters")),
34
- submit_orgs_append_pt(doc), doc)
35
- insert_submitting_orgs(doc)
36
- preface_insert(doc.at(ns("//preface/clause[@type = 'security']")),
37
- submit_orgs_append_pt(doc), doc)
38
- insert_keywords(doc)
39
- end
40
-
41
- def preface_init_insert_pt(docxml)
42
- docxml.at(ns("//preface")) ||
43
- docxml.at(ns("//sections"))
44
- .add_previous_sibling("<preface> </preface>").first
45
- end
46
-
47
- def preface_insert(clause, after, docxml)
48
- clause or return
49
- clause.remove
50
- if after then after.next = clause
51
- else
52
- preface_init_insert_pt(docxml)&.children&.first
53
- &.add_previous_sibling(clause)
22
+ def example1(elem)
23
+ lbl = @xrefs.anchor(elem["id"], :label, false) or return
24
+ prefix_name(elem, block_delim, l10n("#{@i18n.example} #{lbl}"),
25
+ "name")
26
+ end
27
+
28
+ def bibdata(docxml)
29
+ docxml.xpath(ns("//bibdata/contributor[@type = 'author']")).each do |a|
30
+ a.at(ns("./description"))&.text == "contributor" and
31
+ a["type"] = "contributor"
54
32
  end
33
+ super
34
+ dochistory_insert(docxml)
55
35
  end
56
36
 
57
- def submit_orgs_append_pt(docxml)
58
- docxml.at(ns("//foreword")) ||
59
- docxml.at(ns("//preface/clause[@type = 'keywords']")) ||
60
- docxml.at(ns("//preface/clause[@type = 'executivesummary']")) ||
61
- docxml.at(ns("//preface/abstract"))
37
+ UPDATE_RELATIONS = <<~XPATH.freeze
38
+ //bibdata/relation[@type = 'updatedBy' or @type = 'merges' or @type = 'splits' or @type = 'hasDraft']/bibitem
39
+ XPATH
40
+
41
+ def dochistory_insert(docxml)
42
+ updates = docxml.xpath(ns(UPDATE_RELATIONS))
43
+ updates.empty? and return
44
+ fwd = annex_insert_point(docxml)
45
+ generate_dochistory(updates, fwd)
62
46
  end
63
47
 
64
- def insert_submitting_orgs(docxml)
65
- orgs = docxml.xpath(ns(submittingorgs_path))
66
- .each_with_object([]) { |org, m| m << org.text }
67
- orgs.empty? and return
68
- if a = submit_orgs_append_pt(docxml)
69
- a.next = submitting_orgs_clause(orgs)
70
- else
71
- preface_init_insert_pt(docxml)&.children&.first
72
- &.add_previous_sibling(submitting_orgs_clause(orgs))
73
- end
48
+ def annex_insert_point(docxml)
49
+ docxml.at(ns("//annex[last()]")) || docxml.at(ns("//sections"))
74
50
  end
75
51
 
76
- def submitting_orgs_clause(orgs)
77
- <<~SUBMITTING
78
- <clause id="_#{UUIDTools::UUID.random_create}" type="submitting_orgs">
79
- <title>Submitting Organizations</title>
80
- <p>The following organizations submitted this Document to the Open Geospatial Consortium (OGC):</p>
81
- <ul>#{orgs.map { |m| "<li>#{m}</li>" }.join("\n")}</ul>
82
- </clause>
83
- SUBMITTING
84
- end
85
-
86
- def keyword_clause(kwords)
87
- <<~KEYWORDS
88
- <clause id="_#{UUIDTools::UUID.random_create}" type="keywords">
89
- <title>Keywords</title>
90
- <p>The following are keywords to be used by search engines and document catalogues.</p>
91
- <p>#{kwords.join(', ')}</p></clause>
92
- KEYWORDS
93
- end
94
-
95
- def insert_keywords(docxml)
96
- kw = @meta.get[:keywords]
97
- kw.empty? and return
98
- if abstract =
99
- docxml.at(ns("//preface/clause[@type = 'executivesummary']")) ||
100
- docxml.at(ns("//preface/abstract"))
101
- abstract.next = keyword_clause(kw)
102
- else
103
- preface_init_insert_pt(docxml)&.children&.first
104
- &.add_previous_sibling(keyword_clause(kw))
105
- end
52
+ def generate_dochistory(updates, pref)
53
+ ret = updates.map { |u| generate_dochistory_row(u) }.flatten.join("\n")
54
+ pref.next = <<~XML
55
+ <annex id='_#{UUIDTools::UUID.random_create}' obligation='informative'>
56
+ <title>#{@i18n.dochistory}</title>
57
+ <table><thead>
58
+ <tr><th>Date</th><th>Release</th><th>Author</th><th>Paragraph Modified</th><th>Description</th></tr>
59
+ </thead><tbody>
60
+ #{ret}
61
+ </tbody></table></annex>
62
+ XML
106
63
  end
107
64
 
108
- def example1(elem)
109
- lbl = @xrefs.anchor(elem["id"], :label, false) or return
110
- prefix_name(elem, block_delim, l10n("#{@i18n.example} #{lbl}"),
111
- "name")
65
+ def generate_dochistory_row(item)
66
+ e = item.at(ns("./edition")) || item.at(ns("./version/draft"))
67
+ date = dochistory_date(item)
68
+ c = dochistory_contributors(item)
69
+ l = dochistory_location(item)
70
+ desc = dochistory_description(item)
71
+ "<tr><td>#{date}</td><td>#{e&.text}</td><td>#{c}</td>" \
72
+ "<td>#{l}</td><td>#{desc}</td></tr>"
112
73
  end
113
74
 
114
- def annex1(elem)
115
- lbl = @xrefs.anchor(elem["id"], :label)
116
- t = elem.at(ns("./title")) and
117
- t.children = "<strong>#{to_xml(t.children)}</strong>"
118
- prefix_name(elem, "<br/>", lbl, "title")
75
+ def dochistory_date(item)
76
+ d = item.at(ns("./date[@type = 'updated']")) ||
77
+ item.at(ns("./date[@type = 'published']")) ||
78
+ item.at(ns("./date[@type = 'issued']")) or return ""
79
+ d.text.strip
119
80
  end
120
81
 
121
- def clause(docxml)
122
- super
123
- docxml.xpath(ns("//foreword | //preface/abstract | " \
124
- "//submitters | //introduction | //acknowledgements"))
125
- .each { |f| clause1(f) }
82
+ def dochistory_contributors(item)
83
+ item.xpath(ns("./contributor")).map do |c|
84
+ dochistory_contributor(c)
85
+ end.join(", ")
126
86
  end
127
87
 
128
- def clause1(elem)
129
- elem.name == "terms" && elem.parent.name == "annex" &&
130
- elem.parent.xpath(ns("./terms")).size == 1 and return
131
- elem.name == "clause" && elem["type"] == "toc" and return
132
- super
88
+ def dochistory_contributor(contrib)
89
+ ret = contrib.at("./organization/subdivision") ||
90
+ contrib.at("./organization/name") ||
91
+ contrib.at("./person/name/abbreviation") ||
92
+ contrib.at("./person/name/completename")
93
+ ret and return ret.text
94
+ format_personalname(contrib)
133
95
  end
134
96
 
135
- def bibdata(docxml)
136
- docxml.xpath(ns("//bibdata/contributor[@type = 'author']")).each do |a|
137
- a.at(ns("./description"))&.text == "contributor" and
138
- a["type"] = "contributor"
139
- end
140
- super
97
+ def format_personalname(contrib)
98
+ Relaton::Render::Ogc::General
99
+ .new(template: { book: "{{ creatornames }}" })
100
+ .render("<bibitem type='book'>#{contrib.to_xml}</bibitem>",
101
+ embedded: true)
102
+ end
103
+
104
+ def dochistory_description(item)
105
+ d = item.at(ns("./amend/description")) or return ""
106
+ d.children.to_xml
107
+ end
108
+
109
+ def dochistory_location(item)
110
+ t = item.at(ns("./amend/location")) or return "All"
111
+ xpath = "./amend/location/locality | ./amend/location/localityStack"
112
+ r = eref_localities(item.xpath(ns(xpath)), nil, t)
113
+ r.sub!(/^, /, "")
114
+ r == @i18n.wholeoftext and r = "All"
115
+ r
141
116
  end
142
117
 
143
118
  def bibdata_i18n(bib)
@@ -203,7 +178,7 @@ module IsoDoc
203
178
  # else, use both ordinal, as prefix, and ids
204
179
  def biblio_ref_entry_code(ordinal, ids, _id, standard, datefn, _bib)
205
180
  standard and return "[#{ordinal}]<tab/>"
206
- ret = (ids[:ordinal] || ids[:metanorma] || "[#{ordinal}]")
181
+ ret = ids[:ordinal] || ids[:metanorma] || "[#{ordinal}]"
207
182
  prefix_bracketed_ref("#{ret}#{datefn}")
208
183
  end
209
184
 
@@ -95,8 +95,89 @@
95
95
  <ref name="pagebreak"/>
96
96
  <ref name="hr"/>
97
97
  <ref name="bookmark"/>
98
+ <ref name="amend"/>
98
99
  </choice>
99
100
  </define>
101
+ <define name="amend">
102
+ <element name="amend">
103
+ <ref name="AmendType"/>
104
+ </element>
105
+ </define>
106
+ <define name="AmendType">
107
+ <optional>
108
+ <attribute name="id">
109
+ <data type="ID"/>
110
+ </attribute>
111
+ </optional>
112
+ <attribute name="change">
113
+ <choice>
114
+ <value>add</value>
115
+ <value>modify</value>
116
+ <value>delete</value>
117
+ <value>replace</value>
118
+ </choice>
119
+ </attribute>
120
+ <optional>
121
+ <attribute name="path"/>
122
+ </optional>
123
+ <optional>
124
+ <attribute name="path_end"/>
125
+ </optional>
126
+ <optional>
127
+ <attribute name="title"/>
128
+ </optional>
129
+ <optional>
130
+ <element name="location">
131
+ <zeroOrMore>
132
+ <choice>
133
+ <ref name="locality"/>
134
+ <ref name="localityStack"/>
135
+ </choice>
136
+ </zeroOrMore>
137
+ </element>
138
+ </optional>
139
+ <optional>
140
+ <element name="description">
141
+ <zeroOrMore>
142
+ <ref name="BasicBlock"/>
143
+ </zeroOrMore>
144
+ </element>
145
+ </optional>
146
+ <optional>
147
+ <element name="newcontent">
148
+ <optional>
149
+ <attribute name="id">
150
+ <data type="ID"/>
151
+ </attribute>
152
+ </optional>
153
+ <zeroOrMore>
154
+ <ref name="BasicBlock"/>
155
+ </zeroOrMore>
156
+ </element>
157
+ </optional>
158
+ <zeroOrMore>
159
+ <ref name="classification"/>
160
+ </zeroOrMore>
161
+ <zeroOrMore>
162
+ <ref name="contributor"/>
163
+ </zeroOrMore>
164
+ </define>
165
+ <define name="classification">
166
+ <element name="classification">
167
+ <ref name="classification_tag"/>
168
+ <ref name="classification_value"/>
169
+ </element>
170
+ </define>
171
+ <define name="classification_tag">
172
+ <element name="tag">
173
+ <text/>
174
+ </element>
175
+ </define>
176
+ <define name="classification_value">
177
+ <element name="value">
178
+ <text/>
179
+ </element>
180
+ </define>
100
181
  <define name="paragraph">
101
182
  <element name="p">
102
183
  <ref name="ParagraphType"/>
@@ -163,6 +244,9 @@
163
244
  <data type="ID"/>
164
245
  </attribute>
165
246
  <attribute name="reviewer"/>
247
+ <optional>
248
+ <attribute name="type"/>
249
+ </optional>
166
250
  <optional>
167
251
  <attribute name="date">
168
252
  <data type="dateTime"/>
@@ -939,18 +1023,12 @@
939
1023
  </optional>
940
1024
  <optional>
941
1025
  <attribute name="width">
942
- <choice>
943
- <data type="int"/>
944
- <value>auto</value>
945
- </choice>
1026
+ <ref name="ImageSize"/>
946
1027
  </attribute>
947
1028
  </optional>
948
1029
  <optional>
949
1030
  <attribute name="height">
950
- <choice>
951
- <data type="int"/>
952
- <value>auto</value>
953
- </choice>
1031
+ <ref name="ImageSize"/>
954
1032
  </attribute>
955
1033
  </optional>
956
1034
  <optional>
@@ -965,6 +1043,14 @@
965
1043
  </attribute>
966
1044
  </optional>
967
1045
  </define>
1046
+ <define name="ImageSize">
1047
+ <choice>
1048
+ <data type="string">
1049
+ <param name="pattern">\d+([.]\d+)?(%?)</param>
1050
+ </data>
1051
+ <value>auto</value>
1052
+ </choice>
1053
+ </define>
968
1054
  <define name="video">
969
1055
  <element name="video">
970
1056
  <attribute name="id">
@@ -9,11 +9,42 @@
9
9
  -->
10
10
  <include href="biblio.rng">
11
11
  <define name="BibData">
12
- <ref name="BibliographicItem"/>
12
+ <ref name="StandardBibliographicItem"/>
13
13
  <optional>
14
14
  <ref name="ext"/>
15
15
  </optional>
16
16
  </define>
17
+ <define name="docrelation">
18
+ <element name="relation">
19
+ <attribute name="type">
20
+ <ref name="DocRelationType"/>
21
+ </attribute>
22
+ <optional>
23
+ <element name="description">
24
+ <ref name="FormattedString"/>
25
+ </element>
26
+ </optional>
27
+ <element name="bibitem">
28
+ <ref name="StandardReducedBibliographicItem"/>
29
+ </element>
30
+ <choice>
31
+ <zeroOrMore>
32
+ <ref name="locality"/>
33
+ </zeroOrMore>
34
+ <zeroOrMore>
35
+ <ref name="localityStack"/>
36
+ </zeroOrMore>
37
+ </choice>
38
+ <choice>
39
+ <zeroOrMore>
40
+ <ref name="sourceLocality"/>
41
+ </zeroOrMore>
42
+ <zeroOrMore>
43
+ <ref name="sourceLocalityStack"/>
44
+ </zeroOrMore>
45
+ </choice>
46
+ </element>
47
+ </define>
17
48
  </include>
18
49
  <define name="ext">
19
50
  <element name="ext">
@@ -161,4 +192,16 @@
161
192
  </optional>
162
193
  </element>
163
194
  </define>
195
+ <define name="StandardBibliographicItem">
196
+ <ref name="BibliographicItem"/>
197
+ <zeroOrMore>
198
+ <ref name="amend"/>
199
+ </zeroOrMore>
200
+ </define>
201
+ <define name="StandardReducedBibliographicItem">
202
+ <ref name="ReducedBibliographicItem"/>
203
+ <zeroOrMore>
204
+ <ref name="amend"/>
205
+ </zeroOrMore>
206
+ </define>
164
207
  </grammar>
@@ -241,6 +241,9 @@
241
241
  </element>
242
242
  </define>
243
243
  <define name="FullNameType">
244
+ <optional>
245
+ <ref name="name_abbreviation"/>
246
+ </optional>
244
247
  <choice>
245
248
  <group>
246
249
  <zeroOrMore>
@@ -266,6 +269,11 @@
266
269
  <ref name="variantname"/>
267
270
  </zeroOrMore>
268
271
  </define>
272
+ <define name="name_abbreviation">
273
+ <element name="abbreviation">
274
+ <ref name="LocalizedString"/>
275
+ </element>
276
+ </define>
269
277
  <define name="prefix">
270
278
  <element name="prefix">
271
279
  <ref name="LocalizedString"/>
@@ -870,6 +878,9 @@
870
878
  <optional>
871
879
  <ref name="validity"/>
872
880
  </optional>
881
+ <optional>
882
+ <ref name="depiction"/>
883
+ </optional>
873
884
  </define>
874
885
  <define name="btitle">
875
886
  <element name="title">
@@ -20,7 +20,35 @@ Use of this document is subject to the license agreement at https://www.ogc.org/
20
20
 
21
21
  == legal-statement
22
22
  {% if doctype == "Standard" or doctype == "Community Standard" or doctype == "Abstract Specification" %}
23
- {% if stage == "Approved" or stage == "Withdrawn" %}
23
+ {% if stage == "Deprecated" %}
24
+
25
+ === Notice
26
+ This Standard has been deprecated by the OGC and is no longer supported. A newer version exists and is recommended for use. This document is available on a royalty free, non-discriminatory basis.
27
+
28
+ Recipients of this document are invited to submit, with their comments, notification of any relevant patent rights of which they are aware and to provide supporting documentation.
29
+
30
+ {% elsif stage == "Legacy" %}
31
+
32
+ === Notice
33
+ This Standard has been deprecated to Legacy status and is no longer supported. This Standard is still suitable for use, but newer Standards offer the same or improved functions and capabilities. This document is available on a royalty free, non-discriminatory basis.
34
+
35
+ Recipients of this document are invited to submit, with their comments, notification of any relevant patent rights of which they are aware and to provide supporting documentation.
36
+
37
+ {% elsif stage == "Rescinded" %}
38
+
39
+ === Notice
40
+ This Standard has been rescinded and is no longer an OGC Standard nor is it suitable for use. Rescinded Standards are not published on any public OGC resources.
41
+
42
+ Recipients of this document are invited to submit, with their comments, notification of any relevant patent rights of which they are aware and to provide supporting documentation.
43
+
44
+ {% elsif stage == "Retired" %}
45
+
46
+ === Notice
47
+ This Standard has been retired by the OGC and is no longer supported nor recommended for use. This document is available on a royalty free, non-discriminatory basis.
48
+
49
+ Recipients of this document are invited to submit, with their comments, notification of any relevant patent rights of which they are aware and to provide supporting documentation.
50
+
51
+ {% elsif stage == "Approved" or stage == "Withdrawn" %}
24
52
 
25
53
  === Notice
26
54
  This document is an OGC Member approved international standard. This document is available on a royalty free, non-discriminatory basis. Recipients of this document are invited to submit, with their comments, notification of any relevant patent rights of which they are aware and to provide supporting documentation.
@@ -64,11 +64,12 @@ module Metanorma
64
64
  if xml.at("//submitters")
65
65
  preface = sect.at("//preface") ||
66
66
  sect.add_previous_sibling("<preface/>").first
67
- submitters = xml.at("//submitters").remove
68
- submitters.xpath(".//table").each do |t|
69
- t["unnumbered"] = true
67
+ xml.xpath("//submitters").each do |s|
68
+ s.xpath(".//table").each do |t|
69
+ t["unnumbered"] = true
70
+ end
71
+ preface.add_child s.remove
70
72
  end
71
- preface.add_child submitters.remove
72
73
  end
73
74
  end
74
75
 
@@ -225,15 +226,15 @@ module Metanorma
225
226
  type: id ? id["type"] : nil }
226
227
  end
227
228
 
228
- # Numbers sort *before* letters; we leave out using thorn to force that sort order.
229
- # case insensitive
230
- def symbol_key(sym)
229
+ # Numbers sort *before* letters; we leave out using thorn to force
230
+ # that sort order. case insensitive
231
+ def symbol_key(sym)
231
232
  @c.decode(asciimath_key(sym).text)
232
233
  .gsub(/[\[\]{}<>()]/, "").gsub(/\s/m, "")
233
234
  .gsub(/[[:punct:]]|[_^]/, ":\\0").gsub("`", "")
234
235
  end
235
236
 
236
- def symbols_cleanup(docxml)
237
+ def symbols_cleanup(docxml)
237
238
  docxml.xpath("//definitions/dl").each do |dl|
238
239
  dl_out = extract_symbols_list(dl)
239
240
  dl_out.sort! do |a, b|
@@ -88,8 +88,10 @@ module Metanorma
88
88
 
89
89
  def clause_parse(attrs, xml, node)
90
90
  case node.attr("heading")&.downcase || node.title.downcase
91
- when "submitters", "contributors"
91
+ when "submitters"
92
92
  return submitters_parse(attrs, xml, node)
93
+ when "contributors"
94
+ return submitters_parse(attrs.merge(type: "contributors"), xml, node)
93
95
  when "conformance" then attrs = attrs.merge(type: "conformance")
94
96
  when "security considerations"
95
97
  attrs = attrs.merge(type: "security")
@@ -101,7 +103,8 @@ module Metanorma
101
103
 
102
104
  def submitters_parse(attrs, xml, node)
103
105
  title = @i18n.submitters
104
- doctype(node) == "engineering-report" and
106
+ doctype(node) == "engineering-report" ||
107
+ attrs[:type] == "contributors" and
105
108
  title = @i18n.contributors_clause
106
109
  xml.submitters **attr_code(attrs) do |xml_section|
107
110
  xml_section.title title
@@ -17,10 +17,19 @@
17
17
  these elements; we just want one namespace for any child grammars
18
18
  of this.
19
19
  -->
20
- <!-- VERSION v1.2.9 -->
20
+ <!-- VERSION v1.3.0 -->
21
21
  <grammar xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0" xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
22
22
  <include href="reqt.rng"/>
23
23
  <include href="basicdoc.rng">
24
+ <define name="amend">
25
+ <element name="amend">
26
+ <ref name="BlockAttributes"/>
27
+ <ref name="AmendType"/>
28
+ <zeroOrMore>
29
+ <ref name="autonumber"/>
30
+ </zeroOrMore>
31
+ </element>
32
+ </define>
24
33
  <define name="admonition">
25
34
  <element name="admonition">
26
35
  <attribute name="type">
@@ -137,6 +146,9 @@
137
146
  <data type="boolean"/>
138
147
  </attribute>
139
148
  </optional>
149
+ <optional>
150
+ <attribute name="style"/>
151
+ </optional>
140
152
  <oneOrMore>
141
153
  <ref name="PureTextElement"/>
142
154
  </oneOrMore>
@@ -2319,69 +2331,6 @@
2319
2331
  <ref name="CitationType"/>
2320
2332
  </element>
2321
2333
  </define>
2322
- <define name="amend">
2323
- <element name="amend">
2324
- <optional>
2325
- <attribute name="id">
2326
- <data type="ID"/>
2327
- </attribute>
2328
- </optional>
2329
- <attribute name="change">
2330
- <choice>
2331
- <value>add</value>
2332
- <value>modify</value>
2333
- <value>delete</value>
2334
- <value>replace</value>
2335
- </choice>
2336
- </attribute>
2337
- <optional>
2338
- <attribute name="path"/>
2339
- </optional>
2340
- <optional>
2341
- <attribute name="path_end"/>
2342
- </optional>
2343
- <optional>
2344
- <attribute name="title"/>
2345
- </optional>
2346
- <ref name="BlockAttributes"/>
2347
- <optional>
2348
- <element name="location">
2349
- <zeroOrMore>
2350
- <ref name="locality"/>
2351
- </zeroOrMore>
2352
- </element>
2353
- </optional>
2354
- <zeroOrMore>
2355
- <ref name="autonumber"/>
2356
- </zeroOrMore>
2357
- <optional>
2358
- <element name="description">
2359
- <zeroOrMore>
2360
- <ref name="BasicBlock"/>
2361
- </zeroOrMore>
2362
- </element>
2363
- </optional>
2364
- <optional>
2365
- <element name="newcontent">
2366
- <optional>
2367
- <attribute name="id">
2368
- <data type="ID"/>
2369
- </attribute>
2370
- </optional>
2371
- <zeroOrMore>
2372
- <ref name="BasicBlock"/>
2373
- </zeroOrMore>
2374
- </element>
2375
- </optional>
2376
- <optional>
2377
- <element name="description">
2378
- <zeroOrMore>
2379
- <ref name="BasicBlock"/>
2380
- </zeroOrMore>
2381
- </element>
2382
- </optional>
2383
- </element>
2384
- </define>
2385
2334
  <define name="autonumber">
2386
2335
  <element name="autonumber">
2387
2336
  <attribute name="type">
@@ -207,20 +207,4 @@
207
207
  <value>permission</value>
208
208
  </choice>
209
209
  </define>
210
- <define name="classification">
211
- <element name="classification">
212
- <ref name="classification_tag"/>
213
- <ref name="classification_value"/>
214
- </element>
215
- </define>
216
- <define name="classification_tag">
217
- <element name="tag">
218
- <text/>
219
- </element>
220
- </define>
221
- <define name="classification_value">
222
- <element name="value">
223
- <text/>
224
- </element>
225
- </define>
226
210
  </grammar>