relaton-ogc 1.16.1 → 1.16.2
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/relaton_ogc/data_fetcher.rb +1 -1
- data/lib/relaton_ogc/ogc_bibliography.rb +7 -7
- data/lib/relaton_ogc/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fa6ff540d50e236a8e1aae32805840c0e24a4d17b7b1038b2357472ea74ff65a
|
|
4
|
+
data.tar.gz: ee011e12cc9aab1b0e0928e13d46627a4b0772cb34e107a401c8d06c3445e27e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cc2f32138c399f241989b6288ca4682d55067d14e05ddb7a236119976e4ec725ac5f5362a431364c1704aab503a27112b5665592d3aa67563615380d06acfee1
|
|
7
|
+
data.tar.gz: 6db6033ad4d01acaedf66fe1bf6ae8fe7ab23127bd690e86e38849897b05961e0c5669a04921db398336d29b3cec1df4cc30ed307905bb944e28776eea32e916
|
|
@@ -72,7 +72,7 @@ module RelatonOgc
|
|
|
72
72
|
get_data do |etag, json|
|
|
73
73
|
no_errors = true
|
|
74
74
|
json.each { |_, hit| fetch_doc(hit) || no_errors = false }
|
|
75
|
-
warn "
|
|
75
|
+
warn "WARNING Duplicated documents: #{@dupids.to_a.join(', ')}" if @dupids.any?
|
|
76
76
|
self.etag = etag if no_errors
|
|
77
77
|
index.save
|
|
78
78
|
end
|
|
@@ -23,7 +23,7 @@ module RelatonOgc
|
|
|
23
23
|
result = bib_search_filter(code, year, opts) || (return nil)
|
|
24
24
|
ret = bib_results_filter(result, year)
|
|
25
25
|
if ret[:ret]
|
|
26
|
-
warn "
|
|
26
|
+
Util.warn "(#{code}) found `#{ret[:ret].docidentifier.first.id}`"
|
|
27
27
|
ret[:ret]
|
|
28
28
|
else
|
|
29
29
|
fetch_ref_err(code, year, ret[:years])
|
|
@@ -33,7 +33,7 @@ module RelatonOgc
|
|
|
33
33
|
private
|
|
34
34
|
|
|
35
35
|
def bib_search_filter(code, year, opts)
|
|
36
|
-
warn "
|
|
36
|
+
Util.warn "(#{code}) fetching..."
|
|
37
37
|
search(code, year, opts)
|
|
38
38
|
end
|
|
39
39
|
|
|
@@ -67,12 +67,12 @@ module RelatonOgc
|
|
|
67
67
|
# @param year [String]
|
|
68
68
|
# @param missed_years [Array<Strig>]
|
|
69
69
|
def fetch_ref_err(code, year, missed_years)
|
|
70
|
-
id = year ? "
|
|
71
|
-
warn "
|
|
72
|
-
|
|
70
|
+
id = year ? "`#{code}` year `#{year}`" : "#`{code}`"
|
|
71
|
+
Util.warn "WARNING: no match found online for #{id}. " \
|
|
72
|
+
"The code must be exactly like it is on the standards website."
|
|
73
73
|
unless missed_years.empty?
|
|
74
|
-
warn "
|
|
75
|
-
|
|
74
|
+
Util.warn "There was no match for `#{year}`, though there " \
|
|
75
|
+
"were matches found for `#{missed_years.join('`, `')}`."
|
|
76
76
|
end
|
|
77
77
|
nil
|
|
78
78
|
end
|
data/lib/relaton_ogc/version.rb
CHANGED