metanorma-ieee 1.4.2 → 1.4.4
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/html2doc/ieee/notes.rb +5 -4
- data/lib/html2doc/ieee_wp/lists.rb +2 -1
- data/lib/isodoc/ieee/html/htmlstyle.css +7 -0
- data/lib/isodoc/ieee/ieee.amendment.xsl +309 -74
- data/lib/isodoc/ieee/ieee.standard.xsl +309 -74
- data/lib/isodoc/ieee/presentation_concepts.rb +167 -0
- data/lib/isodoc/ieee/presentation_terms.rb +35 -341
- data/lib/isodoc/ieee/presentation_xml_convert.rb +14 -11
- data/lib/isodoc/ieee/word_convert.rb +1 -1
- data/lib/isodoc/ieee/word_wp_convert.rb +1 -1
- data/lib/isodoc/ieee/xref.rb +8 -15
- data/lib/metanorma/ieee/basicdoc.rng +48 -35
- data/lib/metanorma/ieee/biblio-standoc.rng +37 -7
- data/lib/metanorma/ieee/biblio.rng +30 -18
- data/lib/metanorma/ieee/converter.rb +3 -2
- data/lib/metanorma/ieee/front.rb +1 -2
- data/lib/metanorma/ieee/ieee.rng +0 -32
- data/lib/metanorma/ieee/isodoc.rng +126 -80
- data/lib/metanorma/ieee/relaton-ieee.rng +34 -37
- data/lib/metanorma/ieee/reqt.rng +7 -6
- data/lib/metanorma/ieee/validate.rb +2 -4
- data/lib/metanorma/ieee/version.rb +1 -1
- metadata +3 -2
@@ -1,24 +1,27 @@
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<!--
|
3
|
-
instantiations of this grammar may replace leaf strings
|
4
|
-
with more elaborated types; e.g. title (text) replaced with
|
5
|
-
title-main, title-intro, title-part; type replaced with
|
6
|
-
enum.
|
7
|
-
|
8
|
-
some renaming at leaf nodes is permissible
|
9
|
-
|
10
|
-
obligations can change both from optional to mandatory,
|
11
|
-
and from mandatory to optional; optional elements may
|
12
|
-
be omitted; freely positioned alternatives may be replaced
|
13
|
-
with strict ordering
|
14
|
-
|
15
|
-
DO NOT introduce a namespace here. We do not want a distinct namespace
|
16
|
-
for these elements, and a distinct namespace for any grammar inheriting
|
17
|
-
these elements; we just want one namespace for any child grammars
|
18
|
-
of this.
|
19
|
-
-->
|
20
|
-
<!-- VERSION v2.0.0 -->
|
21
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
|
+
<!-- VERSION v2.0.3 -->
|
4
|
+
|
5
|
+
<!--
|
6
|
+
ALERT: cannot have root comments, because of https://github.com/metanorma/metanorma/issues/437
|
7
|
+
|
8
|
+
instantiations of this grammar may replace leaf strings
|
9
|
+
with more elaborated types; e.g. title (text) replaced with
|
10
|
+
title-main, title-intro, title-part; type replaced with
|
11
|
+
enum.
|
12
|
+
|
13
|
+
some renaming at leaf nodes is permissible
|
14
|
+
|
15
|
+
obligations can change both from optional to mandatory,
|
16
|
+
and from mandatory to optional; optional elements may
|
17
|
+
be omitted; freely positioned alternatives may be replaced
|
18
|
+
with strict ordering
|
19
|
+
|
20
|
+
DO NOT introduce a namespace here. We do not want a distinct namespace
|
21
|
+
for these elements, and a distinct namespace for any grammar inheriting
|
22
|
+
these elements; we just want one namespace for any child grammars
|
23
|
+
of this.
|
24
|
+
-->
|
22
25
|
<include href="reqt.rng"/>
|
23
26
|
<include href="basicdoc.rng">
|
24
27
|
<define name="amend">
|
@@ -33,15 +36,6 @@
|
|
33
36
|
</zeroOrMore>
|
34
37
|
</element>
|
35
38
|
</define>
|
36
|
-
<define name="fn" combine="interleave">
|
37
|
-
<optional>
|
38
|
-
<attribute name="hiddenref">
|
39
|
-
<a:documentation>If true, number the footnote as normal, but suppress display of the footnote reference in the document body.
|
40
|
-
This is done if the footnote reference is already presented in some other form, e.g. within a figure image.</a:documentation>
|
41
|
-
<data type="boolean"/>
|
42
|
-
</attribute>
|
43
|
-
</optional>
|
44
|
-
</define>
|
45
39
|
<define name="index-primary">
|
46
40
|
<element name="primary">
|
47
41
|
<oneOrMore>
|
@@ -423,6 +417,13 @@ normative or informative references, some split references into sections organiz
|
|
423
417
|
</oneOrMore>
|
424
418
|
</choice>
|
425
419
|
</define>
|
420
|
+
<define name="TrAttributes">
|
421
|
+
<optional>
|
422
|
+
<attribute name="style">
|
423
|
+
<a:documentation>CSS style: only background-color supported</a:documentation>
|
424
|
+
</attribute>
|
425
|
+
</optional>
|
426
|
+
</define>
|
426
427
|
<define name="table-note">
|
427
428
|
<element name="note">
|
428
429
|
<ref name="OptionalId"/>
|
@@ -485,6 +486,22 @@ gives an explicit page orientation</a:documentation>
|
|
485
486
|
</define>
|
486
487
|
</include>
|
487
488
|
<!-- end overrides -->
|
489
|
+
<define name="FnAttributes" combine="interleave">
|
490
|
+
<optional>
|
491
|
+
<attribute name="hiddenref">
|
492
|
+
<a:documentation>If true, number the footnote as normal, but suppress display of the footnote reference in the document body.
|
493
|
+
This is done if the footnote reference is already presented in some other form, e.g. within a figure image.</a:documentation>
|
494
|
+
<data type="boolean"/>
|
495
|
+
</attribute>
|
496
|
+
</optional>
|
497
|
+
</define>
|
498
|
+
<define name="TdAttributes" combine="interleave">
|
499
|
+
<optional>
|
500
|
+
<attribute name="style">
|
501
|
+
<a:documentation>CSS style: only background-color supported</a:documentation>
|
502
|
+
</attribute>
|
503
|
+
</optional>
|
504
|
+
</define>
|
488
505
|
<define name="NumberingAttributes" combine="interleave">
|
489
506
|
<optional>
|
490
507
|
<attribute name="number">
|
@@ -663,6 +680,13 @@ titlecase, or lowercase</a:documentation>
|
|
663
680
|
</attribute>
|
664
681
|
</optional>
|
665
682
|
</define>
|
683
|
+
<define name="Basic-Section-Attributes" combine="interleave">
|
684
|
+
<optional>
|
685
|
+
<attribute name="obligation">
|
686
|
+
<ref name="ObligationType"/>
|
687
|
+
</attribute>
|
688
|
+
</optional>
|
689
|
+
</define>
|
666
690
|
<define name="ObligationType">
|
667
691
|
<a:documentation>The force of a clause in a standard document: whether it has normative or informative effect</a:documentation>
|
668
692
|
<choice>
|
@@ -1177,13 +1201,6 @@ numbers</a:documentation>
|
|
1177
1201
|
</attribute>
|
1178
1202
|
</optional>
|
1179
1203
|
</define>
|
1180
|
-
<define name="Basic-Section-Attributes" combine="interleave">
|
1181
|
-
<optional>
|
1182
|
-
<attribute name="obligation">
|
1183
|
-
<ref name="ObligationType"/>
|
1184
|
-
</attribute>
|
1185
|
-
</optional>
|
1186
|
-
</define>
|
1187
1204
|
<define name="reference-clause">
|
1188
1205
|
<a:documentation>References clause with recursive nesting</a:documentation>
|
1189
1206
|
<element name="clause">
|
@@ -1224,7 +1241,7 @@ numbers</a:documentation>
|
|
1224
1241
|
</choice>
|
1225
1242
|
</attribute>
|
1226
1243
|
<attribute name="flavor">
|
1227
|
-
<a:documentation>Metanorma flavor, indicating SDO whose
|
1244
|
+
<a:documentation>Metanorma flavor, indicating SDO whose requirements the realisation aligns to</a:documentation>
|
1228
1245
|
</attribute>
|
1229
1246
|
</define>
|
1230
1247
|
<define name="standard-document">
|
@@ -1234,6 +1251,11 @@ numbers</a:documentation>
|
|
1234
1251
|
<ref name="bibdata">
|
1235
1252
|
<a:documentation>Bibliographic description of the document itself, expressed in the Relaton model</a:documentation>
|
1236
1253
|
</ref>
|
1254
|
+
<zeroOrMore>
|
1255
|
+
<ref name="termdocsource">
|
1256
|
+
<a:documentation>Source for term definitions in the document</a:documentation>
|
1257
|
+
</ref>
|
1258
|
+
</zeroOrMore>
|
1237
1259
|
<optional>
|
1238
1260
|
<ref name="misccontainer">
|
1239
1261
|
<a:documentation>Extension point for extraneous elements that need to be added to standards document as data</a:documentation>
|
@@ -1244,36 +1266,44 @@ numbers</a:documentation>
|
|
1244
1266
|
<a:documentation>Front matter that is repeated at the start of documents issued from an SDO, with content not specific to the document</a:documentation>
|
1245
1267
|
</ref>
|
1246
1268
|
</optional>
|
1269
|
+
<ref name="DocumentBody"/>
|
1247
1270
|
<optional>
|
1248
|
-
<ref name="
|
1249
|
-
<a:documentation>
|
1250
|
-
</ref>
|
1251
|
-
</optional>
|
1252
|
-
<ref name="sections">
|
1253
|
-
<a:documentation>Main body of document</a:documentation>
|
1254
|
-
</ref>
|
1255
|
-
<zeroOrMore>
|
1256
|
-
<ref name="annex">
|
1257
|
-
<a:documentation>Annex sections</a:documentation>
|
1258
|
-
</ref>
|
1259
|
-
</zeroOrMore>
|
1260
|
-
<optional>
|
1261
|
-
<ref name="bibliography">
|
1262
|
-
<a:documentation>Bibliographic sections</a:documentation>
|
1263
|
-
</ref>
|
1264
|
-
</optional>
|
1265
|
-
<zeroOrMore>
|
1266
|
-
<ref name="indexsect">
|
1267
|
-
<a:documentation>Index of the document</a:documentation>
|
1268
|
-
</ref>
|
1269
|
-
</zeroOrMore>
|
1270
|
-
<optional>
|
1271
|
-
<ref name="colophon">
|
1272
|
-
<a:documentation>Colophon or postface material</a:documentation>
|
1271
|
+
<ref name="review-container">
|
1272
|
+
<a:documentation>Annotations to the document</a:documentation>
|
1273
1273
|
</ref>
|
1274
1274
|
</optional>
|
1275
1275
|
</element>
|
1276
1276
|
</define>
|
1277
|
+
<define name="DocumentBody">
|
1278
|
+
<optional>
|
1279
|
+
<ref name="preface">
|
1280
|
+
<a:documentation>Prefatory sections</a:documentation>
|
1281
|
+
</ref>
|
1282
|
+
</optional>
|
1283
|
+
<ref name="sections">
|
1284
|
+
<a:documentation>Main body of document</a:documentation>
|
1285
|
+
</ref>
|
1286
|
+
<zeroOrMore>
|
1287
|
+
<ref name="annex">
|
1288
|
+
<a:documentation>Annex sections</a:documentation>
|
1289
|
+
</ref>
|
1290
|
+
</zeroOrMore>
|
1291
|
+
<optional>
|
1292
|
+
<ref name="bibliography">
|
1293
|
+
<a:documentation>Bibliographic sections</a:documentation>
|
1294
|
+
</ref>
|
1295
|
+
</optional>
|
1296
|
+
<zeroOrMore>
|
1297
|
+
<ref name="indexsect">
|
1298
|
+
<a:documentation>Index of the document</a:documentation>
|
1299
|
+
</ref>
|
1300
|
+
</zeroOrMore>
|
1301
|
+
<optional>
|
1302
|
+
<ref name="colophon">
|
1303
|
+
<a:documentation>Colophon or postface material</a:documentation>
|
1304
|
+
</ref>
|
1305
|
+
</optional>
|
1306
|
+
</define>
|
1277
1307
|
<define name="misccontainer">
|
1278
1308
|
<a:documentation>Elements added to metanorma-extension are open-ended, and constitute source data</a:documentation>
|
1279
1309
|
<element name="metanorma-extension">
|
@@ -1282,6 +1312,13 @@ numbers</a:documentation>
|
|
1282
1312
|
</oneOrMore>
|
1283
1313
|
</element>
|
1284
1314
|
</define>
|
1315
|
+
<define name="review-container">
|
1316
|
+
<element name="review-container">
|
1317
|
+
<oneOrMore>
|
1318
|
+
<ref name="review"/>
|
1319
|
+
</oneOrMore>
|
1320
|
+
</element>
|
1321
|
+
</define>
|
1285
1322
|
<define name="preface">
|
1286
1323
|
<element name="preface">
|
1287
1324
|
<oneOrMore>
|
@@ -1581,9 +1618,7 @@ used in document amendments</a:documentation>
|
|
1581
1618
|
<define name="term">
|
1582
1619
|
<a:documentation>Terminology entry with its definition</a:documentation>
|
1583
1620
|
<element name="term">
|
1584
|
-
<ref name="
|
1585
|
-
<ref name="LocalizedStringAttributes"/>
|
1586
|
-
<ref name="BlockAttributes"/>
|
1621
|
+
<ref name="TermAttributes"/>
|
1587
1622
|
<oneOrMore>
|
1588
1623
|
<ref name="preferred">
|
1589
1624
|
<a:documentation>One or more names under which the term being defined is canonically known</a:documentation>
|
@@ -1635,6 +1670,11 @@ used in document amendments</a:documentation>
|
|
1635
1670
|
</ref>
|
1636
1671
|
</element>
|
1637
1672
|
</define>
|
1673
|
+
<define name="TermAttributes">
|
1674
|
+
<ref name="OptionalId"/>
|
1675
|
+
<ref name="LocalizedStringAttributes"/>
|
1676
|
+
<ref name="BlockAttributes"/>
|
1677
|
+
</define>
|
1638
1678
|
<define name="preferred">
|
1639
1679
|
<element name="preferred">
|
1640
1680
|
<ref name="Designation"/>
|
@@ -2296,26 +2336,32 @@ links within an SVG file, so that the SVG file can hyperlink to anchors within t
|
|
2296
2336
|
</element>
|
2297
2337
|
</define>
|
2298
2338
|
<define name="ul_li">
|
2299
|
-
<a:documentation>
|
2339
|
+
<a:documentation>Unordered list item for standards documents</a:documentation>
|
2300
2340
|
<element name="li">
|
2301
2341
|
<ref name="OptionalId"/>
|
2302
|
-
<
|
2303
|
-
|
2304
|
-
<a:documentation>Include a checkbox for the list item</a:documentation>
|
2305
|
-
<data type="boolean"/>
|
2306
|
-
</attribute>
|
2307
|
-
</optional>
|
2308
|
-
<optional>
|
2309
|
-
<attribute name="checkedcheckbox">
|
2310
|
-
<a:documentation>Check the checkbox for the list item</a:documentation>
|
2311
|
-
<data type="boolean"/>
|
2312
|
-
</attribute>
|
2313
|
-
</optional>
|
2314
|
-
<oneOrMore>
|
2315
|
-
<ref name="BasicBlock"/>
|
2316
|
-
</oneOrMore>
|
2342
|
+
<ref name="UlLiAttributes"/>
|
2343
|
+
<ref name="UlLiBody"/>
|
2317
2344
|
</element>
|
2318
2345
|
</define>
|
2346
|
+
<define name="UlLiBody">
|
2347
|
+
<oneOrMore>
|
2348
|
+
<ref name="BasicBlock"/>
|
2349
|
+
</oneOrMore>
|
2350
|
+
</define>
|
2351
|
+
<define name="UlLiAttributes">
|
2352
|
+
<optional>
|
2353
|
+
<attribute name="uncheckedcheckbox">
|
2354
|
+
<a:documentation>Include a checkbox for the list item</a:documentation>
|
2355
|
+
<data type="boolean"/>
|
2356
|
+
</attribute>
|
2357
|
+
</optional>
|
2358
|
+
<optional>
|
2359
|
+
<attribute name="checkedcheckbox">
|
2360
|
+
<a:documentation>Check the checkbox for the list item</a:documentation>
|
2361
|
+
<data type="boolean"/>
|
2362
|
+
</attribute>
|
2363
|
+
</optional>
|
2364
|
+
</define>
|
2319
2365
|
<define name="floating-title">
|
2320
2366
|
<a:documentation>A floating title, outside of the clause hierarchy of the document</a:documentation>
|
2321
2367
|
<element name="floating-title">
|
@@ -1,5 +1,5 @@
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<grammar xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
|
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
3
|
<include href="biblio-standoc.rng">
|
4
4
|
<define name="DocumentType">
|
5
5
|
<choice>
|
@@ -44,43 +44,40 @@
|
|
44
44
|
<value>erratum</value>
|
45
45
|
</choice>
|
46
46
|
</define>
|
47
|
-
<define name="BibDataExtensionType">
|
48
|
-
<optional>
|
49
|
-
<attribute name="schema-version"/>
|
50
|
-
</optional>
|
51
|
-
<optional>
|
52
|
-
<ref name="doctype"/>
|
53
|
-
</optional>
|
54
|
-
<optional>
|
55
|
-
<ref name="docsubtype"/>
|
56
|
-
</optional>
|
57
|
-
<ref name="flavor"/>
|
58
|
-
<optional>
|
59
|
-
<ref name="trialuse"/>
|
60
|
-
</optional>
|
61
|
-
<optional>
|
62
|
-
<ref name="editorialgroup"/>
|
63
|
-
</optional>
|
64
|
-
<zeroOrMore>
|
65
|
-
<ref name="ics"/>
|
66
|
-
</zeroOrMore>
|
67
|
-
<optional>
|
68
|
-
<ref name="standard_status"/>
|
69
|
-
</optional>
|
70
|
-
<optional>
|
71
|
-
<ref name="standard_modified"/>
|
72
|
-
</optional>
|
73
|
-
<optional>
|
74
|
-
<ref name="pubstatus"/>
|
75
|
-
</optional>
|
76
|
-
<optional>
|
77
|
-
<ref name="holdstatus"/>
|
78
|
-
</optional>
|
79
|
-
<optional>
|
80
|
-
<ref name="program"/>
|
81
|
-
</optional>
|
82
|
-
</define>
|
83
47
|
</include>
|
48
|
+
<define name="BibDataExtensionType" combine="interleave">
|
49
|
+
<optional>
|
50
|
+
<ref name="trialuse">
|
51
|
+
<a:documentation>Document published for a limited period of time. Can apply to any of the document types
|
52
|
+
A Trial-Use standard is only described in the text of the introduction, it is not prominently displayed nor is it fielded data.
|
53
|
+
https://standards.ieee.org/about/policies/opman/sect5/</a:documentation>
|
54
|
+
</ref>
|
55
|
+
</optional>
|
56
|
+
<optional>
|
57
|
+
<ref name="standard_status">
|
58
|
+
<a:documentation>Status of standard: Inactive, Active, Superseded</a:documentation>
|
59
|
+
</ref>
|
60
|
+
</optional>
|
61
|
+
<optional>
|
62
|
+
<ref name="standard_modified">
|
63
|
+
<a:documentation>Modification status of standard: Draft, Withdrawn, Superseded, Approved, Reserved, Redline</a:documentation>
|
64
|
+
</ref>
|
65
|
+
</optional>
|
66
|
+
<optional>
|
67
|
+
<ref name="pubstatus">
|
68
|
+
<a:documentation>Publication status of standard: Active, Inactive</a:documentation>
|
69
|
+
</ref>
|
70
|
+
</optional>
|
71
|
+
<optional>
|
72
|
+
<!-- On-Hold status of standard: Hold, Publish -->
|
73
|
+
<ref name="holdstatus"/>
|
74
|
+
</optional>
|
75
|
+
<optional>
|
76
|
+
<ref name="program">
|
77
|
+
<a:documentation>Program under which a white paper was authored</a:documentation>
|
78
|
+
</ref>
|
79
|
+
</optional>
|
80
|
+
</define>
|
84
81
|
<define name="standard_status">
|
85
82
|
<element name="standard_status">
|
86
83
|
<choice>
|
data/lib/metanorma/ieee/reqt.rng
CHANGED
@@ -1,5 +1,11 @@
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
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
|
+
<define name="requirement">
|
4
|
+
<element name="requirement">
|
5
|
+
<ref name="RequirementType"/>
|
6
|
+
</element>
|
7
|
+
</define>
|
8
|
+
<!-- ALERT: cannot have root comments, because of https://github.com/metanorma/metanorma/issues/437 -->
|
3
9
|
<!--
|
4
10
|
Presupposes isodoc.rnc, is included in it
|
5
11
|
include "isodoc.rnc" { }
|
@@ -7,14 +13,9 @@
|
|
7
13
|
This is the Metanorma default provisions model; it is overridden by other provisions models,
|
8
14
|
such as Modspec
|
9
15
|
-->
|
10
|
-
<define name="
|
16
|
+
<define name="recommendation">
|
11
17
|
<a:documentation>Specification of an attribute of a subject that is required.
|
12
18
|
NOTE: A requirement can contain other requirements</a:documentation>
|
13
|
-
<element name="requirement">
|
14
|
-
<ref name="RequirementType"/>
|
15
|
-
</element>
|
16
|
-
</define>
|
17
|
-
<define name="recommendation">
|
18
19
|
<a:documentation>Specification of an attribute of a subject that is recommended</a:documentation>
|
19
20
|
<element name="recommendation">
|
20
21
|
<ref name="RequirementType"/>
|
@@ -4,10 +4,8 @@ require_relative "validate_style"
|
|
4
4
|
module Metanorma
|
5
5
|
module Ieee
|
6
6
|
class Converter < Standoc::Converter
|
7
|
-
def
|
8
|
-
|
9
|
-
schema_validate(formattedstr_strip(doc.dup),
|
10
|
-
File.join(File.dirname(__FILE__), "ieee.rng"))
|
7
|
+
def schema_file
|
8
|
+
"ieee.rng"
|
11
9
|
end
|
12
10
|
|
13
11
|
def content_validate(doc)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: metanorma-ieee
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.4.
|
4
|
+
version: 1.4.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ribose Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-04-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: metanorma-standoc
|
@@ -313,6 +313,7 @@ files:
|
|
313
313
|
- lib/isodoc/ieee/metadata.rb
|
314
314
|
- lib/isodoc/ieee/pdf_convert.rb
|
315
315
|
- lib/isodoc/ieee/presentation_bibdata.rb
|
316
|
+
- lib/isodoc/ieee/presentation_concepts.rb
|
316
317
|
- lib/isodoc/ieee/presentation_ref.rb
|
317
318
|
- lib/isodoc/ieee/presentation_terms.rb
|
318
319
|
- lib/isodoc/ieee/presentation_xml_convert.rb
|