metanorma-iho 0.0.1
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 +7 -0
- data/.github/workflows/macos.yml +34 -0
- data/.github/workflows/ubuntu.yml +34 -0
- data/.github/workflows/windows.yml +36 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +11 -0
- data/LICENSE +25 -0
- data/README.adoc +26 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/rspec +18 -0
- data/bin/setup +8 -0
- data/lib/asciidoctor/iho/basicdoc.rng +1059 -0
- data/lib/asciidoctor/iho/biblio.rng +1207 -0
- data/lib/asciidoctor/iho/boilerplate.xml +30 -0
- data/lib/asciidoctor/iho/converter.rb +94 -0
- data/lib/asciidoctor/iho/iho.rng +144 -0
- data/lib/asciidoctor/iho/isodoc.rng +1061 -0
- data/lib/asciidoctor/iho/reqt.rng +171 -0
- data/lib/asciidoctor/iho.rb +4 -0
- data/lib/isodoc/iho/base_convert.rb +74 -0
- data/lib/isodoc/iho/html/header.html +241 -0
- data/lib/isodoc/iho/html/html_iho_intro.html +8 -0
- data/lib/isodoc/iho/html/html_iho_titlepage.html +89 -0
- data/lib/isodoc/iho/html/htmlstyle.scss +757 -0
- data/lib/isodoc/iho/html/iho.scss +760 -0
- data/lib/isodoc/iho/html/image001.png +0 -0
- data/lib/isodoc/iho/html/image002.png +0 -0
- data/lib/isodoc/iho/html/image003.png +0 -0
- data/lib/isodoc/iho/html/logo.png +0 -0
- data/lib/isodoc/iho/html/logo.svg +555 -0
- data/lib/isodoc/iho/html/scripts.html +68 -0
- data/lib/isodoc/iho/html/scripts.pdf.html +72 -0
- data/lib/isodoc/iho/html/word_iho_intro.html +24 -0
- data/lib/isodoc/iho/html/word_iho_titlepage.html +888 -0
- data/lib/isodoc/iho/html/wordstyle.scss +1156 -0
- data/lib/isodoc/iho/html_convert.rb +33 -0
- data/lib/isodoc/iho/metadata.rb +26 -0
- data/lib/isodoc/iho/pdf_convert.rb +31 -0
- data/lib/isodoc/iho/word_convert.rb +46 -0
- data/lib/metanorma/iho/processor.rb +37 -0
- data/lib/metanorma/iho/version.rb +5 -0
- data/lib/metanorma/iho.rb +32 -0
- data/lib/metanorma-iho.rb +12 -0
- data/metanorma-iho.gemspec +43 -0
- data/metanorma.yml +56 -0
- metadata +274 -0
@@ -0,0 +1,171 @@
|
|
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
|
+
Presupposes isodoc.rnc, is included in it
|
5
|
+
include "isodoc.rnc" { }
|
6
|
+
-->
|
7
|
+
<define name="requirement">
|
8
|
+
<element name="requirement">
|
9
|
+
<ref name="RequirementType"/>
|
10
|
+
</element>
|
11
|
+
</define>
|
12
|
+
<define name="recommendation">
|
13
|
+
<element name="recommendation">
|
14
|
+
<ref name="RequirementType"/>
|
15
|
+
</element>
|
16
|
+
</define>
|
17
|
+
<define name="permission">
|
18
|
+
<element name="permission">
|
19
|
+
<ref name="RequirementType"/>
|
20
|
+
</element>
|
21
|
+
</define>
|
22
|
+
<define name="RequirementType">
|
23
|
+
<optional>
|
24
|
+
<attribute name="obligation">
|
25
|
+
<ref name="ObligationType"/>
|
26
|
+
</attribute>
|
27
|
+
</optional>
|
28
|
+
<optional>
|
29
|
+
<attribute name="unnumbered">
|
30
|
+
<data type="boolean"/>
|
31
|
+
</attribute>
|
32
|
+
</optional>
|
33
|
+
<optional>
|
34
|
+
<attribute name="subsequence"/>
|
35
|
+
</optional>
|
36
|
+
<attribute name="id">
|
37
|
+
<data type="ID"/>
|
38
|
+
</attribute>
|
39
|
+
<optional>
|
40
|
+
<attribute name="filename"/>
|
41
|
+
</optional>
|
42
|
+
<optional>
|
43
|
+
<attribute name="model"/>
|
44
|
+
</optional>
|
45
|
+
<optional>
|
46
|
+
<attribute name="type"/>
|
47
|
+
</optional>
|
48
|
+
<optional>
|
49
|
+
<ref name="reqtitle"/>
|
50
|
+
</optional>
|
51
|
+
<optional>
|
52
|
+
<ref name="label"/>
|
53
|
+
</optional>
|
54
|
+
<optional>
|
55
|
+
<ref name="subject"/>
|
56
|
+
</optional>
|
57
|
+
<zeroOrMore>
|
58
|
+
<ref name="reqinherit"/>
|
59
|
+
</zeroOrMore>
|
60
|
+
<zeroOrMore>
|
61
|
+
<ref name="classification"/>
|
62
|
+
</zeroOrMore>
|
63
|
+
<zeroOrMore>
|
64
|
+
<choice>
|
65
|
+
<ref name="measurementtarget"/>
|
66
|
+
<ref name="specification"/>
|
67
|
+
<ref name="verification"/>
|
68
|
+
<ref name="import"/>
|
69
|
+
<ref name="description"/>
|
70
|
+
</choice>
|
71
|
+
</zeroOrMore>
|
72
|
+
<optional>
|
73
|
+
<ref name="reqt_references"/>
|
74
|
+
</optional>
|
75
|
+
<zeroOrMore>
|
76
|
+
<choice>
|
77
|
+
<ref name="requirement"/>
|
78
|
+
<ref name="recommendation"/>
|
79
|
+
<ref name="permission"/>
|
80
|
+
</choice>
|
81
|
+
</zeroOrMore>
|
82
|
+
</define>
|
83
|
+
<define name="reqtitle">
|
84
|
+
<element name="title">
|
85
|
+
<ref name="FormattedString"/>
|
86
|
+
</element>
|
87
|
+
</define>
|
88
|
+
<define name="label">
|
89
|
+
<element name="label">
|
90
|
+
<text/>
|
91
|
+
</element>
|
92
|
+
</define>
|
93
|
+
<define name="subject">
|
94
|
+
<element name="subject">
|
95
|
+
<text/>
|
96
|
+
</element>
|
97
|
+
</define>
|
98
|
+
<define name="reqinherit">
|
99
|
+
<element name="inherit">
|
100
|
+
<text/>
|
101
|
+
</element>
|
102
|
+
</define>
|
103
|
+
<define name="measurementtarget">
|
104
|
+
<element name="measurement-target">
|
105
|
+
<ref name="RequirementSubpart"/>
|
106
|
+
</element>
|
107
|
+
</define>
|
108
|
+
<define name="specification">
|
109
|
+
<element name="specification">
|
110
|
+
<ref name="RequirementSubpart"/>
|
111
|
+
</element>
|
112
|
+
</define>
|
113
|
+
<define name="verification">
|
114
|
+
<element name="verification">
|
115
|
+
<ref name="RequirementSubpart"/>
|
116
|
+
</element>
|
117
|
+
</define>
|
118
|
+
<define name="import">
|
119
|
+
<element name="import">
|
120
|
+
<ref name="RequirementSubpart"/>
|
121
|
+
</element>
|
122
|
+
</define>
|
123
|
+
<define name="description">
|
124
|
+
<element name="description">
|
125
|
+
<ref name="RequirementSubpart"/>
|
126
|
+
</element>
|
127
|
+
</define>
|
128
|
+
<define name="reqt_references">
|
129
|
+
<element name="references">
|
130
|
+
<oneOrMore>
|
131
|
+
<ref name="bibitem"/>
|
132
|
+
</oneOrMore>
|
133
|
+
</element>
|
134
|
+
</define>
|
135
|
+
<define name="RequirementSubpart">
|
136
|
+
<optional>
|
137
|
+
<attribute name="type"/>
|
138
|
+
</optional>
|
139
|
+
<optional>
|
140
|
+
<attribute name="exclude">
|
141
|
+
<data type="boolean"/>
|
142
|
+
</attribute>
|
143
|
+
</optional>
|
144
|
+
<oneOrMore>
|
145
|
+
<ref name="BasicBlock"/>
|
146
|
+
</oneOrMore>
|
147
|
+
</define>
|
148
|
+
<define name="ObligationType">
|
149
|
+
<choice>
|
150
|
+
<value>requirement</value>
|
151
|
+
<value>recommendation</value>
|
152
|
+
<value>permission</value>
|
153
|
+
</choice>
|
154
|
+
</define>
|
155
|
+
<define name="classification">
|
156
|
+
<element name="classification">
|
157
|
+
<ref name="classification_tag"/>
|
158
|
+
<ref name="classification_value"/>
|
159
|
+
</element>
|
160
|
+
</define>
|
161
|
+
<define name="classification_tag">
|
162
|
+
<element name="tag">
|
163
|
+
<text/>
|
164
|
+
</element>
|
165
|
+
</define>
|
166
|
+
<define name="classification_value">
|
167
|
+
<element name="value">
|
168
|
+
<text/>
|
169
|
+
</element>
|
170
|
+
</define>
|
171
|
+
</grammar>
|
@@ -0,0 +1,74 @@
|
|
1
|
+
module IsoDoc
|
2
|
+
module IHO
|
3
|
+
module BaseConvert
|
4
|
+
def metadata_init(lang, script, labels)
|
5
|
+
@meta = Metadata.new(lang, script, labels)
|
6
|
+
end
|
7
|
+
|
8
|
+
def annex_name_lbl(clause, num)
|
9
|
+
lbl = clause["obligation"] == "informative" ? @appendix_lbl : @annex_lbl
|
10
|
+
l10n("<b>#{lbl} #{num}</b>")
|
11
|
+
end
|
12
|
+
|
13
|
+
def annex_names(clause, num)
|
14
|
+
appendix_names(clause, num)
|
15
|
+
lbl = clause["obligation"] == "informative" ? @appendix_lbl : @annex_lbl
|
16
|
+
@anchors[clause["id"]] =
|
17
|
+
{ label: annex_name_lbl(clause, num), type: "clause",
|
18
|
+
xref: "#{lbl} #{num}", level: 1 }
|
19
|
+
if a = single_annex_special_section(clause)
|
20
|
+
annex_names1(a, "#{num}", 1)
|
21
|
+
else
|
22
|
+
clause.xpath(ns("./clause | ./references | ./terms | ./definitions")).
|
23
|
+
each_with_index do |c, i|
|
24
|
+
annex_names1(c, "#{num}.#{i + 1}", 2)
|
25
|
+
end
|
26
|
+
end
|
27
|
+
hierarchical_asset_names(clause, num)
|
28
|
+
end
|
29
|
+
|
30
|
+
def back_anchor_names(docxml)
|
31
|
+
super
|
32
|
+
docxml.xpath(ns("//annex[@obligation = 'informative']")).each_with_index do |c, i|
|
33
|
+
annex_names(c, i + 1)
|
34
|
+
end
|
35
|
+
docxml.xpath(ns("//annex[not(@obligation = 'informative')]")).each_with_index do |c, i|
|
36
|
+
annex_names(c, (65 + i + (i > 7 ? 1 : 0)).chr.to_s)
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
def annex_names1(clause, num, level)
|
41
|
+
lbl = clause.at("./ancestor::xmlns:annex/@obligation").text == "informative" ? @appendix_lbl : @annex_lbl
|
42
|
+
@anchors[clause["id"]] =
|
43
|
+
{ label: num, xref: "#{lbl} #{num}",
|
44
|
+
level: level, type: "clause" }
|
45
|
+
clause.xpath(ns("./clause | ./references | ./terms | ./definitions")).each_with_index do |c, i|
|
46
|
+
annex_names1(c, "#{num}.#{i + 1}", level + 1)
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
# terms not defined in standoc
|
51
|
+
def error_parse(node, out)
|
52
|
+
case node.name
|
53
|
+
when "appendix" then clause_parse(node, out)
|
54
|
+
else
|
55
|
+
super
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
def appendix_names(clause, num)
|
60
|
+
clause.xpath(ns("./appendix")).each_with_index do |c, i|
|
61
|
+
@anchors[c["id"]] = anchor_struct(i + 1, nil, @appendix_lbl, "clause")
|
62
|
+
@anchors[c["id"]][:level] = 2
|
63
|
+
@anchors[c["id"]][:container] = clause["id"]
|
64
|
+
end
|
65
|
+
end
|
66
|
+
|
67
|
+
def info(isoxml, out)
|
68
|
+
@meta.series isoxml, out
|
69
|
+
@meta.commentperiod isoxml, out
|
70
|
+
super
|
71
|
+
end
|
72
|
+
end
|
73
|
+
end
|
74
|
+
end
|
@@ -0,0 +1,241 @@
|
|
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></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
|
+
</span></p>
|
78
|
+
|
79
|
+
</div>
|
80
|
+
|
81
|
+
<div style='mso-element:footer' id=ef1>
|
82
|
+
|
83
|
+
<p class=MsoFooter style='margin-top:12.0pt;line-height:12.0pt;mso-line-height-rule:
|
84
|
+
exactly'><!--[if supportFields]><b style='mso-bidi-font-weight:normal'><span
|
85
|
+
lang=EN-GB style='font-size:10.0pt;mso-bidi-font-size:11.0pt'><span
|
86
|
+
style='mso-element:field-begin'></span><span
|
87
|
+
style='mso-spacerun:yes'> </span>PAGE<span style='mso-spacerun:yes'>
|
88
|
+
</span>\* MERGEFORMAT <span style='mso-element:field-separator'></span></span></b><![endif]--><b
|
89
|
+
style='mso-bidi-font-weight:normal'><span lang=EN-GB style='font-size:10.0pt;
|
90
|
+
mso-bidi-font-size:11.0pt'><span style='mso-no-proof:yes'>2</span></span></b><!--[if supportFields]><b
|
91
|
+
style='mso-bidi-font-weight:normal'><span lang=EN-GB style='font-size:10.0pt;
|
92
|
+
mso-bidi-font-size:11.0pt'><span style='mso-element:field-end'></span></span></b><![endif]--><span
|
93
|
+
lang=EN-GB style='font-size:10.0pt;mso-bidi-font-size:11.0pt'><span
|
94
|
+
style='mso-tab-count:1'> </span>©
|
95
|
+
International Hydrographic Organization {{ docyear }} – All rights reserved<o:p></o:p></span></p>
|
96
|
+
|
97
|
+
</div>
|
98
|
+
|
99
|
+
<div style='mso-element:header' id=eh2>
|
100
|
+
<p class=MsoHeader align=left style='text-align:left;line-height:12.0pt;
|
101
|
+
mso-line-height-rule:exactly'><span lang=EN-GB>{{ docnumber }}</span></p>
|
102
|
+
</div>
|
103
|
+
|
104
|
+
<div style='mso-element:header' id=eh2l>
|
105
|
+
<p class=MsoHeaderLandscape align=left style='text-align:left;line-height:12.0pt;
|
106
|
+
mso-line-height-rule:exactly'><span lang=EN-GB>{{ docnumber }}</span></p>
|
107
|
+
</div>
|
108
|
+
|
109
|
+
<div style='mso-element:header' id=h2>
|
110
|
+
<p class=MsoHeader align=right style='text-align:right;line-height:12.0pt;
|
111
|
+
mso-line-height-rule:exactly'><span lang=EN-GB>{{ docnumber }}</span></p>
|
112
|
+
</div>
|
113
|
+
|
114
|
+
<div style='mso-element:header' id=h2l>
|
115
|
+
<p class=MsoHeaderLandscape align=right style='text-align:right;line-height:12.0pt;
|
116
|
+
mso-line-height-rule:exactly'><span lang=EN-GB>{{ docnumber }}</span></p>
|
117
|
+
</div>
|
118
|
+
|
119
|
+
<div style='mso-element:footer' id=ef2>
|
120
|
+
<p class=MsoFooter style='line-height:12.0pt;mso-line-height-rule:exactly'><!--[if supportFields]><span
|
121
|
+
lang=EN-GB style='font-size:10.0pt;mso-bidi-font-size:11.0pt'><span
|
122
|
+
style='mso-element:field-begin'></span><span
|
123
|
+
style='mso-spacerun:yes'> </span>PAGE<span style='mso-spacerun:yes'>
|
124
|
+
</span>\* MERGEFORMAT <span style='mso-element:field-separator'></span></span><![endif]--><span
|
125
|
+
lang=EN-GB style='font-size:10.0pt;mso-bidi-font-size:11.0pt'><span
|
126
|
+
style='mso-no-proof:yes'>ii</span></span><!--[if supportFields]><span
|
127
|
+
lang=EN-GB style='font-size:10.0pt;mso-bidi-font-size:11.0pt'><span
|
128
|
+
style='mso-element:field-end'></span></span><![endif]--><span lang=EN-GB
|
129
|
+
style='font-size:10.0pt;mso-bidi-font-size:11.0pt'><span style='mso-tab-count:
|
130
|
+
1'> </span>©
|
131
|
+
International Hydrographic Association {{ docyear }} – All rights reserved<o:p></o:p></span></p>
|
132
|
+
</div>
|
133
|
+
|
134
|
+
<div style='mso-element:footer' id=ef2l>
|
135
|
+
<p class=MsoFooterLandscape style='line-height:12.0pt;mso-line-height-rule:exactly'><!--[if supportFields]><span
|
136
|
+
lang=EN-GB style='font-size:10.0pt;mso-bidi-font-size:11.0pt'><span
|
137
|
+
style='mso-element:field-begin'></span><span
|
138
|
+
style='mso-spacerun:yes'> </span>PAGE<span style='mso-spacerun:yes'>
|
139
|
+
</span>\* MERGEFORMAT <span style='mso-element:field-separator'></span></span><![endif]--><span
|
140
|
+
lang=EN-GB style='font-size:10.0pt;mso-bidi-font-size:11.0pt'><span
|
141
|
+
style='mso-no-proof:yes'>ii</span></span><!--[if supportFields]><span
|
142
|
+
lang=EN-GB style='font-size:10.0pt;mso-bidi-font-size:11.0pt'><span
|
143
|
+
style='mso-element:field-end'></span></span><![endif]--><span lang=EN-GB
|
144
|
+
style='font-size:10.0pt;mso-bidi-font-size:11.0pt'><span style='mso-tab-count:
|
145
|
+
1'> </span>©
|
146
|
+
International Hydrographic Association {{ docyear }} – All rights reserved<o:p></o:p></span></p>
|
147
|
+
</div>
|
148
|
+
|
149
|
+
<div style='mso-element:footer' id=f2>
|
150
|
+
<p class=MsoFooter style='line-height:12.0pt'><span lang=EN-GB
|
151
|
+
style='font-size:10.0pt;mso-bidi-font-size:11.0pt'>© International Hydrographic Association {{ docyear }} – All
|
152
|
+
rights reserved<span style='mso-tab-count:1'> </span></span><!--[if supportFields]><span
|
153
|
+
lang=EN-GB style='font-size:10.0pt;mso-bidi-font-size:11.0pt'><span
|
154
|
+
style='mso-element:field-begin'></span> PAGE<span style='mso-spacerun:yes'>
|
155
|
+
</span>\* MERGEFORMAT <span style='mso-element:field-separator'></span></span><![endif]--><span
|
156
|
+
lang=EN-GB style='font-size:10.0pt;mso-bidi-font-size:11.0pt'><span
|
157
|
+
style='mso-no-proof:yes'>iii</span></span><!--[if supportFields]><span
|
158
|
+
lang=EN-GB style='font-size:10.0pt;mso-bidi-font-size:11.0pt'><span
|
159
|
+
style='mso-element:field-end'></span></span><![endif]--><span lang=EN-GB
|
160
|
+
style='font-size:10.0pt;mso-bidi-font-size:11.0pt'><o:p></o:p></span></p>
|
161
|
+
</div>
|
162
|
+
|
163
|
+
<div style='mso-element:footer' id=f2l>
|
164
|
+
<p class=MsoFooterLandscape style='line-height:12.0pt'><span lang=EN-GB
|
165
|
+
style='font-size:10.0pt;mso-bidi-font-size:11.0pt'>© International Hydrographic Association {{ docyear }} – All
|
166
|
+
rights reserved<span style='mso-tab-count:1'> </span></span><!--[if supportFields]><span
|
167
|
+
lang=EN-GB style='font-size:10.0pt;mso-bidi-font-size:11.0pt'><span
|
168
|
+
style='mso-element:field-begin'></span> PAGE<span style='mso-spacerun:yes'>
|
169
|
+
</span>\* MERGEFORMAT <span style='mso-element:field-separator'></span></span><![endif]--><span
|
170
|
+
lang=EN-GB style='font-size:10.0pt;mso-bidi-font-size:11.0pt'><span
|
171
|
+
style='mso-no-proof:yes'>iii</span></span><!--[if supportFields]><span
|
172
|
+
lang=EN-GB style='font-size:10.0pt;mso-bidi-font-size:11.0pt'><span
|
173
|
+
style='mso-element:field-end'></span></span><![endif]--><span lang=EN-GB
|
174
|
+
style='font-size:10.0pt;mso-bidi-font-size:11.0pt'><o:p></o:p></span></p>
|
175
|
+
</div>
|
176
|
+
|
177
|
+
<div style='mso-element:footer' id=ef3>
|
178
|
+
<p class=MsoFooter style='margin-top:12.0pt;line-height:12.0pt;mso-line-height-rule:
|
179
|
+
exactly'><!--[if supportFields]><b style='mso-bidi-font-weight:normal'><span
|
180
|
+
lang=EN-GB style='font-size:10.0pt;mso-bidi-font-size:11.0pt'><span
|
181
|
+
style='mso-element:field-begin'></span><span
|
182
|
+
style='mso-spacerun:yes'> </span>PAGE<span style='mso-spacerun:yes'>
|
183
|
+
</span>\* MERGEFORMAT <span style='mso-element:field-separator'></span></span></b><![endif]--><b
|
184
|
+
style='mso-bidi-font-weight:normal'><span lang=EN-GB style='font-size:10.0pt;
|
185
|
+
mso-bidi-font-size:11.0pt'><span style='mso-no-proof:yes'>2</span></span></b><!--[if supportFields]><b
|
186
|
+
style='mso-bidi-font-weight:normal'><span lang=EN-GB style='font-size:10.0pt;
|
187
|
+
mso-bidi-font-size:11.0pt'><span style='mso-element:field-end'></span></span></b><![endif]--><span
|
188
|
+
lang=EN-GB style='font-size:10.0pt;mso-bidi-font-size:11.0pt'><span
|
189
|
+
style='mso-tab-count:1'> </span>©
|
190
|
+
International Hydrographic Association {{ docyear }} – All rights reserved<o:p></o:p></span></p>
|
191
|
+
</div>
|
192
|
+
|
193
|
+
<div style='mso-element:footer' id=ef3l>
|
194
|
+
<p class=MsoFooterLandscape style='margin-top:12.0pt;line-height:12.0pt;mso-line-height-rule:
|
195
|
+
exactly'><!--[if supportFields]><b style='mso-bidi-font-weight:normal'><span
|
196
|
+
lang=EN-GB style='font-size:10.0pt;mso-bidi-font-size:11.0pt'><span
|
197
|
+
style='mso-element:field-begin'></span><span
|
198
|
+
style='mso-spacerun:yes'> </span>PAGE<span style='mso-spacerun:yes'>
|
199
|
+
</span>\* MERGEFORMAT <span style='mso-element:field-separator'></span></span></b><![endif]--><b
|
200
|
+
style='mso-bidi-font-weight:normal'><span lang=EN-GB style='font-size:10.0pt;
|
201
|
+
mso-bidi-font-size:11.0pt'><span style='mso-no-proof:yes'>2</span></span></b><!--[if supportFields]><b
|
202
|
+
style='mso-bidi-font-weight:normal'><span lang=EN-GB style='font-size:10.0pt;
|
203
|
+
mso-bidi-font-size:11.0pt'><span style='mso-element:field-end'></span></span></b><![endif]--><span
|
204
|
+
lang=EN-GB style='font-size:10.0pt;mso-bidi-font-size:11.0pt'><span
|
205
|
+
style='mso-tab-count:1'> </span>©
|
206
|
+
International Hydrographic Association {{ docyear }} – All rights reserved<o:p></o:p></span></p>
|
207
|
+
</div>
|
208
|
+
|
209
|
+
<div style='mso-element:footer' id=f3>
|
210
|
+
<p class=MsoFooter style='line-height:12.0pt'><span lang=EN-GB
|
211
|
+
style='font-size:10.0pt;mso-bidi-font-size:11.0pt'>© International Hydrographic Association {{ docyear }} – All
|
212
|
+
rights reserved<span style='mso-tab-count:1'> </span></span><!--[if supportFields]><b
|
213
|
+
style='mso-bidi-font-weight:normal'><span lang=EN-GB style='font-size:10.0pt;
|
214
|
+
mso-bidi-font-size:11.0pt'><span style='mso-element:field-begin'></span>
|
215
|
+
PAGE<span style='mso-spacerun:yes'> </span>\* MERGEFORMAT <span
|
216
|
+
style='mso-element:field-separator'></span></span></b><![endif]--><b
|
217
|
+
style='mso-bidi-font-weight:normal'><span lang=EN-GB style='font-size:10.0pt;
|
218
|
+
mso-bidi-font-size:11.0pt'><span style='mso-no-proof:yes'>3</span></span></b><!--[if supportFields]><b
|
219
|
+
style='mso-bidi-font-weight:normal'><span lang=EN-GB style='font-size:10.0pt;
|
220
|
+
mso-bidi-font-size:11.0pt'><span style='mso-element:field-end'></span></span></b><![endif]--><span
|
221
|
+
lang=EN-GB style='font-size:10.0pt;mso-bidi-font-size:11.0pt'><o:p></o:p></span></p>
|
222
|
+
</div>
|
223
|
+
|
224
|
+
<div style='mso-element:footer' id=f3l>
|
225
|
+
<p class=MsoFooterLandscape style='line-height:12.0pt'><span lang=EN-GB
|
226
|
+
style='font-size:10.0pt;mso-bidi-font-size:11.0pt'>© International Hydrographic Association {{ docyear }} – All
|
227
|
+
rights reserved<span style='mso-tab-count:1'> </span></span><!--[if supportFields]><b
|
228
|
+
style='mso-bidi-font-weight:normal'><span lang=EN-GB style='font-size:10.0pt;
|
229
|
+
mso-bidi-font-size:11.0pt'><span style='mso-element:field-begin'></span>
|
230
|
+
PAGE<span style='mso-spacerun:yes'> </span>\* MERGEFORMAT <span
|
231
|
+
style='mso-element:field-separator'></span></span></b><![endif]--><b
|
232
|
+
style='mso-bidi-font-weight:normal'><span lang=EN-GB style='font-size:10.0pt;
|
233
|
+
mso-bidi-font-size:11.0pt'><span style='mso-no-proof:yes'>3</span></span></b><!--[if supportFields]><b
|
234
|
+
style='mso-bidi-font-weight:normal'><span lang=EN-GB style='font-size:10.0pt;
|
235
|
+
mso-bidi-font-size:11.0pt'><span style='mso-element:field-end'></span></span></b><![endif]--><span
|
236
|
+
lang=EN-GB style='font-size:10.0pt;mso-bidi-font-size:11.0pt'><o:p></o:p></span></p>
|
237
|
+
</div>
|
238
|
+
|
239
|
+
</body>
|
240
|
+
|
241
|
+
</html>
|
@@ -0,0 +1,89 @@
|
|
1
|
+
<div class="document-stage-band" id="{{ stage | downcase | replace: ' ', '-' }}-band">
|
2
|
+
<p class="document-stage">{{ stage }}</p>
|
3
|
+
</div>
|
4
|
+
|
5
|
+
<div class="document-type-band" id="{{ doctype | downcase | replace: ' ', '-' }}-band">
|
6
|
+
<p class="document-type">IHO {{ doctype }}</p>
|
7
|
+
</div>
|
8
|
+
|
9
|
+
|
10
|
+
|
11
|
+
<div id='toggle'> <span>•</span> </div>
|
12
|
+
|
13
|
+
<header>
|
14
|
+
|
15
|
+
<div class="coverpage">
|
16
|
+
<div class="wrapper-top">
|
17
|
+
|
18
|
+
<div class="coverpage-doc-identity">
|
19
|
+
<div class="doc-number">
|
20
|
+
<span class="docnumber">{{ docnumber }}</span>
|
21
|
+
{% if edition %}<span class="docyear">Edition {{ edition }}</span>{% endif %}
|
22
|
+
<span class="docyear">{{ draftinfo }}</span>
|
23
|
+
</div>
|
24
|
+
|
25
|
+
<div class="coverpage-title">
|
26
|
+
<span class="title-first">{{ doctitle }}</span>
|
27
|
+
<!--<span class="title-second">{{ docsubtitle }}</span>-->
|
28
|
+
</div>
|
29
|
+
</div>
|
30
|
+
|
31
|
+
<div class="coverpage-logo">
|
32
|
+
<span>International Hydographic Organization. {{ docyear }}</span><br/>
|
33
|
+
<img src="{{ logo }}"/>
|
34
|
+
</div>
|
35
|
+
|
36
|
+
<div class="coverpage-tc-name">
|
37
|
+
<span>{{ tc }}</span>
|
38
|
+
</div>
|
39
|
+
</div>
|
40
|
+
|
41
|
+
<div class="wrapper-top-bottom"></div>
|
42
|
+
|
43
|
+
<div class="WordSection11">
|
44
|
+
<div class="coverpage-stage-block" >
|
45
|
+
<span class="coverpage-stage" id="{{ doctype | replace: ' ', '-' | downcase }}">IHO {{ doctype }}</span>
|
46
|
+
</div>
|
47
|
+
|
48
|
+
<div class="coverpage-stage-block" >
|
49
|
+
<p><span class="coverpage-maturity" id="{{ stage | replace: ' ', '-' | downcase }}">
|
50
|
+
{%- if unpublished -%}
|
51
|
+
{{- stage -}}
|
52
|
+
{%- else -%}
|
53
|
+
{%- if publisheddate and publisheddate != "XXXX" -%}
|
54
|
+
Published {{ publisheddate -}}
|
55
|
+
{%- endif -%}
|
56
|
+
{%- endif -%}</span></p>
|
57
|
+
</div>
|
58
|
+
|
59
|
+
{% if doctype == "Policy And Procedures" or doctype == "Proposal" %}
|
60
|
+
<div class="coverpage-stage-block" >{{ revdate }}</div>
|
61
|
+
{% endif %}
|
62
|
+
|
63
|
+
{% if unpublished %}
|
64
|
+
<div class="coverpage-warning">
|
65
|
+
<div id="boilerplate-license-destination"/>
|
66
|
+
</div>
|
67
|
+
{% endif %}
|
68
|
+
|
69
|
+
<div class="info-section">
|
70
|
+
<div class="copyright">
|
71
|
+
<div class="year">
|
72
|
+
<div id="boilerplate-copyright-destination"/>
|
73
|
+
</div>
|
74
|
+
|
75
|
+
<div class="message">
|
76
|
+
<div id="boilerplate-license-destination"/>
|
77
|
+
</div>
|
78
|
+
|
79
|
+
<div class="contact-info">
|
80
|
+
<div id="boilerplate-feedback-destination"/>
|
81
|
+
</div>
|
82
|
+
</div>
|
83
|
+
|
84
|
+
<div class="rule"></div>
|
85
|
+
</div>
|
86
|
+
</div>
|
87
|
+
|
88
|
+
|
89
|
+
</header>
|