relaton-cen 1.13.0 → 1.14.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,225 @@
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">
3
+ <include href="biblio-standoc.rng">
4
+ <define name="BibDataExtensionType">
5
+ <optional>
6
+ <attribute name="schema-version"/>
7
+ </optional>
8
+ <ref name="doctype"/>
9
+ <optional>
10
+ <ref name="docsubtype"/>
11
+ </optional>
12
+ <optional>
13
+ <ref name="horizontal"/>
14
+ </optional>
15
+ <ref name="editorialgroup"/>
16
+ <optional>
17
+ <ref name="approvalgroup"/>
18
+ </optional>
19
+ <zeroOrMore>
20
+ <ref name="ics"/>
21
+ </zeroOrMore>
22
+ <ref name="structuredidentifier"/>
23
+ <optional>
24
+ <ref name="stagename"/>
25
+ </optional>
26
+ <optional>
27
+ <ref name="updates_document_type"/>
28
+ </optional>
29
+ </define>
30
+ <define name="bdate">
31
+ <element name="date">
32
+ <attribute name="type">
33
+ <choice>
34
+ <ref name="BibliographicDateType"/>
35
+ <text/>
36
+ </choice>
37
+ </attribute>
38
+ <choice>
39
+ <group>
40
+ <element name="from">
41
+ <ref name="ISO8601Date"/>
42
+ </element>
43
+ <optional>
44
+ <element name="to">
45
+ <ref name="ISO8601Date"/>
46
+ </element>
47
+ </optional>
48
+ </group>
49
+ <element name="on">
50
+ <choice>
51
+ <ref name="ISO8601Date"/>
52
+ <value>--</value>
53
+ <value>–</value>
54
+ </choice>
55
+ </element>
56
+ </choice>
57
+ </element>
58
+ </define>
59
+ <define name="organization">
60
+ <element name="organization">
61
+ <oneOrMore>
62
+ <ref name="orgname"/>
63
+ </oneOrMore>
64
+ <optional>
65
+ <ref name="abbreviation"/>
66
+ </optional>
67
+ <optional>
68
+ <ref name="uri"/>
69
+ </optional>
70
+ <zeroOrMore>
71
+ <ref name="org-identifier"/>
72
+ </zeroOrMore>
73
+ <zeroOrMore>
74
+ <ref name="contact"/>
75
+ </zeroOrMore>
76
+ <optional>
77
+ <ref name="technical-committee"/>
78
+ </optional>
79
+ <optional>
80
+ <ref name="subcommittee"/>
81
+ </optional>
82
+ <optional>
83
+ <ref name="workgroup"/>
84
+ </optional>
85
+ <optional>
86
+ <ref name="secretariat"/>
87
+ </optional>
88
+ </element>
89
+ </define>
90
+ <define name="DocumentType">
91
+ <choice>
92
+ <value>international-standard</value>
93
+ <value>technical-specification</value>
94
+ <value>technical-report</value>
95
+ <value>publicly-available-specification</value>
96
+ <value>international-workshop-agreement</value>
97
+ <value>guide</value>
98
+ <value>amendment</value>
99
+ <value>technical-corrigendum</value>
100
+ <value>directive</value>
101
+ </choice>
102
+ </define>
103
+ <define name="DocumentSubtype">
104
+ <choice>
105
+ <value>specification</value>
106
+ <value>method-of-test</value>
107
+ <value>vocabulary</value>
108
+ <value>code-of-practice</value>
109
+ </choice>
110
+ </define>
111
+ <define name="structuredidentifier">
112
+ <element name="structuredidentifier">
113
+ <optional>
114
+ <attribute name="type"/>
115
+ </optional>
116
+ <group>
117
+ <ref name="documentnumber"/>
118
+ <optional>
119
+ <ref name="tc-documentnumber"/>
120
+ </optional>
121
+ </group>
122
+ </element>
123
+ </define>
124
+ <define name="editorialgroup">
125
+ <element name="editorialgroup">
126
+ <ref name="ISOProjectGroup"/>
127
+ </element>
128
+ </define>
129
+ </include>
130
+ <define name="updates_document_type">
131
+ <element name="updates-document-type">
132
+ <ref name="DocumentType"/>
133
+ </element>
134
+ </define>
135
+ <define name="ISOProjectGroup">
136
+ <zeroOrMore>
137
+ <ref name="agency"/>
138
+ </zeroOrMore>
139
+ <oneOrMore>
140
+ <ref name="technical-committee"/>
141
+ </oneOrMore>
142
+ <zeroOrMore>
143
+ <ref name="subcommittee"/>
144
+ </zeroOrMore>
145
+ <zeroOrMore>
146
+ <ref name="workgroup"/>
147
+ </zeroOrMore>
148
+ <optional>
149
+ <ref name="secretariat"/>
150
+ </optional>
151
+ </define>
152
+ <define name="approvalgroup">
153
+ <element name="approvalgroup">
154
+ <ref name="ISOProjectGroup"/>
155
+ </element>
156
+ </define>
157
+ <define name="agency">
158
+ <element name="agency">
159
+ <text/>
160
+ </element>
161
+ </define>
162
+ <define name="horizontal">
163
+ <element name="horizontal">
164
+ <data type="boolean"/>
165
+ </element>
166
+ </define>
167
+ <define name="documentnumber">
168
+ <element name="project-number">
169
+ <optional>
170
+ <attribute name="part">
171
+ <data type="int"/>
172
+ </attribute>
173
+ </optional>
174
+ <optional>
175
+ <attribute name="subpart">
176
+ <data type="int"/>
177
+ </attribute>
178
+ </optional>
179
+ <optional>
180
+ <attribute name="amendment">
181
+ <data type="int"/>
182
+ </attribute>
183
+ </optional>
184
+ <optional>
185
+ <attribute name="corrigendum">
186
+ <data type="int"/>
187
+ </attribute>
188
+ </optional>
189
+ <optional>
190
+ <attribute name="origyr">
191
+ <ref name="ISO8601Date"/>
192
+ </attribute>
193
+ </optional>
194
+ <text/>
195
+ </element>
196
+ </define>
197
+ <define name="tc-documentnumber">
198
+ <element name="tc-document-number">
199
+ <data type="int"/>
200
+ </element>
201
+ </define>
202
+ <define name="subcommittee">
203
+ <element name="subcommittee">
204
+ <ref name="IsoWorkgroup"/>
205
+ </element>
206
+ </define>
207
+ <define name="workgroup">
208
+ <element name="workgroup">
209
+ <ref name="IsoWorkgroup"/>
210
+ </element>
211
+ </define>
212
+ <define name="secretariat">
213
+ <element name="secretariat">
214
+ <text/>
215
+ </element>
216
+ </define>
217
+ <define name="stagename">
218
+ <element name="stagename">
219
+ <optional>
220
+ <attribute name="abbreviation"/>
221
+ </optional>
222
+ <text/>
223
+ </element>
224
+ </define>
225
+ </grammar>
@@ -0,0 +1,12 @@
1
+ module RelatonCen
2
+ class BibliographicItem < RelatonIsoBib::IsoBibliographicItem
3
+ #
4
+ # Fetches CEN flavor schema version.
5
+ #
6
+ # @return [String] schema version
7
+ #
8
+ def ext_schema
9
+ @ext_schema ||= schema_versions["relaton-model-cen"]
10
+ end
11
+ end
12
+ end
@@ -1,12 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require "mechanize"
4
- require "relaton_iso_bib"
5
- require "relaton_cen/scrapper"
6
- require "relaton_cen/hit_collection"
7
- require "relaton_cen/hit"
8
- require "relaton_cen/xml_parser"
9
-
10
3
  module RelatonCen
