metanorma-bipm 2.2.0 → 2.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/isodoc/bipm/base_convert.rb +0 -28
- data/lib/isodoc/bipm/bipm.brochure.xsl +317 -234
- data/lib/isodoc/bipm/bipm.guide.xsl +317 -234
- data/lib/isodoc/bipm/bipm.mise-en-pratique.xsl +317 -234
- data/lib/isodoc/bipm/bipm.rapport.xsl +317 -234
- data/lib/isodoc/bipm/html/htmlstyle.css +35 -3
- data/lib/isodoc/bipm/jcgm.standard.xsl +259 -188
- data/lib/isodoc/bipm/presentation_xml_convert.rb +18 -0
- data/lib/metanorma/bipm/isodoc.rng +11 -1
- data/lib/metanorma/bipm/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f0b609b5b83c535799d98aad50e967a429954a173a612235fdbf9d6a09535029
|
4
|
+
data.tar.gz: ab072e5704c0e4d872d8a7ecc3bf8e8074abbc6c1939f61b72df0189767d0f5a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1e90aafe53eb531a4f10d8f76a1bf8718ff22f7b246f3ea29263d3f2d6b425b8f5a99d4f9a94f3ef28f730a84e1abf7528bcf3e381bf43162f4c87e70886bc15
|
7
|
+
data.tar.gz: 3cc243957aa7bf48a192d91a0cb9390fe9893fc9647760d31e712534b0111b154f72e692ecf48ddc58224451aa631d907c5cc2ca960fd3afc09263d0e64c6bcb
|
@@ -50,34 +50,6 @@ module IsoDoc
|
|
50
50
|
super
|
51
51
|
end
|
52
52
|
|
53
|
-
def nonstd_bibitem(list, bibitem, ordinal, biblio)
|
54
|
-
list.p **attr_code(iso_bibitem_entry_attrs(bibitem, biblio)) do |ref|
|
55
|
-
ids = bibitem_ref_code(bibitem)
|
56
|
-
identifiers = render_identifier(ids)
|
57
|
-
if biblio then ref_entry_code(ref, ordinal, identifiers, ids)
|
58
|
-
else
|
59
|
-
ref << (identifiers[0] || identifiers[1])
|
60
|
-
ref << " #{identifiers[1]}" if identifiers[0] && identifiers[1]
|
61
|
-
end
|
62
|
-
ref << " "
|
63
|
-
reference_format(bibitem, ref)
|
64
|
-
end
|
65
|
-
end
|
66
|
-
|
67
|
-
def std_bibitem_entry(list, bibitem, ordinal, biblio)
|
68
|
-
list.p **attr_code(iso_bibitem_entry_attrs(bibitem, biblio)) do |ref|
|
69
|
-
identifiers = render_identifier(bibitem_ref_code(bibitem))
|
70
|
-
if biblio then ref_entry_code(ref, ordinal, identifiers, nil)
|
71
|
-
else
|
72
|
-
ref << (identifiers[0] || identifiers[1])
|
73
|
-
ref << " #{identifiers[1]}" if identifiers[0] && identifiers[1]
|
74
|
-
end
|
75
|
-
date_note_process(bibitem, ref)
|
76
|
-
ref << " "
|
77
|
-
reference_format(bibitem, ref)
|
78
|
-
end
|
79
|
-
end
|
80
|
-
|
81
53
|
def term_cleanup(docxml)
|
82
54
|
@jcgm ? docxml : super
|
83
55
|
end
|