rfcxml 0.2.0 → 0.2.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/.rubocop_todo.yml +24 -6
- data/Gemfile +6 -4
- data/lib/rfcxml/v3/artwork.rb +3 -3
- data/lib/rfcxml/v3/blockquote.rb +5 -21
- data/lib/rfcxml/v3/dd.rb +5 -23
- data/lib/rfcxml/v3/dt.rb +5 -12
- data/lib/rfcxml/v3/figure.rb +5 -7
- data/lib/rfcxml/v3/li.rb +5 -23
- data/lib/rfcxml/v3/rfc.rb +4 -4
- data/lib/rfcxml/v3/sourcecode.rb +2 -2
- data/lib/rfcxml/v3/td.rb +5 -21
- data/lib/rfcxml/v3/xref.rb +2 -1
- data/lib/rfcxml/version.rb +1 -1
- data/rfcxml.gemspec +2 -16
- metadata +8 -92
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5b11cbfa392f124f60b2e407491746679edd9adce04e41efc4a93e57dc00b958
|
4
|
+
data.tar.gz: a613b687d3808dc83d7b75840129b2e594041e7a8c811adda836aa0b547af501
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5f499a434f14334a0a4a85c036426e4ff4444007393fbe5815a07c7f73e0e504df84d43ade669bebd7aa8dd89922c8177fd0fd1c985dec9a05c031648533c16c
|
7
|
+
data.tar.gz: 2e36d85702ec42c68e4c5b4fd0d9393e59b0ad6baef6952e299b0b53bb934b5f647242a2baefce7b3f3380b7cdbef073cca6740b0f4fda2acb9387c45ab5515b
|
data/.rubocop_todo.yml
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# This configuration was generated by
|
2
2
|
# `rubocop --auto-gen-config`
|
3
|
-
# on 2025-01-
|
3
|
+
# on 2025-01-11 09:55:13 UTC using RuboCop version 1.70.0.
|
4
4
|
# The point is for the user to remove these configuration records
|
5
5
|
# one by one as the offenses are removed from the code base.
|
6
6
|
# Note that changes in the inspected code, or installation of new
|
@@ -13,8 +13,26 @@ Gemspec/RequiredRubyVersion:
|
|
13
13
|
Exclude:
|
14
14
|
- 'rfcxml.gemspec'
|
15
15
|
|
16
|
-
# Offense count:
|
17
|
-
#
|
18
|
-
#
|
19
|
-
|
20
|
-
|
16
|
+
# Offense count: 1
|
17
|
+
# This cop supports safe autocorrection (--autocorrect).
|
18
|
+
# Configuration parameters: EnforcedStyle, IndentationWidth.
|
19
|
+
# SupportedStyles: with_first_element, with_fixed_indentation
|
20
|
+
Layout/ArrayAlignment:
|
21
|
+
Exclude:
|
22
|
+
- 'lib/rfcxml/v3/dt.rb'
|
23
|
+
|
24
|
+
# Offense count: 2
|
25
|
+
# This cop supports safe autocorrection (--autocorrect).
|
26
|
+
# Configuration parameters: Max, AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, AllowedPatterns, SplitStrings.
|
27
|
+
# URISchemes: http, https
|
28
|
+
Layout/LineLength:
|
29
|
+
Exclude:
|
30
|
+
- 'lib/rfcxml/v3/dt.rb'
|
31
|
+
- 'lib/rfcxml/v3/li.rb'
|
32
|
+
|
33
|
+
# Offense count: 1
|
34
|
+
# This cop supports safe autocorrection (--autocorrect).
|
35
|
+
# Configuration parameters: AllowInHeredoc.
|
36
|
+
Layout/TrailingWhitespace:
|
37
|
+
Exclude:
|
38
|
+
- 'lib/rfcxml/v3/dt.rb'
|
data/Gemfile
CHANGED
@@ -2,11 +2,13 @@
|
|
2
2
|
|
3
3
|
source "https://rubygems.org"
|
4
4
|
|
5
|
-
# Specify your gem's dependencies in
|
5
|
+
# Specify your gem's dependencies in genericode.gemspec
|
6
6
|
gemspec
|
7
7
|
|
8
|
+
gem "equivalent-xml"
|
9
|
+
gem "nokogiri"
|
8
10
|
gem "rake", "~> 13.0"
|
9
|
-
|
10
11
|
gem "rspec", "~> 3.0"
|
11
|
-
|
12
|
-
gem "rubocop"
|
12
|
+
gem "rubocop"
|
13
|
+
gem "rubocop-performance"
|
14
|
+
gem "xml-c14n"
|
data/lib/rfcxml/v3/artwork.rb
CHANGED
@@ -23,11 +23,11 @@ module Rfcxml
|
|
23
23
|
map_content to: :content
|
24
24
|
map_attribute "anchor", to: :anchor
|
25
25
|
map_attribute "pn", to: :pn
|
26
|
-
map_attribute "name", to: :name
|
27
|
-
map_attribute "type", to: :type
|
26
|
+
map_attribute "name", to: :name, value_map: { to: { empty: :empty } }
|
27
|
+
map_attribute "type", to: :type, value_map: { to: { empty: :empty } }
|
28
28
|
map_attribute "src", to: :src
|
29
29
|
map_attribute "align", to: :align
|
30
|
-
map_attribute "alt", to: :alt
|
30
|
+
map_attribute "alt", to: :alt, value_map: { to: { empty: :empty } }
|
31
31
|
map_attribute "width", to: :width
|
32
32
|
map_attribute "height", to: :height
|
33
33
|
map_attribute "originalSrc", to: :original_src
|
data/lib/rfcxml/v3/blockquote.rb
CHANGED
@@ -65,27 +65,11 @@ module Rfcxml
|
|
65
65
|
map_attribute "pn", to: :pn
|
66
66
|
map_attribute "cite", to: :cite
|
67
67
|
map_attribute "quotedFrom", to: :quoted_from
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
map_element "sourcecode", to: :sourcecode
|
74
|
-
map_element "t", to: :t
|
75
|
-
map_element "ul", to: :ul
|
76
|
-
map_element "bcp14", to: :bcp14
|
77
|
-
map_element "br", to: :br
|
78
|
-
map_element "cref", to: :cref
|
79
|
-
map_element "em", to: :em
|
80
|
-
map_element "eref", to: :eref
|
81
|
-
map_element "iref", to: :iref
|
82
|
-
map_element "relref", to: :relref
|
83
|
-
map_element "strong", to: :strong
|
84
|
-
map_element "sub", to: :sub
|
85
|
-
map_element "sup", to: :sup
|
86
|
-
map_element "tt", to: :tt
|
87
|
-
map_element "u", to: :u
|
88
|
-
map_element "xref", to: :xref
|
68
|
+
|
69
|
+
%w[artset artwork dl figure ol sourcecode t ul bcp14 br cref em eref
|
70
|
+
iref relref strong sub sup tt u xref].each do |element|
|
71
|
+
map_element element, to: element.to_sym
|
72
|
+
end
|
89
73
|
end
|
90
74
|
end
|
91
75
|
end
|
data/lib/rfcxml/v3/dd.rb
CHANGED
@@ -63,29 +63,11 @@ module Rfcxml
|
|
63
63
|
map_content to: :content
|
64
64
|
map_attribute "anchor", to: :anchor
|
65
65
|
map_attribute "pn", to: :pn
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
map_element "ol", to: :ol
|
72
|
-
map_element "sourcecode", to: :sourcecode
|
73
|
-
map_element "t", to: :t
|
74
|
-
map_element "table", to: :table
|
75
|
-
map_element "ul", to: :ul
|
76
|
-
map_element "bcp14", to: :bcp14
|
77
|
-
map_element "br", to: :br
|
78
|
-
map_element "cref", to: :cref
|
79
|
-
map_element "em", to: :em
|
80
|
-
map_element "eref", to: :eref
|
81
|
-
map_element "iref", to: :iref
|
82
|
-
map_element "relref", to: :relref
|
83
|
-
map_element "strong", to: :strong
|
84
|
-
map_element "sub", to: :sub
|
85
|
-
map_element "sup", to: :sup
|
86
|
-
map_element "tt", to: :tt
|
87
|
-
map_element "u", to: :u
|
88
|
-
map_element "xref", to: :xref
|
66
|
+
|
67
|
+
%w[artset artwork aside dl figure ol sourcecode t table ul bcp14 br
|
68
|
+
cref em eref iref relref strong sub sup tt u xref].each do |element|
|
69
|
+
map_element element, to: element.to_sym
|
70
|
+
end
|
89
71
|
end
|
90
72
|
end
|
91
73
|
end
|
data/lib/rfcxml/v3/dt.rb
CHANGED
@@ -40,18 +40,11 @@ module Rfcxml
|
|
40
40
|
map_content to: :content
|
41
41
|
map_attribute "anchor", to: :anchor
|
42
42
|
map_attribute "pn", to: :pn
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
map_element "iref", to: :iref
|
49
|
-
map_element "relref", to: :relref
|
50
|
-
map_element "strong", to: :strong
|
51
|
-
map_element "sub", to: :sub
|
52
|
-
map_element "sup", to: :sup
|
53
|
-
map_element "tt", to: :tt
|
54
|
-
map_element "xref", to: :xref
|
43
|
+
|
44
|
+
%w[bcp14 br cref em eref iref relref strong sub sup tt
|
45
|
+
xref].each do |element|
|
46
|
+
map_element element, to: element.to_sym
|
47
|
+
end
|
55
48
|
end
|
56
49
|
end
|
57
50
|
end
|
data/lib/rfcxml/v3/figure.rb
CHANGED
@@ -44,13 +44,11 @@ module Rfcxml
|
|
44
44
|
map_attribute "alt", to: :alt
|
45
45
|
map_attribute "width", to: :width
|
46
46
|
map_attribute "height", to: :height
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
map_element "sourcecode", to: :sourcecode
|
53
|
-
map_element "postamble", to: :postamble
|
47
|
+
|
48
|
+
%w[name iref preamble artset artwork sourcecode
|
49
|
+
postamble].each do |element|
|
50
|
+
map_element element, to: element.to_sym
|
51
|
+
end
|
54
52
|
end
|
55
53
|
end
|
56
54
|
end
|
data/lib/rfcxml/v3/li.rb
CHANGED
@@ -68,29 +68,11 @@ module Rfcxml
|
|
68
68
|
map_attribute "anchor", to: :anchor
|
69
69
|
map_attribute "derivedCounter", to: :derived_counter
|
70
70
|
map_attribute "pn", to: :pn
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
map_element "ol", to: :ol
|
77
|
-
map_element "sourcecode", to: :sourcecode
|
78
|
-
map_element "t", to: :t
|
79
|
-
map_element "table", to: :table
|
80
|
-
map_element "ul", to: :ul
|
81
|
-
map_element "bcp14", to: :bcp14
|
82
|
-
map_element "br", to: :br
|
83
|
-
map_element "cref", to: :cref
|
84
|
-
map_element "em", to: :em
|
85
|
-
map_element "eref", to: :eref
|
86
|
-
map_element "iref", to: :iref
|
87
|
-
map_element "relref", to: :relref
|
88
|
-
map_element "strong", to: :strong
|
89
|
-
map_element "sub", to: :sub
|
90
|
-
map_element "sup", to: :sup
|
91
|
-
map_element "tt", to: :tt
|
92
|
-
map_element "u", to: :u
|
93
|
-
map_element "xref", to: :xref
|
71
|
+
|
72
|
+
%w[artset artwork blockquote dl figure ol sourcecode t table ul bcp14
|
73
|
+
br cref em eref iref relref strong sub sup tt u xref].each do |element|
|
74
|
+
map_element element, to: element.to_sym
|
75
|
+
end
|
94
76
|
end
|
95
77
|
end
|
96
78
|
end
|
data/lib/rfcxml/v3/rfc.rb
CHANGED
@@ -60,10 +60,10 @@ module Rfcxml
|
|
60
60
|
map_attribute "scripts", to: :scripts
|
61
61
|
map_attribute "expiresDate", to: :expires_date
|
62
62
|
map_attribute "lang", to: :lang, prefix: :xml
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
63
|
+
|
64
|
+
%w[link front middle back].each do |element|
|
65
|
+
map_element element, to: element.to_sym
|
66
|
+
end
|
67
67
|
end
|
68
68
|
end
|
69
69
|
end
|
data/lib/rfcxml/v3/sourcecode.rb
CHANGED
@@ -20,8 +20,8 @@ module Rfcxml
|
|
20
20
|
map_content to: :content
|
21
21
|
map_attribute "anchor", to: :anchor
|
22
22
|
map_attribute "pn", to: :pn
|
23
|
-
map_attribute "name", to: :name
|
24
|
-
map_attribute "type", to: :type
|
23
|
+
map_attribute "name", to: :name, value_map: { to: { empty: :empty } }
|
24
|
+
map_attribute "type", to: :type, value_map: { to: { empty: :empty } }
|
25
25
|
map_attribute "markers", to: :markers
|
26
26
|
map_attribute "src", to: :src
|
27
27
|
map_attribute "originalSrc", to: :original_src
|
data/lib/rfcxml/v3/td.rb
CHANGED
@@ -62,27 +62,11 @@ module Rfcxml
|
|
62
62
|
map_attribute "colspan", to: :colspan
|
63
63
|
map_attribute "rowspan", to: :rowspan
|
64
64
|
map_attribute "align", to: :align
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
map_element "sourcecode", to: :sourcecode
|
71
|
-
map_element "t", to: :t
|
72
|
-
map_element "ul", to: :ul
|
73
|
-
map_element "bcp14", to: :bcp14
|
74
|
-
map_element "br", to: :br
|
75
|
-
map_element "cref", to: :cref
|
76
|
-
map_element "em", to: :em
|
77
|
-
map_element "eref", to: :eref
|
78
|
-
map_element "iref", to: :iref
|
79
|
-
map_element "relref", to: :relref
|
80
|
-
map_element "strong", to: :strong
|
81
|
-
map_element "sub", to: :sub
|
82
|
-
map_element "sup", to: :sup
|
83
|
-
map_element "tt", to: :tt
|
84
|
-
map_element "u", to: :u
|
85
|
-
map_element "xref", to: :xref
|
65
|
+
|
66
|
+
%w[artset artwork dl figure ol sourcecode t ul bcp14 br cref em eref
|
67
|
+
iref relref strong sub sup tt u xref].each do |element|
|
68
|
+
map_element element, to: element.to_sym
|
69
|
+
end
|
86
70
|
end
|
87
71
|
end
|
88
72
|
end
|
data/lib/rfcxml/v3/xref.rb
CHANGED
@@ -25,7 +25,8 @@ module Rfcxml
|
|
25
25
|
map_attribute "target", to: :target
|
26
26
|
map_attribute "pageno", to: :pageno
|
27
27
|
map_attribute "format", to: :format
|
28
|
-
map_attribute "derivedContent", to: :derived_content
|
28
|
+
map_attribute "derivedContent", to: :derived_content,
|
29
|
+
value_map: { to: { empty: :empty } }
|
29
30
|
map_attribute "sectionFormat", to: :section_format
|
30
31
|
map_attribute "section", to: :section
|
31
32
|
map_attribute "relative", to: :relative
|
data/lib/rfcxml/version.rb
CHANGED
data/rfcxml.gemspec
CHANGED
@@ -17,9 +17,6 @@ Gem::Specification.new do |spec|
|
|
17
17
|
spec.metadata["source_code_uri"] = spec.homepage
|
18
18
|
spec.metadata["changelog_uri"] = "https://github.com/metanorma/rfcxml/releases"
|
19
19
|
|
20
|
-
# Specify which files should be added to the gem when it is released.
|
21
|
-
# The `git ls-files -z` loads the files in the RubyGem
|
22
|
-
# that have been added into git.
|
23
20
|
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
24
21
|
`git ls-files -z`
|
25
22
|
.split("\x0")
|
@@ -31,17 +28,6 @@ Gem::Specification.new do |spec|
|
|
31
28
|
|
32
29
|
spec.required_ruby_version = ">= 2.7.0"
|
33
30
|
|
34
|
-
spec.
|
35
|
-
spec.
|
36
|
-
|
37
|
-
spec.add_development_dependency "equivalent-xml"
|
38
|
-
spec.add_development_dependency "rake"
|
39
|
-
spec.add_development_dependency "rspec"
|
40
|
-
spec.add_development_dependency "rubocop"
|
41
|
-
spec.add_development_dependency "rubocop-performance"
|
42
|
-
spec.add_development_dependency "xml-c14n"
|
43
|
-
|
44
|
-
spec.metadata["homepage_uri"] = spec.homepage
|
45
|
-
spec.metadata["source_code_uri"] = spec.homepage
|
46
|
-
spec.metadata["changelog_uri"] = spec.homepage
|
31
|
+
spec.add_dependency "lutaml-model", "~> 0.7"
|
32
|
+
spec.add_dependency "nokogiri"
|
47
33
|
end
|
metadata
CHANGED
@@ -1,29 +1,29 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rfcxml
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
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-03-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: lutaml-model
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0'
|
19
|
+
version: '0.7'
|
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: '0'
|
26
|
+
version: '0.7'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: nokogiri
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -38,90 +38,6 @@ dependencies:
|
|
38
38
|
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
|
-
- !ruby/object:Gem::Dependency
|
42
|
-
name: equivalent-xml
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
44
|
-
requirements:
|
45
|
-
- - ">="
|
46
|
-
- !ruby/object:Gem::Version
|
47
|
-
version: '0'
|
48
|
-
type: :development
|
49
|
-
prerelease: false
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
51
|
-
requirements:
|
52
|
-
- - ">="
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: '0'
|
55
|
-
- !ruby/object:Gem::Dependency
|
56
|
-
name: rake
|
57
|
-
requirement: !ruby/object:Gem::Requirement
|
58
|
-
requirements:
|
59
|
-
- - ">="
|
60
|
-
- !ruby/object:Gem::Version
|
61
|
-
version: '0'
|
62
|
-
type: :development
|
63
|
-
prerelease: false
|
64
|
-
version_requirements: !ruby/object:Gem::Requirement
|
65
|
-
requirements:
|
66
|
-
- - ">="
|
67
|
-
- !ruby/object:Gem::Version
|
68
|
-
version: '0'
|
69
|
-
- !ruby/object:Gem::Dependency
|
70
|
-
name: rspec
|
71
|
-
requirement: !ruby/object:Gem::Requirement
|
72
|
-
requirements:
|
73
|
-
- - ">="
|
74
|
-
- !ruby/object:Gem::Version
|
75
|
-
version: '0'
|
76
|
-
type: :development
|
77
|
-
prerelease: false
|
78
|
-
version_requirements: !ruby/object:Gem::Requirement
|
79
|
-
requirements:
|
80
|
-
- - ">="
|
81
|
-
- !ruby/object:Gem::Version
|
82
|
-
version: '0'
|
83
|
-
- !ruby/object:Gem::Dependency
|
84
|
-
name: rubocop
|
85
|
-
requirement: !ruby/object:Gem::Requirement
|
86
|
-
requirements:
|
87
|
-
- - ">="
|
88
|
-
- !ruby/object:Gem::Version
|
89
|
-
version: '0'
|
90
|
-
type: :development
|
91
|
-
prerelease: false
|
92
|
-
version_requirements: !ruby/object:Gem::Requirement
|
93
|
-
requirements:
|
94
|
-
- - ">="
|
95
|
-
- !ruby/object:Gem::Version
|
96
|
-
version: '0'
|
97
|
-
- !ruby/object:Gem::Dependency
|
98
|
-
name: rubocop-performance
|
99
|
-
requirement: !ruby/object:Gem::Requirement
|
100
|
-
requirements:
|
101
|
-
- - ">="
|
102
|
-
- !ruby/object:Gem::Version
|
103
|
-
version: '0'
|
104
|
-
type: :development
|
105
|
-
prerelease: false
|
106
|
-
version_requirements: !ruby/object:Gem::Requirement
|
107
|
-
requirements:
|
108
|
-
- - ">="
|
109
|
-
- !ruby/object:Gem::Version
|
110
|
-
version: '0'
|
111
|
-
- !ruby/object:Gem::Dependency
|
112
|
-
name: xml-c14n
|
113
|
-
requirement: !ruby/object:Gem::Requirement
|
114
|
-
requirements:
|
115
|
-
- - ">="
|
116
|
-
- !ruby/object:Gem::Version
|
117
|
-
version: '0'
|
118
|
-
type: :development
|
119
|
-
prerelease: false
|
120
|
-
version_requirements: !ruby/object:Gem::Requirement
|
121
|
-
requirements:
|
122
|
-
- - ">="
|
123
|
-
- !ruby/object:Gem::Version
|
124
|
-
version: '0'
|
125
41
|
description: IETF RFC XML parser and generator
|
126
42
|
email:
|
127
43
|
- open.source@ribose.com'
|
@@ -241,7 +157,7 @@ licenses:
|
|
241
157
|
metadata:
|
242
158
|
homepage_uri: https://github.com/metanorma/rfcxml
|
243
159
|
source_code_uri: https://github.com/metanorma/rfcxml
|
244
|
-
changelog_uri: https://github.com/metanorma/rfcxml
|
160
|
+
changelog_uri: https://github.com/metanorma/rfcxml/releases
|
245
161
|
post_install_message:
|
246
162
|
rdoc_options: []
|
247
163
|
require_paths:
|
@@ -257,7 +173,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
257
173
|
- !ruby/object:Gem::Version
|
258
174
|
version: '0'
|
259
175
|
requirements: []
|
260
|
-
rubygems_version: 3.
|
176
|
+
rubygems_version: 3.5.22
|
261
177
|
signing_key:
|
262
178
|
specification_version: 4
|
263
179
|
summary: IETF RFC XML parser and generator
|