11
4
  # Class methods for search Cenelec standards.
12
5
  class CenBibliography
@@ -0,0 +1,11 @@
1
+ module RelatonCen
2
+ class HashConverter < RelatonIsoBib::HashConverter
3
+ class << self
4
+ # @param item_hash [Hash]
5
+ # @return [RelatonCen::BibliographicItem]
6
+ def bib_item(item_hash)
7
+ BibliographicItem.new(**item_hash)
8
+ end
9
+ end
10
+ end
11
+ end
@@ -6,7 +6,7 @@ module RelatonCen
6
6
  attr_writer :fetch
7
7
 
8
8
  # Parse page.
9
- # @return [RelatonBib::BibliographicItem]
9
+ # @return [IsoRelatonBib::IsoBibliographicItem]
10
10
  def fetch
11
11
  @fetch ||= Scrapper.parse_page self
12
12
  end
@@ -1,7 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require "relaton_cen/hit"
4
-
5
3
  module RelatonCen
6
4
  # Page of hit collection.
7
5
  class HitCollection < RelatonBib::HitCollection
@@ -26,13 +26,13 @@ module RelatonCen
26
26
  # @param hash [Hash]
27
27
  # @return [RelatonBib::BibliographicItem]
28
28
  def hash_to_bib(hash)
29
- ::RelatonIsoBib::IsoBibliographicItem.from_hash hash
29
+ ::RelatonCen::BibliographicItem.from_hash hash
30
30
  end
31
31
 
32
32
  # Returns hash of XML grammar
33
33
  # @return [String]
34
34
  def grammar_hash
35
- @grammar_hash ||= ::RelatonIsoBib.grammar_hash
35
+ @grammar_hash ||= ::RelatonCen.grammar_hash
36
36
  end
37
37
  end
38
38
  end
@@ -11,10 +11,10 @@ module RelatonCen
11
11
  class << self
12
12
  # Parse page.
13
13
  # @param hit [RelatonCen::Hit]
