jekyll-geolexica 1.8.5 → 1.8.6
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/jekyll/geolexica/configuration.rb +11 -0
- data/lib/jekyll/geolexica/glossary.rb +24 -1
- data/lib/jekyll/geolexica/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 953781d4af25bb0fddf2369620b0eb6f80dbe78b5ed0513a2ccb936cb4766fcd
|
4
|
+
data.tar.gz: 92a2f81efd01b51138ad95e3c2a3821688684ec2bc544f188b558999b35d91d8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9eb581e4730853549c2560c406370a849638db0019f3da67d3893a14e9e356bf44d4ce9e0253cf87ffaac85b4edf523ee639c0129236010c284bd952a695ebeb
|
7
|
+
data.tar.gz: 17c3fabebc23db2294405d7ee8914dd0bd895759fc33c582345ade2807a5c85660fa6c4af44abda90642d0154b0f3789d0784d3c6f8f94bed966a4ddfc3ee881
|
@@ -9,6 +9,17 @@ module Jekyll
|
|
9
9
|
File.expand_path(glob_string, site.source)
|
10
10
|
end
|
11
11
|
|
12
|
+
def localized_concepts_path
|
13
|
+
path = glossary_config["localized_concepts_path"]
|
14
|
+
return nil if path.nil? || path.empty?
|
15
|
+
|
16
|
+
File.expand_path(path, site.source)
|
17
|
+
end
|
18
|
+
|
19
|
+
def glossary_format
|
20
|
+
glossary_config["format"]
|
21
|
+
end
|
22
|
+
|
12
23
|
def images_path
|
13
24
|
glossary_path = glossary_config["glossary_path"]
|
14
25
|
return nil if glossary_path.nil? || glossary_path.empty?
|
@@ -40,7 +40,13 @@ module Jekyll
|
|
40
40
|
def load_concept(concept_file_path)
|
41
41
|
Jekyll.logger.debug("Geolexica:",
|
42
42
|
"reading concept from file #{concept_file_path}")
|
43
|
-
|
43
|
+
|
44
|
+
concept_hash = if glossary_format == "paneron"
|
45
|
+
read_paneron_concept_file(concept_file_path)
|
46
|
+
else
|
47
|
+
read_concept_file(concept_file_path)
|
48
|
+
end
|
49
|
+
|
44
50
|
preprocess_concept_hash(concept_hash)
|
45
51
|
store Concept.new(concept_hash)
|
46
52
|
rescue
|
@@ -54,6 +60,23 @@ module Jekyll
|
|
54
60
|
YAML.safe_load(File.read(path), permitted_classes: [Time])
|
55
61
|
end
|
56
62
|
|
63
|
+
def read_paneron_concept_file(path)
|
64
|
+
safe_load_options = { permitted_classes: [Date, Time] }
|
65
|
+
concept = YAML.safe_load(File.read(path), **safe_load_options)
|
66
|
+
concept["termid"] = concept["data"]["identifier"]
|
67
|
+
|
68
|
+
concept["data"]["localizedConcepts"].each do |lang, local_concept_id|
|
69
|
+
localized_concept_path = File.join(localized_concepts_path, "#{local_concept_id}.yaml")
|
70
|
+
concept[lang] = YAML.safe_load(File.read(localized_concept_path), **safe_load_options)["data"]
|
71
|
+
|
72
|
+
if lang == "eng" && concept[lang]
|
73
|
+
concept["term"] = concept[lang]["terms"].first["designation"]
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
concept
|
78
|
+
end
|
79
|
+
|
57
80
|
# Does nothing, but some sites may replace this method.
|
58
81
|
def preprocess_concept_hash(concept_hash)
|
59
82
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-geolexica
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.8.
|
4
|
+
version: 1.8.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ribose Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-04-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|