metanorma-m3aawg 2.1.8.1 → 2.1.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/isodoc/m3aawg/init.rb +5 -5
- data/lib/isodoc/m3aawg/m3aawg.policy.xsl +59 -12
- data/lib/isodoc/m3aawg/m3aawg.report.xsl +59 -12
- data/lib/isodoc/m3aawg/metadata.rb +2 -2
- data/lib/metanorma/m3aawg/biblio.rng +32 -1
- data/lib/metanorma/m3aawg/isodoc.rng +9 -0
- data/lib/metanorma/m3aawg/processor.rb +13 -10
- data/lib/metanorma/m3aawg/version.rb +1 -1
- data/lib/metanorma/m3aawg.rb +0 -3
- data/metanorma-m3aawg.gemspec +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cc9281e2f8c3af7ccb5e07f8c71de9a2cf39f08dc252ec72e52400677bb90c94
|
4
|
+
data.tar.gz: ef50d0fc782ce16d3030bc07af30708ac9ea55585e731d319d7fd552385d31e2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7e4890c117d9232388551e99e7306314140faf4437514e0aafa1ccfe60fe2ea7b7099aacab53132b9579592e5f620d25619fca2d990d2ef355b56af71eb4e39d
|
7
|
+
data.tar.gz: fc32e445697e8432e0ca7e18f0c16db8fa4b7d5676dd9222adbf19ed598271a5ae91d109205271c0e7a3216a7d0446a577df7108ee5f51ef7fb1b51e2ebd32fd
|
data/lib/isodoc/m3aawg/init.rb
CHANGED
@@ -6,8 +6,8 @@ require_relative "i18n"
|
|
6
6
|
module IsoDoc
|
7
7
|
module M3AAWG
|
8
8
|
module Init
|
9
|
-
def metadata_init(lang, script, labels)
|
10
|
-
@meta = Metadata.new(lang, script, labels)
|
9
|
+
def metadata_init(lang, script, locale, labels)
|
10
|
+
@meta = Metadata.new(lang, script, locale, labels)
|
11
11
|
end
|
12
12
|
|
13
13
|
def xref_init(lang, script, _klass, labels, options)
|
@@ -15,10 +15,10 @@ module IsoDoc
|
|
15
15
|
@xrefs = Xref.new(lang, script, html, labels, options)
|
16
16
|
end
|
17
17
|
|
18
|
-
def i18n_init(lang, script, i18nyaml = nil)
|
19
|
-
@i18n = I18n.new(lang, script,
|
18
|
+
def i18n_init(lang, script, locale, i18nyaml = nil)
|
19
|
+
@i18n = I18n.new(lang, script, locale: locale,
|
20
|
+
i18nyaml: i18nyaml || @i18nyaml)
|
20
21
|
end
|
21
22
|
end
|
22
23
|
end
|
23
24
|
end
|
24
|
-
|
@@ -6422,6 +6422,18 @@
|
|
6422
6422
|
</xsl:copy>
|
6423
6423
|
</xsl:template>
|
6424
6424
|
|
6425
|
+
<xsl:template match="*[local-name() = 'sub']" mode="contents_item">
|
6426
|
+
<xsl:copy>
|
6427
|
+
<xsl:apply-templates mode="contents_item"/>
|
6428
|
+
</xsl:copy>
|
6429
|
+
</xsl:template>
|
6430
|
+
|
6431
|
+
<xsl:template match="*[local-name() = 'sup']" mode="contents_item">
|
6432
|
+
<xsl:copy>
|
6433
|
+
<xsl:apply-templates mode="contents_item"/>
|
6434
|
+
</xsl:copy>
|
6435
|
+
</xsl:template>
|
6436
|
+
|
6425
6437
|
<xsl:template match="*[local-name() = 'stem']" mode="contents_item">
|
6426
6438
|
<xsl:copy-of select="."/>
|
6427
6439
|
</xsl:template>
|
@@ -7366,7 +7378,7 @@
|
|
7366
7378
|
<!-- ====== -->
|
7367
7379
|
<!-- eref -->
|
7368
7380
|
<!-- ====== -->
|
7369
|
-
<xsl:template match="*[local-name() = 'eref']">
|
7381
|
+
<xsl:template match="*[local-name() = 'eref']" name="eref">
|
7370
7382
|
<xsl:variable name="current_bibitemid" select="@bibitemid"/>
|
7371
7383
|
<!-- <xsl:variable name="external-destination" select="normalize-space(key('bibitems', $current_bibitemid)/*[local-name() = 'uri'][@type = 'citation'])"/> -->
|
7372
7384
|
<xsl:variable name="external-destination" select="normalize-space($bibitems/*[local-name() ='bibitem'][@id = $current_bibitemid]/*[local-name() = 'uri'][@type = 'citation'])"/>
|
@@ -7871,21 +7883,29 @@
|
|
7871
7883
|
</xsl:variable>
|
7872
7884
|
|
7873
7885
|
<xsl:template match="@*|node()" mode="index_add_id">
|
7886
|
+
<xsl:param name="docid"/>
|
7874
7887
|
<xsl:copy>
|
7875
|
-
|
7888
|
+
<xsl:apply-templates select="@*|node()" mode="index_add_id">
|
7889
|
+
<xsl:with-param name="docid" select="$docid"/>
|
7890
|
+
</xsl:apply-templates>
|
7876
7891
|
</xsl:copy>
|
7877
7892
|
</xsl:template>
|
7878
7893
|
|
7879
7894
|
<xsl:template match="*[local-name() = 'xref']" mode="index_add_id">
|
7895
|
+
<xsl:param name="docid"/>
|
7880
7896
|
<xsl:variable name="id">
|
7881
|
-
<xsl:call-template name="generateIndexXrefId"
|
7897
|
+
<xsl:call-template name="generateIndexXrefId">
|
7898
|
+
<xsl:with-param name="docid" select="$docid"/>
|
7899
|
+
</xsl:call-template>
|
7882
7900
|
</xsl:variable>
|
7883
7901
|
<xsl:copy> <!-- add id to xref -->
|
7884
7902
|
<xsl:apply-templates select="@*" mode="index_add_id"/>
|
7885
7903
|
<xsl:attribute name="id">
|
7886
7904
|
<xsl:value-of select="$id"/>
|
7887
7905
|
</xsl:attribute>
|
7888
|
-
<xsl:apply-templates mode="index_add_id"
|
7906
|
+
<xsl:apply-templates mode="index_add_id">
|
7907
|
+
<xsl:with-param name="docid" select="$docid"/>
|
7908
|
+
</xsl:apply-templates>
|
7889
7909
|
</xsl:copy>
|
7890
7910
|
<!-- split <xref target="bm1" to="End" pagenumber="true"> to two xref:
|
7891
7911
|
<xref target="bm1" pagenumber="true"> and <xref target="End" pagenumber="true"> -->
|
@@ -7897,7 +7917,9 @@
|
|
7897
7917
|
<xsl:attribute name="id">
|
7898
7918
|
<xsl:value-of select="$id"/><xsl:text>_to</xsl:text>
|
7899
7919
|
</xsl:attribute>
|
7900
|
-
<xsl:apply-templates mode="index_add_id"
|
7920
|
+
<xsl:apply-templates mode="index_add_id">
|
7921
|
+
<xsl:with-param name="docid" select="$docid"/>
|
7922
|
+
</xsl:apply-templates>
|
7901
7923
|
</xsl:copy>
|
7902
7924
|
</xsl:if>
|
7903
7925
|
</xsl:template>
|
@@ -7934,12 +7956,33 @@
|
|
7934
7956
|
</xsl:when>
|
7935
7957
|
<xsl:when test="self::* and local-name(.) = 'xref'">
|
7936
7958
|
<xsl:variable name="id" select="@id"/>
|
7937
|
-
<xsl:variable name="page" select="$index//item[@id = $id]"/>
|
7938
|
-
<xsl:variable name="id_next" select="following-sibling::*[local-name() = 'xref'][1]/@id"/>
|
7939
|
-
<xsl:variable name="page_next" select="$index//item[@id = $id_next]"/>
|
7940
7959
|
|
7960
|
+
<xsl:variable name="id_next" select="following-sibling::*[local-name() = 'xref'][1]/@id"/>
|
7941
7961
|
<xsl:variable name="id_prev" select="preceding-sibling::*[local-name() = 'xref'][1]/@id"/>
|
7942
|
-
|
7962
|
+
|
7963
|
+
<xsl:variable name="pages_">
|
7964
|
+
<xsl:for-each select="$index/index/item[@id = $id or @id = $id_next or @id = $id_prev]">
|
7965
|
+
<xsl:choose>
|
7966
|
+
<xsl:when test="@id = $id">
|
7967
|
+
<page><xsl:value-of select="."/></page>
|
7968
|
+
</xsl:when>
|
7969
|
+
<xsl:when test="@id = $id_next">
|
7970
|
+
<page_next><xsl:value-of select="."/></page_next>
|
7971
|
+
</xsl:when>
|
7972
|
+
<xsl:when test="@id = $id_prev">
|
7973
|
+
<page_prev><xsl:value-of select="."/></page_prev>
|
7974
|
+
</xsl:when>
|
7975
|
+
</xsl:choose>
|
7976
|
+
</xsl:for-each>
|
7977
|
+
</xsl:variable>
|
7978
|
+
<xsl:variable name="pages" select="xalan:nodeset($pages_)"/>
|
7979
|
+
|
7980
|
+
<!-- <xsl:variable name="page" select="$index/index/item[@id = $id]"/> -->
|
7981
|
+
<xsl:variable name="page" select="$pages/page"/>
|
7982
|
+
<!-- <xsl:variable name="page_next" select="$index/index/item[@id = $id_next]"/> -->
|
7983
|
+
<xsl:variable name="page_next" select="$pages/page_next"/>
|
7984
|
+
<!-- <xsl:variable name="page_prev" select="$index/index/item[@id = $id_prev]"/> -->
|
7985
|
+
<xsl:variable name="page_prev" select="$pages/page_prev"/>
|
7943
7986
|
|
7944
7987
|
<xsl:choose>
|
7945
7988
|
<!-- 2nd pass -->
|
@@ -7999,16 +8042,20 @@
|
|
7999
8042
|
</xsl:template>
|
8000
8043
|
|
8001
8044
|
<xsl:template name="generateIndexXrefId">
|
8045
|
+
<xsl:param name="docid"/>
|
8046
|
+
|
8002
8047
|
<xsl:variable name="level" select="count(ancestor::*[local-name() = 'ul'])"/>
|
8003
8048
|
|
8004
|
-
<xsl:variable name="
|
8005
|
-
<xsl:
|
8049
|
+
<xsl:variable name="docid_curr">
|
8050
|
+
<xsl:value-of select="$docid"/>
|
8051
|
+
<xsl:if test="normalize-space($docid) = ''"><xsl:call-template name="getDocumentId"/></xsl:if>
|
8006
8052
|
</xsl:variable>
|
8053
|
+
|
8007
8054
|
<xsl:variable name="item_number">
|
8008
8055
|
<xsl:number count="*[local-name() = 'li'][ancestor::*[local-name() = 'indexsect']]" level="any"/>
|
8009
8056
|
</xsl:variable>
|
8010
8057
|
<xsl:variable name="xref_number"><xsl:number count="*[local-name() = 'xref']"/></xsl:variable>
|
8011
|
-
<xsl:value-of select="concat($
|
8058
|
+
<xsl:value-of select="concat($docid_curr, '_', $item_number, '_', $xref_number)"/> <!-- $level, '_', -->
|
8012
8059
|
</xsl:template>
|
8013
8060
|
|
8014
8061
|
<xsl:template match="*[local-name() = 'indexsect']/*[local-name() = 'title']" priority="4">
|
@@ -6422,6 +6422,18 @@
|
|
6422
6422
|
</xsl:copy>
|
6423
6423
|
</xsl:template>
|
6424
6424
|
|
6425
|
+
<xsl:template match="*[local-name() = 'sub']" mode="contents_item">
|
6426
|
+
<xsl:copy>
|
6427
|
+
<xsl:apply-templates mode="contents_item"/>
|
6428
|
+
</xsl:copy>
|
6429
|
+
</xsl:template>
|
6430
|
+
|
6431
|
+
<xsl:template match="*[local-name() = 'sup']" mode="contents_item">
|
6432
|
+
<xsl:copy>
|
6433
|
+
<xsl:apply-templates mode="contents_item"/>
|
6434
|
+
</xsl:copy>
|
6435
|
+
</xsl:template>
|
6436
|
+
|
6425
6437
|
<xsl:template match="*[local-name() = 'stem']" mode="contents_item">
|
6426
6438
|
<xsl:copy-of select="."/>
|
6427
6439
|
</xsl:template>
|
@@ -7366,7 +7378,7 @@
|
|
7366
7378
|
<!-- ====== -->
|
7367
7379
|
<!-- eref -->
|
7368
7380
|
<!-- ====== -->
|
7369
|
-
<xsl:template match="*[local-name() = 'eref']">
|
7381
|
+
<xsl:template match="*[local-name() = 'eref']" name="eref">
|
7370
7382
|
<xsl:variable name="current_bibitemid" select="@bibitemid"/>
|
7371
7383
|
<!-- <xsl:variable name="external-destination" select="normalize-space(key('bibitems', $current_bibitemid)/*[local-name() = 'uri'][@type = 'citation'])"/> -->
|
7372
7384
|
<xsl:variable name="external-destination" select="normalize-space($bibitems/*[local-name() ='bibitem'][@id = $current_bibitemid]/*[local-name() = 'uri'][@type = 'citation'])"/>
|
@@ -7871,21 +7883,29 @@
|
|
7871
7883
|
</xsl:variable>
|
7872
7884
|
|
7873
7885
|
<xsl:template match="@*|node()" mode="index_add_id">
|
7886
|
+
<xsl:param name="docid"/>
|
7874
7887
|
<xsl:copy>
|
7875
|
-
|
7888
|
+
<xsl:apply-templates select="@*|node()" mode="index_add_id">
|
7889
|
+
<xsl:with-param name="docid" select="$docid"/>
|
7890
|
+
</xsl:apply-templates>
|
7876
7891
|
</xsl:copy>
|
7877
7892
|
</xsl:template>
|
7878
7893
|
|
7879
7894
|
<xsl:template match="*[local-name() = 'xref']" mode="index_add_id">
|
7895
|
+
<xsl:param name="docid"/>
|
7880
7896
|
<xsl:variable name="id">
|
7881
|
-
<xsl:call-template name="generateIndexXrefId"
|
7897
|
+
<xsl:call-template name="generateIndexXrefId">
|
7898
|
+
<xsl:with-param name="docid" select="$docid"/>
|
7899
|
+
</xsl:call-template>
|
7882
7900
|
</xsl:variable>
|
7883
7901
|
<xsl:copy> <!-- add id to xref -->
|
7884
7902
|
<xsl:apply-templates select="@*" mode="index_add_id"/>
|
7885
7903
|
<xsl:attribute name="id">
|
7886
7904
|
<xsl:value-of select="$id"/>
|
7887
7905
|
</xsl:attribute>
|
7888
|
-
<xsl:apply-templates mode="index_add_id"
|
7906
|
+
<xsl:apply-templates mode="index_add_id">
|
7907
|
+
<xsl:with-param name="docid" select="$docid"/>
|
7908
|
+
</xsl:apply-templates>
|
7889
7909
|
</xsl:copy>
|
7890
7910
|
<!-- split <xref target="bm1" to="End" pagenumber="true"> to two xref:
|
7891
7911
|
<xref target="bm1" pagenumber="true"> and <xref target="End" pagenumber="true"> -->
|
@@ -7897,7 +7917,9 @@
|
|
7897
7917
|
<xsl:attribute name="id">
|
7898
7918
|
<xsl:value-of select="$id"/><xsl:text>_to</xsl:text>
|
7899
7919
|
</xsl:attribute>
|
7900
|
-
<xsl:apply-templates mode="index_add_id"
|
7920
|
+
<xsl:apply-templates mode="index_add_id">
|
7921
|
+
<xsl:with-param name="docid" select="$docid"/>
|
7922
|
+
</xsl:apply-templates>
|
7901
7923
|
</xsl:copy>
|
7902
7924
|
</xsl:if>
|
7903
7925
|
</xsl:template>
|
@@ -7934,12 +7956,33 @@
|
|
7934
7956
|
</xsl:when>
|
7935
7957
|
<xsl:when test="self::* and local-name(.) = 'xref'">
|
7936
7958
|
<xsl:variable name="id" select="@id"/>
|
7937
|
-
<xsl:variable name="page" select="$index//item[@id = $id]"/>
|
7938
|
-
<xsl:variable name="id_next" select="following-sibling::*[local-name() = 'xref'][1]/@id"/>
|
7939
|
-
<xsl:variable name="page_next" select="$index//item[@id = $id_next]"/>
|
7940
7959
|
|
7960
|
+
<xsl:variable name="id_next" select="following-sibling::*[local-name() = 'xref'][1]/@id"/>
|
7941
7961
|
<xsl:variable name="id_prev" select="preceding-sibling::*[local-name() = 'xref'][1]/@id"/>
|
7942
|
-
|
7962
|
+
|
7963
|
+
<xsl:variable name="pages_">
|
7964
|
+
<xsl:for-each select="$index/index/item[@id = $id or @id = $id_next or @id = $id_prev]">
|
7965
|
+
<xsl:choose>
|
7966
|
+
<xsl:when test="@id = $id">
|
7967
|
+
<page><xsl:value-of select="."/></page>
|
7968
|
+
</xsl:when>
|
7969
|
+
<xsl:when test="@id = $id_next">
|
7970
|
+
<page_next><xsl:value-of select="."/></page_next>
|
7971
|
+
</xsl:when>
|
7972
|
+
<xsl:when test="@id = $id_prev">
|
7973
|
+
<page_prev><xsl:value-of select="."/></page_prev>
|
7974
|
+
</xsl:when>
|
7975
|
+
</xsl:choose>
|
7976
|
+
</xsl:for-each>
|
7977
|
+
</xsl:variable>
|
7978
|
+
<xsl:variable name="pages" select="xalan:nodeset($pages_)"/>
|
7979
|
+
|
7980
|
+
<!-- <xsl:variable name="page" select="$index/index/item[@id = $id]"/> -->
|
7981
|
+
<xsl:variable name="page" select="$pages/page"/>
|
7982
|
+
<!-- <xsl:variable name="page_next" select="$index/index/item[@id = $id_next]"/> -->
|
7983
|
+
<xsl:variable name="page_next" select="$pages/page_next"/>
|
7984
|
+
<!-- <xsl:variable name="page_prev" select="$index/index/item[@id = $id_prev]"/> -->
|
7985
|
+
<xsl:variable name="page_prev" select="$pages/page_prev"/>
|
7943
7986
|
|
7944
7987
|
<xsl:choose>
|
7945
7988
|
<!-- 2nd pass -->
|
@@ -7999,16 +8042,20 @@
|
|
7999
8042
|
</xsl:template>
|
8000
8043
|
|
8001
8044
|
<xsl:template name="generateIndexXrefId">
|
8045
|
+
<xsl:param name="docid"/>
|
8046
|
+
|
8002
8047
|
<xsl:variable name="level" select="count(ancestor::*[local-name() = 'ul'])"/>
|
8003
8048
|
|
8004
|
-
<xsl:variable name="
|
8005
|
-
<xsl:
|
8049
|
+
<xsl:variable name="docid_curr">
|
8050
|
+
<xsl:value-of select="$docid"/>
|
8051
|
+
<xsl:if test="normalize-space($docid) = ''"><xsl:call-template name="getDocumentId"/></xsl:if>
|
8006
8052
|
</xsl:variable>
|
8053
|
+
|
8007
8054
|
<xsl:variable name="item_number">
|
8008
8055
|
<xsl:number count="*[local-name() = 'li'][ancestor::*[local-name() = 'indexsect']]" level="any"/>
|
8009
8056
|
</xsl:variable>
|
8010
8057
|
<xsl:variable name="xref_number"><xsl:number count="*[local-name() = 'xref']"/></xsl:variable>
|
8011
|
-
<xsl:value-of select="concat($
|
8058
|
+
<xsl:value-of select="concat($docid_curr, '_', $item_number, '_', $xref_number)"/> <!-- $level, '_', -->
|
8012
8059
|
</xsl:template>
|
8013
8060
|
|
8014
8061
|
<xsl:template match="*[local-name() = 'indexsect']/*[local-name() = 'title']" priority="4">
|
@@ -3,11 +3,11 @@ require "isodoc"
|
|
3
3
|
module IsoDoc
|
4
4
|
module M3AAWG
|
5
5
|
class Metadata < IsoDoc::Generic::Metadata
|
6
|
-
|
6
|
+
def configuration
|
7
7
|
Metanorma::M3AAWG.configuration
|
8
8
|
end
|
9
9
|
|
10
|
-
def initialize(lang, script, labels)
|
10
|
+
def initialize(lang, script, locale, labels)
|
11
11
|
super
|
12
12
|
here = File.dirname(__FILE__)
|
13
13
|
set(:logo_html,
|
@@ -73,8 +73,14 @@
|
|
73
73
|
<text/>
|
74
74
|
</element>
|
75
75
|
</define>
|
76
|
-
<define name="
|
76
|
+
<define name="locale">
|
77
77
|
<a:documentation>ISO-639</a:documentation>
|
78
|
+
<element name="locale">
|
79
|
+
<text/>
|
80
|
+
</element>
|
81
|
+
</define>
|
82
|
+
<define name="script">
|
83
|
+
<a:documentation>ISO-3166</a:documentation>
|
78
84
|
<element name="script">
|
79
85
|
<text/>
|
80
86
|
</element>
|
@@ -93,6 +99,9 @@
|
|
93
99
|
<!-- multiple languages and scripts possible: comma delimit them if so -->
|
94
100
|
<attribute name="language"/>
|
95
101
|
</optional>
|
102
|
+
<optional>
|
103
|
+
<attribute name="locale"/>
|
104
|
+
</optional>
|
96
105
|
<optional>
|
97
106
|
<attribute name="script"/>
|
98
107
|
</optional>
|
@@ -136,6 +145,9 @@
|
|
136
145
|
<!-- multiple languages and scripts possible: comma delimit them if so -->
|
137
146
|
<attribute name="language"/>
|
138
147
|
</optional>
|
148
|
+
<optional>
|
149
|
+
<attribute name="locale"/>
|
150
|
+
</optional>
|
139
151
|
<optional>
|
140
152
|
<attribute name="script"/>
|
141
153
|
</optional>
|
@@ -650,6 +662,9 @@
|
|
650
662
|
<zeroOrMore>
|
651
663
|
<ref name="language"/>
|
652
664
|
</zeroOrMore>
|
665
|
+
<zeroOrMore>
|
666
|
+
<ref name="locale"/>
|
667
|
+
</zeroOrMore>
|
653
668
|
<zeroOrMore>
|
654
669
|
<ref name="script"/>
|
655
670
|
</zeroOrMore>
|
@@ -741,6 +756,9 @@
|
|
741
756
|
<zeroOrMore>
|
742
757
|
<ref name="language"/>
|
743
758
|
</zeroOrMore>
|
759
|
+
<zeroOrMore>
|
760
|
+
<ref name="locale"/>
|
761
|
+
</zeroOrMore>
|
744
762
|
<zeroOrMore>
|
745
763
|
<ref name="script"/>
|
746
764
|
</zeroOrMore>
|
@@ -854,6 +872,15 @@
|
|
854
872
|
<optional>
|
855
873
|
<attribute name="type"/>
|
856
874
|
</optional>
|
875
|
+
<optional>
|
876
|
+
<attribute name="language"/>
|
877
|
+
</optional>
|
878
|
+
<optional>
|
879
|
+
<attribute name="locale"/>
|
880
|
+
</optional>
|
881
|
+
<optional>
|
882
|
+
<attribute name="script"/>
|
883
|
+
</optional>
|
857
884
|
<data type="anyURI"/>
|
858
885
|
</define>
|
859
886
|
<define name="DateType">
|
@@ -882,6 +909,7 @@
|
|
882
909
|
<value>vote-started</value>
|
883
910
|
<value>vote-ended</value>
|
884
911
|
<value>announced</value>
|
912
|
+
<value>stable-until</value>
|
885
913
|
</choice>
|
886
914
|
</define>
|
887
915
|
<define name="bdate">
|
@@ -930,6 +958,9 @@
|
|
930
958
|
<optional>
|
931
959
|
<attribute name="language"/>
|
932
960
|
</optional>
|
961
|
+
<optional>
|
962
|
+
<attribute name="locale"/>
|
963
|
+
</optional>
|
933
964
|
<optional>
|
934
965
|
<attribute name="script"/>
|
935
966
|
</optional>
|
@@ -205,6 +205,15 @@
|
|
205
205
|
<data type="boolean"/>
|
206
206
|
</attribute>
|
207
207
|
</optional>
|
208
|
+
<optional>
|
209
|
+
<attribute name="style">
|
210
|
+
<choice>
|
211
|
+
<value>basic</value>
|
212
|
+
<value>full</value>
|
213
|
+
<value>short</value>
|
214
|
+
</choice>
|
215
|
+
</attribute>
|
216
|
+
</optional>
|
208
217
|
<ref name="XrefBody"/>
|
209
218
|
</element>
|
210
219
|
</define>
|
@@ -3,12 +3,12 @@ require "metanorma/processor"
|
|
3
3
|
module Metanorma
|
4
4
|
module M3AAWG
|
5
5
|
class Processor < Metanorma::Generic::Processor
|
6
|
-
|
6
|
+
def configuration
|
7
7
|
Metanorma::Ribose.configuration
|
8
8
|
end
|
9
9
|
|
10
|
-
def initialize
|
11
|
-
@short = [
|
10
|
+
def initialize # rubocop:disable Lint/MissingSuper
|
11
|
+
@short = %i[m3d m3aawg]
|
12
12
|
@input_format = :asciidoc
|
13
13
|
@asciidoctor_backend = :m3aawg
|
14
14
|
end
|
@@ -17,7 +17,7 @@ module Metanorma
|
|
17
17
|
super.merge(
|
18
18
|
html: "html",
|
19
19
|
doc: "doc",
|
20
|
-
pdf: "pdf"
|
20
|
+
pdf: "pdf",
|
21
21
|
)
|
22
22
|
end
|
23
23
|
|
@@ -36,21 +36,24 @@ module Metanorma
|
|
36
36
|
"Metanorma::M3AAWG #{Metanorma::M3AAWG::VERSION}"
|
37
37
|
end
|
38
38
|
|
39
|
-
def output(isodoc_node, inname, outname, format, options={})
|
39
|
+
def output(isodoc_node, inname, outname, format, options = {})
|
40
40
|
case format
|
41
41
|
when :html
|
42
|
-
IsoDoc::M3AAWG::HtmlConvert.new(options)
|
42
|
+
IsoDoc::M3AAWG::HtmlConvert.new(options)
|
43
|
+
.convert(inname, isodoc_node, nil, outname)
|
43
44
|
when :doc
|
44
|
-
IsoDoc::M3AAWG::WordConvert.new(options)
|
45
|
+
IsoDoc::M3AAWG::WordConvert.new(options)
|
46
|
+
.convert(inname, isodoc_node, nil, outname)
|
45
47
|
when :pdf
|
46
|
-
IsoDoc::M3AAWG::PdfConvert.new(options)
|
48
|
+
IsoDoc::M3AAWG::PdfConvert.new(options)
|
49
|
+
.convert(inname, isodoc_node, nil, outname)
|
47
50
|
when :presentation
|
48
|
-
IsoDoc::M3AAWG::PresentationXMLConvert.new(options)
|
51
|
+
IsoDoc::M3AAWG::PresentationXMLConvert.new(options)
|
52
|
+
.convert(inname, isodoc_node, nil, outname)
|
49
53
|
else
|
50
54
|
super
|
51
55
|
end
|
52
56
|
end
|
53
|
-
|
54
57
|
end
|
55
58
|
end
|
56
59
|
end
|
data/lib/metanorma/m3aawg.rb
CHANGED
data/metanorma-m3aawg.gemspec
CHANGED
@@ -31,7 +31,7 @@ Gem::Specification.new do |spec|
|
|
31
31
|
spec.add_dependency "htmlentities", "~> 4.3.4"
|
32
32
|
spec.add_dependency "thread_safe"
|
33
33
|
|
34
|
-
spec.add_dependency "metanorma-generic", "~> 2.2.
|
34
|
+
spec.add_dependency "metanorma-generic", "~> 2.2.2"
|
35
35
|
|
36
36
|
spec.add_development_dependency "debug"
|
37
37
|
spec.add_development_dependency "equivalent-xml", "~> 0.6"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: metanorma-m3aawg
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.1.
|
4
|
+
version: 2.1.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ribose Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-10-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: htmlentities
|
@@ -44,14 +44,14 @@ dependencies:
|
|
44
44
|
requirements:
|
45
45
|
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: 2.2.
|
47
|
+
version: 2.2.2
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: 2.2.
|
54
|
+
version: 2.2.2
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: debug
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|