metanorma-ietf 2.2.2 → 2.2.3
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 +4 -4
- data/lib/asciidoctor/ietf/basicdoc.rng +23 -0
- data/lib/asciidoctor/ietf/front.rb +2 -8
- data/lib/asciidoctor/ietf/ietf.rng +7 -0
- data/lib/asciidoctor/ietf/isodoc.rng +121 -14
- data/lib/metanorma/ietf/version.rb +1 -1
- data/metanorma-ietf.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: a672cb965e33f37303d7053c81f86be083a5b1c43ec5144ccc430920e7d29512
|
|
4
|
+
data.tar.gz: c127be595fc086aa3f00620dfe0583bbcf1416bad56987a25e0a409b32305848
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1b403ed5675f6bda04b6908c8c9907bfe9e495f3bea974eebd0a65105ffc9384ba735ea8ceff883f4e261056e2772c232ccf2b94b734d3051ec3dc9f407a257f
|
|
7
|
+
data.tar.gz: eb7ee9cd557bda127f8127bd10014d7d1e1f58aff032acea3105764950d014a2db0137d0a77de8172635803fc33d751e4c5b50f1d9c481d138af95861582a6d9
|
|
@@ -402,6 +402,16 @@
|
|
|
402
402
|
</choice>
|
|
403
403
|
</attribute>
|
|
404
404
|
</optional>
|
|
405
|
+
<optional>
|
|
406
|
+
<attribute name="valign">
|
|
407
|
+
<choice>
|
|
408
|
+
<value>top</value>
|
|
409
|
+
<value>middle</value>
|
|
410
|
+
<value>bottom</value>
|
|
411
|
+
<value>baseline</value>
|
|
412
|
+
</choice>
|
|
413
|
+
</attribute>
|
|
414
|
+
</optional>
|
|
405
415
|
<choice>
|
|
406
416
|
<zeroOrMore>
|
|
407
417
|
<ref name="TextElement"/>
|
|
@@ -429,6 +439,16 @@
|
|
|
429
439
|
</choice>
|
|
430
440
|
</attribute>
|
|
431
441
|
</optional>
|
|
442
|
+
<optional>
|
|
443
|
+
<attribute name="valign">
|
|
444
|
+
<choice>
|
|
445
|
+
<value>top</value>
|
|
446
|
+
<value>middle</value>
|
|
447
|
+
<value>bottom</value>
|
|
448
|
+
<value>baseline</value>
|
|
449
|
+
</choice>
|
|
450
|
+
</attribute>
|
|
451
|
+
</optional>
|
|
432
452
|
<choice>
|
|
433
453
|
<zeroOrMore>
|
|
434
454
|
<ref name="TextElement"/>
|
|
@@ -998,6 +1018,9 @@
|
|
|
998
1018
|
<value>alphabet_upper</value>
|
|
999
1019
|
</choice>
|
|
1000
1020
|
</attribute>
|
|
1021
|
+
<optional>
|
|
1022
|
+
<attribute name="start"/>
|
|
1023
|
+
</optional>
|
|
1001
1024
|
<oneOrMore>
|
|
1002
1025
|
<ref name="li"/>
|
|
1003
1026
|
</oneOrMore>
|
|
@@ -31,14 +31,8 @@ module Asciidoctor
|
|
|
31
31
|
end
|
|
32
32
|
end
|
|
33
33
|
|
|
34
|
-
def
|
|
35
|
-
|
|
36
|
-
"Internet Engineering Task Force"].include? orgname
|
|
37
|
-
org.name "Internet Engineering Task Force"
|
|
38
|
-
org.abbreviation "IETF"
|
|
39
|
-
else
|
|
40
|
-
org.name orgname
|
|
41
|
-
end
|
|
34
|
+
def org_abbrev
|
|
35
|
+
{ "Internet Engineering Task Force" => "IETF" }
|
|
42
36
|
end
|
|
43
37
|
|
|
44
38
|
def metadata_series(node, xml)
|
|
@@ -868,6 +868,13 @@
|
|
|
868
868
|
</define>
|
|
869
869
|
<define name="ietf-standard">
|
|
870
870
|
<element name="ietf-standard">
|
|
871
|
+
<attribute name="version"/>
|
|
872
|
+
<attribute name="type">
|
|
873
|
+
<choice>
|
|
874
|
+
<value>semantic</value>
|
|
875
|
+
<value>presentation</value>
|
|
876
|
+
</choice>
|
|
877
|
+
</attribute>
|
|
871
878
|
<ref name="bibdata"/>
|
|
872
879
|
<zeroOrMore>
|
|
873
880
|
<ref name="termdocsource"/>
|
|
@@ -64,6 +64,11 @@
|
|
|
64
64
|
</choice>
|
|
65
65
|
</attribute>
|
|
66
66
|
</optional>
|
|
67
|
+
<optional>
|
|
68
|
+
<attribute name="droploc">
|
|
69
|
+
<data type="boolean"/>
|
|
70
|
+
</attribute>
|
|
71
|
+
</optional>
|
|
67
72
|
<text/>
|
|
68
73
|
</element>
|
|
69
74
|
</define>
|
|
@@ -581,6 +586,8 @@
|
|
|
581
586
|
<ref name="ol"/>
|
|
582
587
|
<ref name="dl"/>
|
|
583
588
|
<ref name="formula"/>
|
|
589
|
+
<ref name="quote"/>
|
|
590
|
+
<ref name="sourcecode"/>
|
|
584
591
|
</choice>
|
|
585
592
|
</oneOrMore>
|
|
586
593
|
</element>
|
|
@@ -664,6 +671,16 @@
|
|
|
664
671
|
</choice>
|
|
665
672
|
</attribute>
|
|
666
673
|
</optional>
|
|
674
|
+
<optional>
|
|
675
|
+
<attribute name="valign">
|
|
676
|
+
<choice>
|
|
677
|
+
<value>top</value>
|
|
678
|
+
<value>middle</value>
|
|
679
|
+
<value>bottom</value>
|
|
680
|
+
<value>baseline</value>
|
|
681
|
+
</choice>
|
|
682
|
+
</attribute>
|
|
683
|
+
</optional>
|
|
667
684
|
<choice>
|
|
668
685
|
<zeroOrMore>
|
|
669
686
|
<choice>
|
|
@@ -700,6 +717,16 @@
|
|
|
700
717
|
</choice>
|
|
701
718
|
</attribute>
|
|
702
719
|
</optional>
|
|
720
|
+
<optional>
|
|
721
|
+
<attribute name="valign">
|
|
722
|
+
<choice>
|
|
723
|
+
<value>top</value>
|
|
724
|
+
<value>middle</value>
|
|
725
|
+
<value>bottom</value>
|
|
726
|
+
<value>baseline</value>
|
|
727
|
+
</choice>
|
|
728
|
+
</attribute>
|
|
729
|
+
</optional>
|
|
703
730
|
<choice>
|
|
704
731
|
<zeroOrMore>
|
|
705
732
|
<choice>
|
|
@@ -837,6 +864,13 @@
|
|
|
837
864
|
</define>
|
|
838
865
|
<define name="standard-document">
|
|
839
866
|
<element name="standard-document">
|
|
867
|
+
<attribute name="version"/>
|
|
868
|
+
<attribute name="type">
|
|
869
|
+
<choice>
|
|
870
|
+
<value>semantic</value>
|
|
871
|
+
<value>presentation</value>
|
|
872
|
+
</choice>
|
|
873
|
+
</attribute>
|
|
840
874
|
<ref name="bibdata"/>
|
|
841
875
|
<optional>
|
|
842
876
|
<ref name="boilerplate"/>
|
|
@@ -858,7 +892,7 @@
|
|
|
858
892
|
<oneOrMore>
|
|
859
893
|
<choice>
|
|
860
894
|
<ref name="content"/>
|
|
861
|
-
<ref name="
|
|
895
|
+
<ref name="abstract"/>
|
|
862
896
|
<ref name="foreword"/>
|
|
863
897
|
<ref name="introduction"/>
|
|
864
898
|
<ref name="acknowledgements"/>
|
|
@@ -1052,14 +1086,17 @@
|
|
|
1052
1086
|
<ref name="section-title"/>
|
|
1053
1087
|
</optional>
|
|
1054
1088
|
<group>
|
|
1055
|
-
<
|
|
1056
|
-
<
|
|
1057
|
-
<
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
<
|
|
1061
|
-
|
|
1062
|
-
|
|
1089
|
+
<choice>
|
|
1090
|
+
<group>
|
|
1091
|
+
<zeroOrMore>
|
|
1092
|
+
<ref name="BasicBlock"/>
|
|
1093
|
+
</zeroOrMore>
|
|
1094
|
+
<zeroOrMore>
|
|
1095
|
+
<ref name="note"/>
|
|
1096
|
+
</zeroOrMore>
|
|
1097
|
+
</group>
|
|
1098
|
+
<ref name="amend"/>
|
|
1099
|
+
</choice>
|
|
1063
1100
|
<zeroOrMore>
|
|
1064
1101
|
<choice>
|
|
1065
1102
|
<ref name="clause-subsection"/>
|
|
@@ -1456,11 +1493,6 @@
|
|
|
1456
1493
|
</optional>
|
|
1457
1494
|
</element>
|
|
1458
1495
|
</define>
|
|
1459
|
-
<define name="preface_abstract">
|
|
1460
|
-
<element name="abstract">
|
|
1461
|
-
<ref name="Basic-Section"/>
|
|
1462
|
-
</element>
|
|
1463
|
-
</define>
|
|
1464
1496
|
<define name="term-clause">
|
|
1465
1497
|
<element name="clause">
|
|
1466
1498
|
<optional>
|
|
@@ -1510,4 +1542,79 @@
|
|
|
1510
1542
|
<ref name="CitationType"/>
|
|
1511
1543
|
</element>
|
|
1512
1544
|
</define>
|
|
1545
|
+
<define name="amend">
|
|
1546
|
+
<element name="amend">
|
|
1547
|
+
<optional>
|
|
1548
|
+
<attribute name="id">
|
|
1549
|
+
<data type="ID"/>
|
|
1550
|
+
</attribute>
|
|
1551
|
+
</optional>
|
|
1552
|
+
<attribute name="change">
|
|
1553
|
+
<choice>
|
|
1554
|
+
<value>add</value>
|
|
1555
|
+
<value>modify</value>
|
|
1556
|
+
<value>delete</value>
|
|
1557
|
+
</choice>
|
|
1558
|
+
</attribute>
|
|
1559
|
+
<optional>
|
|
1560
|
+
<attribute name="path"/>
|
|
1561
|
+
</optional>
|
|
1562
|
+
<optional>
|
|
1563
|
+
<attribute name="path_end"/>
|
|
1564
|
+
</optional>
|
|
1565
|
+
<optional>
|
|
1566
|
+
<attribute name="title"/>
|
|
1567
|
+
</optional>
|
|
1568
|
+
<optional>
|
|
1569
|
+
<element name="location">
|
|
1570
|
+
<zeroOrMore>
|
|
1571
|
+
<ref name="locality"/>
|
|
1572
|
+
</zeroOrMore>
|
|
1573
|
+
</element>
|
|
1574
|
+
</optional>
|
|
1575
|
+
<zeroOrMore>
|
|
1576
|
+
<ref name="autonumber"/>
|
|
1577
|
+
</zeroOrMore>
|
|
1578
|
+
<optional>
|
|
1579
|
+
<element name="description">
|
|
1580
|
+
<zeroOrMore>
|
|
1581
|
+
<ref name="BasicBlock"/>
|
|
1582
|
+
</zeroOrMore>
|
|
1583
|
+
</element>
|
|
1584
|
+
</optional>
|
|
1585
|
+
<optional>
|
|
1586
|
+
<element name="newcontent">
|
|
1587
|
+
<zeroOrMore>
|
|
1588
|
+
<ref name="BasicBlock"/>
|
|
1589
|
+
</zeroOrMore>
|
|
1590
|
+
</element>
|
|
1591
|
+
</optional>
|
|
1592
|
+
<optional>
|
|
1593
|
+
<element name="description">
|
|
1594
|
+
<zeroOrMore>
|
|
1595
|
+
<ref name="BasicBlock"/>
|
|
1596
|
+
</zeroOrMore>
|
|
1597
|
+
</element>
|
|
1598
|
+
</optional>
|
|
1599
|
+
</element>
|
|
1600
|
+
</define>
|
|
1601
|
+
<define name="autonumber">
|
|
1602
|
+
<element name="autonumber">
|
|
1603
|
+
<attribute name="type">
|
|
1604
|
+
<choice>
|
|
1605
|
+
<value>requirement</value>
|
|
1606
|
+
<value>recommendation</value>
|
|
1607
|
+
<value>permission</value>
|
|
1608
|
+
<value>table</value>
|
|
1609
|
+
<value>figure</value>
|
|
1610
|
+
<value>admonition</value>
|
|
1611
|
+
<value>formula</value>
|
|
1612
|
+
<value>sourcecode</value>
|
|
1613
|
+
<value>example</value>
|
|
1614
|
+
<value>note</value>
|
|
1615
|
+
</choice>
|
|
1616
|
+
</attribute>
|
|
1617
|
+
<text/>
|
|
1618
|
+
</element>
|
|
1619
|
+
</define>
|
|
1513
1620
|
</grammar>
|
data/metanorma-ietf.gemspec
CHANGED
|
@@ -35,7 +35,7 @@ Gem::Specification.new do |spec|
|
|
|
35
35
|
spec.require_paths = ["lib"]
|
|
36
36
|
spec.required_ruby_version = Gem::Requirement.new(">= 2.4.0")
|
|
37
37
|
|
|
38
|
-
spec.add_dependency "metanorma-standoc", "~> 1.
|
|
38
|
+
spec.add_dependency "metanorma-standoc", "~> 1.6.0"
|
|
39
39
|
spec.add_dependency "isodoc", "~> 1.2.0"
|
|
40
40
|
spec.add_dependency "mathml2asciimath"
|
|
41
41
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: metanorma-ietf
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.2.
|
|
4
|
+
version: 2.2.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ribose Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-09-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: metanorma-standoc
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 1.
|
|
19
|
+
version: 1.6.0
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 1.
|
|
26
|
+
version: 1.6.0
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: isodoc
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|