14
- # @return [RelatonBib::BibliographicItem]
14
+ # @return [RelatonIsoBib::IsoBibliographicItem]
15
15
  def parse_page(hit) # rubocop:disable Metrics/AbcSize, Metrics/MethodLength
16
16
  doc = hit.hit_collection.agent.get hit.hit[:url]
17
- RelatonIsoBib::IsoBibliographicItem.new(
17
+ BibliographicItem.new(
18
18
  fetched: Date.today.to_s,
19
19
  type: "standard",
20
20
  docid: fetch_docid(hit.hit[:code]),
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RelatonCen
4
- VERSION = "1.13.0"
4
+ VERSION = "1.14.0"
5
5
  end
@@ -1,5 +1,3 @@
1
- require "nokogiri"
2
-
3
1
  module RelatonCen
4
2
  class XMLParser < RelatonIsoBib::XMLParser
5
3
  class << self
@@ -19,10 +17,10 @@ module RelatonCen
19
17
  # end
20
18
 
21
19
  # @param item_hash [Hash]
22
- # @return [RelatonBib::BibliographicItem]
23
- # def bib_item(item_hash)
24
- # RelatonIsoBib::IsoBibliographicItem.new **item_hash
25
- # end
20
+ # @return [RelatonCen::BibliographicItem]
21
+ def bib_item(item_hash)
22
+ BibliographicItem.new(**item_hash)
23
+ end
26
24
  end
27
25
  end
28
26
  end
data/lib/relaton_cen.rb CHANGED
@@ -1,7 +1,16 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require "digest/md5"
4
+ require "mechanize"
5
+ require "nokogiri"
4
6
  require_relative "relaton_cen/version"
7
+ require "relaton_iso_bib"
8
+ require "relaton_cen/biblographic_item"
9
+ require "relaton_cen/scrapper"
10
+ require "relaton_cen/hit_collection"
11
+ require "relaton_cen/hit"
12
+ require "relaton_cen/xml_parser"
13
+ require "relaton_cen/hash_converter"
5
14
  require "relaton_cen/cen_bibliography"
6
15
 
7
16
  module RelatonCen
data/relaton_cen.gemspec CHANGED
@@ -42,7 +42,7 @@ Gem::Specification.new do |spec|
42
42
  spec.add_development_dependency "webmock"
43
43
 
44
44
  spec.add_dependency "mechanize"
45
- spec.add_dependency "relaton-iso-bib", "~> 1.13.0"
45
+ spec.add_dependency "relaton-iso-bib", "~> 1.14.0"
46
46
 
47
47
  # For more information and examples about making a new gem, checkout our
48
48
  # guide at: https://bundler.io/guides/creating_gem.html
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: relaton-cen
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.13.0
4
+ version: 1.14.0
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-08-21 00:00:00.000000000 Z
11
+ date: 2022-12-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: equivalent-xml
@@ -156,14 +156,14 @@ dependencies:
156
156
  requirements:
157
157
  - - "~>"
158
158
  - !ruby/object:Gem::Version
159
- version: 1.13.0
159
+ version: 1.14.0
160
160
  type: :runtime
161
161
  prerelease: false
162
162
  version_requirements: !ruby/object:Gem::Requirement
163
163
  requirements:
164
164
  - - "~>"
165
165
  - !ruby/object:Gem::Version
166
- version: 1.13.0
166
+ version: 1.14.0
167
167
  description: 'RelatonCen: retrieve Cenelec Standards for bibliographic use using the
168
168
  IsoBibliographicItem model'
169
169
  email:
@@ -173,6 +173,7 @@ extensions: []
173
173
  extra_rdoc_files: []
174
174
  files:
175
175
  - ".github/workflows/rake.yml"
176
+ - ".github/workflows/release.yml"
176
177
  - ".gitignore"
177
178
  - ".rspec"
178
179
  - ".rubocop.yml"
@@ -184,13 +185,17 @@ files:
184
185
  - bin/rspec
185
186
  - bin/setup
186
187
  - grammars/basicdoc.rng
188
+ - grammars/biblio-standoc.rng
187
189
  - grammars/biblio.rng
188
- - grammars/isodoc.rng
189
- - grammars/isostandard.rng
190
- - grammars/reqt.rng
190
+ - grammars/relaton-cen-compile.rng
191
+ - grammars/relaton-cen.rng
192
+ - grammars/relaton-iso-compile.rng
193
+ - grammars/relaton-iso.rng
191
194
  - lib/relaton_cen.rb
195
+ - lib/relaton_cen/biblographic_item.rb
192
196
  - lib/relaton_cen/cen_bibliography.rb
193
197
  - lib/relaton_cen/committees.yaml
198
+ - lib/relaton_cen/hash_converter.rb
194
199
  - lib/relaton_cen/hit.rb
195
200
  - lib/relaton_cen/hit_collection.rb
196
201
  - lib/relaton_cen/processor.rb