relaton-ieee 2.1.1 → 2.2.0.pre.alpha.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 +4 -4
- data/Gemfile +8 -0
- data/Rakefile +1 -1
- data/lib/relaton/ieee/bibliography.rb +1 -1
- data/lib/relaton/ieee/data_fetcher.rb +466 -33
- data/lib/relaton/ieee/idams_parser.rb +10 -1
- data/lib/relaton/ieee/version.rb +1 -1
- data/relaton-ieee.gemspec +4 -4
- metadata +9 -15
- data/.rubocop.yml +0 -12
- data/grammars/basicdoc.rng +0 -2140
- data/grammars/biblio-standoc.rng +0 -268
- data/grammars/biblio.rng +0 -2125
- data/grammars/relaton-ieee-compile.rng +0 -11
- data/grammars/relaton-ieee.rng +0 -124
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<grammar xmlns="http://relaxng.org/ns/structure/1.0">
|
|
3
|
-
<include href="basicdoc.rng"/>
|
|
4
|
-
<include href="relaton-ieee.rng"/>
|
|
5
|
-
<start>
|
|
6
|
-
<choice>
|
|
7
|
-
<ref name="bibitem"/>
|
|
8
|
-
<ref name="bibdata"/>
|
|
9
|
-
</choice>
|
|
10
|
-
</start>
|
|
11
|
-
</grammar>
|
data/grammars/relaton-ieee.rng
DELETED
|
@@ -1,124 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<grammar xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0" xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
|
|
3
|
-
<include href="biblio-standoc.rng">
|
|
4
|
-
<define name="DocumentType">
|
|
5
|
-
<choice>
|
|
6
|
-
<value>guide</value>
|
|
7
|
-
<value>recommended-practice</value>
|
|
8
|
-
<value>standard</value>
|
|
9
|
-
<value>whitepaper</value>
|
|
10
|
-
<value>redline</value>
|
|
11
|
-
<value>other</value>
|
|
12
|
-
</choice>
|
|
13
|
-
</define>
|
|
14
|
-
<define name="stage">
|
|
15
|
-
<element name="stage">
|
|
16
|
-
<choice>
|
|
17
|
-
<value>draft</value>
|
|
18
|
-
<value>approved</value>
|
|
19
|
-
<value>superseded</value>
|
|
20
|
-
<value>withdrawn</value>
|
|
21
|
-
</choice>
|
|
22
|
-
</element>
|
|
23
|
-
</define>
|
|
24
|
-
<define name="DocumentSubtype">
|
|
25
|
-
<choice>
|
|
26
|
-
<value>amendment</value>
|
|
27
|
-
<value>corrigendum</value>
|
|
28
|
-
<value>erratum</value>
|
|
29
|
-
<value>icap</value>
|
|
30
|
-
<value>document</value>
|
|
31
|
-
<value>industry-connections-report</value>
|
|
32
|
-
<value>industry-affiliate-network</value>
|
|
33
|
-
</choice>
|
|
34
|
-
</define>
|
|
35
|
-
</include>
|
|
36
|
-
<define name="BibDataExtensionType" combine="interleave">
|
|
37
|
-
<optional>
|
|
38
|
-
<ref name="trialuse">
|
|
39
|
-
<a:documentation>Document published for a limited period of time. Can apply to any of the document types
|
|
40
|
-
A Trial-Use standard is only described in the text of the introduction, it is not prominently displayed nor is it fielded data.
|
|
41
|
-
https://standards.ieee.org/about/policies/opman/sect5/</a:documentation>
|
|
42
|
-
</ref>
|
|
43
|
-
</optional>
|
|
44
|
-
<optional>
|
|
45
|
-
<ref name="standard_status">
|
|
46
|
-
<a:documentation>Status of standard: Inactive, Active, Superseded</a:documentation>
|
|
47
|
-
</ref>
|
|
48
|
-
</optional>
|
|
49
|
-
<optional>
|
|
50
|
-
<ref name="standard_modified">
|
|
51
|
-
<a:documentation>Modification status of standard: Draft, Withdrawn, Superseded, Approved, Reserved, Redline</a:documentation>
|
|
52
|
-
</ref>
|
|
53
|
-
</optional>
|
|
54
|
-
<optional>
|
|
55
|
-
<ref name="pubstatus">
|
|
56
|
-
<a:documentation>Publication status of standard: Active, Inactive</a:documentation>
|
|
57
|
-
</ref>
|
|
58
|
-
</optional>
|
|
59
|
-
<optional>
|
|
60
|
-
<!-- On-Hold status of standard: Hold, Publish -->
|
|
61
|
-
<ref name="holdstatus"/>
|
|
62
|
-
</optional>
|
|
63
|
-
<optional>
|
|
64
|
-
<ref name="program">
|
|
65
|
-
<a:documentation>Program under which a white paper was authored</a:documentation>
|
|
66
|
-
</ref>
|
|
67
|
-
</optional>
|
|
68
|
-
</define>
|
|
69
|
-
<define name="standard_status">
|
|
70
|
-
<element name="standard_status">
|
|
71
|
-
<choice>
|
|
72
|
-
<value>Inactive</value>
|
|
73
|
-
<value>Active</value>
|
|
74
|
-
<value>Superseded</value>
|
|
75
|
-
</choice>
|
|
76
|
-
</element>
|
|
77
|
-
</define>
|
|
78
|
-
<define name="standard_modified">
|
|
79
|
-
<element name="standard_modified">
|
|
80
|
-
<choice>
|
|
81
|
-
<value>Draft</value>
|
|
82
|
-
<value>Withdrawn</value>
|
|
83
|
-
<value>Superseded</value>
|
|
84
|
-
<value>Approved</value>
|
|
85
|
-
<value>Reserved</value>
|
|
86
|
-
<value>Redline</value>
|
|
87
|
-
</choice>
|
|
88
|
-
</element>
|
|
89
|
-
</define>
|
|
90
|
-
<define name="pubstatus">
|
|
91
|
-
<element name="pubstatus">
|
|
92
|
-
<choice>
|
|
93
|
-
<value>Active</value>
|
|
94
|
-
<value>Inactive</value>
|
|
95
|
-
</choice>
|
|
96
|
-
</element>
|
|
97
|
-
</define>
|
|
98
|
-
<define name="holdstatus">
|
|
99
|
-
<element name="holdstatus">
|
|
100
|
-
<choice>
|
|
101
|
-
<value>Hold</value>
|
|
102
|
-
<value>Publish</value>
|
|
103
|
-
</choice>
|
|
104
|
-
</element>
|
|
105
|
-
</define>
|
|
106
|
-
<define name="program">
|
|
107
|
-
<element name="program">
|
|
108
|
-
<text/>
|
|
109
|
-
</element>
|
|
110
|
-
</define>
|
|
111
|
-
<define name="BibliographicDateType" combine="choice">
|
|
112
|
-
<choice>
|
|
113
|
-
<value>feedback-ended</value>
|
|
114
|
-
<a:documentation>Date on which feedback on the document must be received by</a:documentation>
|
|
115
|
-
<value>ieee-sasb-approved</value>
|
|
116
|
-
<a:documentation>Date that the document was approved by the IEEE SA Standards Body</a:documentation>
|
|
117
|
-
</choice>
|
|
118
|
-
</define>
|
|
119
|
-
<define name="trialuse">
|
|
120
|
-
<element name="trial-use">
|
|
121
|
-
<data type="boolean"/>
|
|
122
|
-
</element>
|
|
123
|
-
</define>
|
|
124
|
-
</grammar>
|