metanorma-iso 2.7.7 → 2.7.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/isodoc/iso/base_convert.rb +9 -0
- data/lib/isodoc/iso/html/html_iso_titlepage.html +2 -2
- data/lib/isodoc/iso/html/style-human.css +53 -0
- data/lib/isodoc/iso/html/style-iso.css +53 -0
- data/lib/isodoc/iso/iso.amendment.xsl +453 -66
- data/lib/isodoc/iso/iso.international-standard.xsl +453 -66
- data/lib/isodoc/iso/presentation_xml_convert.rb +7 -0
- data/lib/metanorma/iso/basicdoc.rng +840 -419
- data/lib/metanorma/iso/biblio.rng +26 -27
- data/lib/metanorma/iso/boilerplate-fr.adoc +1 -1
- data/lib/metanorma/iso/boilerplate-ru.adoc +1 -1
- data/lib/metanorma/iso/boilerplate.adoc +1 -1
- data/lib/metanorma/iso/isodoc.rng +351 -510
- data/lib/metanorma/iso/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 149ccea2319451ddf2c113a533c3c196fa27764db7a4cd10fa8770ce77d83d8f
|
4
|
+
data.tar.gz: a8c6c1c8cfad5bb28dce305b13809fb63f76492f9163ad7cdc85c20e273845cd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 50b9f21b7e7e49f20d49f4fcfb7542b012b891f272bdd0c57ed01f8ed1e9c7704fcc45333079a5121fa4e8efaa6adf33e857f9133a39152b4bfa84e799ad291a
|
7
|
+
data.tar.gz: 1321622466579a4bbc98c6641b0b8dc08f6230684d859a8c9a6b9efedb4df261567dd04fb855f1a61deffa0d9e92a597017f2a471d26645c15ee861c04302c43
|
@@ -201,6 +201,15 @@ module IsoDoc
|
|
201
201
|
end
|
202
202
|
end
|
203
203
|
|
204
|
+
def table_cleanup(docxml)
|
205
|
+
super
|
206
|
+
docxml.xpath("//tfoot/div[@class = 'figdl']/p[@class = 'ListTitle']")
|
207
|
+
.each do |p|
|
208
|
+
p["align"] = "left"
|
209
|
+
end
|
210
|
+
docxml
|
211
|
+
end
|
212
|
+
|
204
213
|
def convert_i18n_init(docxml)
|
205
214
|
super
|
206
215
|
update_i18n(docxml)
|
@@ -66,12 +66,12 @@
|
|
66
66
|
{% endif %}
|
67
67
|
</div>
|
68
68
|
|
69
|
-
{% if
|
69
|
+
{% if stage_int >= 20 and stage_int < 40 %}
|
70
70
|
<div class="coverpage_warning">
|
71
71
|
<div id="boilerplate-license-destination"/>
|
72
72
|
</div>
|
73
73
|
{% endif %}
|
74
|
-
<div class="
|
74
|
+
<div class="coverpage_warning" id="coverpage-note-destination"/>
|
75
75
|
|
76
76
|
{% if ics %}
|
77
77
|
<p><b>ICS:</b> {{ ics }}</p>
|
@@ -1,3 +1,4 @@
|
|
1
|
+
@charset "UTF-8";
|
1
2
|
/*
|
2
3
|
0 CSS RESET
|
3
4
|
*/
|
@@ -176,6 +177,58 @@ table.rouge-line-table pre {
|
|
176
177
|
overflow-x: visible;
|
177
178
|
font-size: 100%; }
|
178
179
|
|
180
|
+
/* header § links */
|
181
|
+
a.header {
|
182
|
+
color: inherit;
|
183
|
+
text-decoration: none; }
|
184
|
+
|
185
|
+
a.header:hover {
|
186
|
+
color: #a53221 !important;
|
187
|
+
background: inherit;
|
188
|
+
box-shadow: none; }
|
189
|
+
|
190
|
+
a.header:visited {
|
191
|
+
color: inherit;
|
192
|
+
text-decoration: none; }
|
193
|
+
|
194
|
+
a.anchor {
|
195
|
+
position: absolute;
|
196
|
+
z-index: 1001;
|
197
|
+
width: 1.5ex;
|
198
|
+
margin-left: -1.5ex;
|
199
|
+
display: block;
|
200
|
+
text-decoration: none !important;
|
201
|
+
visibility: hidden;
|
202
|
+
text-align: center;
|
203
|
+
font-weight: 400; }
|
204
|
+
|
205
|
+
a.anchor::before {
|
206
|
+
content: "\00A7";
|
207
|
+
font-size: .85em;
|
208
|
+
display: block;
|
209
|
+
padding-top: .1em; }
|
210
|
+
|
211
|
+
a.anchor:hover {
|
212
|
+
color: #a53221;
|
213
|
+
background: inherit;
|
214
|
+
box-shadow: none; }
|
215
|
+
|
216
|
+
h1 > a.anchor:hover,
|
217
|
+
h2 > a.anchor:hover,
|
218
|
+
h3 > a.anchor:hover,
|
219
|
+
h4 > a.anchor:hover,
|
220
|
+
h5 > a.anchor:hover,
|
221
|
+
h6 > a.anchor:hover,
|
222
|
+
.inline-header > a.anchor:hover,
|
223
|
+
h1:hover > a.anchor,
|
224
|
+
h2:hover > a.anchor,
|
225
|
+
h3:hover > a.anchor,
|
226
|
+
h4:hover > a.anchor,
|
227
|
+
h5:hover > a.anchor,
|
228
|
+
h6:hover > a.anchor,
|
229
|
+
.inline-header:hover > a.anchor {
|
230
|
+
visibility: visible; }
|
231
|
+
|
179
232
|
#standard-band {
|
180
233
|
background-color: #0AC442; }
|
181
234
|
|
@@ -1,3 +1,4 @@
|
|
1
|
+
@charset "UTF-8";
|
1
2
|
/*
|
2
3
|
0 CSS RESET
|
3
4
|
*/
|
@@ -176,6 +177,58 @@ table.rouge-line-table pre {
|
|
176
177
|
overflow-x: visible;
|
177
178
|
font-size: 100%; }
|
178
179
|
|
180
|
+
/* header § links */
|
181
|
+
a.header {
|
182
|
+
color: inherit;
|
183
|
+
text-decoration: none; }
|
184
|
+
|
185
|
+
a.header:hover {
|
186
|
+
color: #a53221 !important;
|
187
|
+
background: inherit;
|
188
|
+
box-shadow: none; }
|
189
|
+
|
190
|
+
a.header:visited {
|
191
|
+
color: inherit;
|
192
|
+
text-decoration: none; }
|
193
|
+
|
194
|
+
a.anchor {
|
195
|
+
position: absolute;
|
196
|
+
z-index: 1001;
|
197
|
+
width: 1.5ex;
|
198
|
+
margin-left: -1.5ex;
|
199
|
+
display: block;
|
200
|
+
text-decoration: none !important;
|
201
|
+
visibility: hidden;
|
202
|
+
text-align: center;
|
203
|
+
font-weight: 400; }
|
204
|
+
|
205
|
+
a.anchor::before {
|
206
|
+
content: "\00A7";
|
207
|
+
font-size: .85em;
|
208
|
+
display: block;
|
209
|
+
padding-top: .1em; }
|
210
|
+
|
211
|
+
a.anchor:hover {
|
212
|
+
color: #a53221;
|
213
|
+
background: inherit;
|
214
|
+
box-shadow: none; }
|
215
|
+
|
216
|
+
h1 > a.anchor:hover,
|
217
|
+
h2 > a.anchor:hover,
|
218
|
+
h3 > a.anchor:hover,
|
219
|
+
h4 > a.anchor:hover,
|
220
|
+
h5 > a.anchor:hover,
|
221
|
+
h6 > a.anchor:hover,
|
222
|
+
.inline-header > a.anchor:hover,
|
223
|
+
h1:hover > a.anchor,
|
224
|
+
h2:hover > a.anchor,
|
225
|
+
h3:hover > a.anchor,
|
226
|
+
h4:hover > a.anchor,
|
227
|
+
h5:hover > a.anchor,
|
228
|
+
h6:hover > a.anchor,
|
229
|
+
.inline-header:hover > a.anchor {
|
230
|
+
visibility: visible; }
|
231
|
+
|
179
232
|
#standard-band {
|
180
233
|
background-color: #0AC442; }
|
181
234
|
|