Skip to content

Commit

Permalink
Merge pull request #17 from geolexica/recognize_modification_notes_fr…
Browse files Browse the repository at this point in the history
…om_authoritative_source

Recognize modification notes from authoritative source
  • Loading branch information
HassanAkbar authored Nov 23, 2023
2 parents fed1838 + ec9fed0 commit cffcb03
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/jekyll/geolexica/filters.rb
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def display_authoritative_source(input)
modification = input["modification"]
return source unless modification

"#{source}, modified -- #{modification}"
"#{source}, #{input["status"] || "modified"} -- #{modification}"
end

def concepts_url(base_url)
Expand Down
9 changes: 8 additions & 1 deletion lib/jekyll/geolexica/glossary.rb
Original file line number Diff line number Diff line change
Expand Up @@ -83,14 +83,21 @@ def normalize_sources(concept)
concept['sources'] ||= []

authoritative_sources.each do |authoritative_source|
if authoritative_source['relationship']
status = authoritative_source['relationship']['type']
modification = authoritative_source['relationship']['modification']
end

concept['sources'] << {
"status" => status,
"modification" => modification,
"origin" => {
'ref' => authoritative_source['ref'],
'clause' => authoritative_source['clause'],
'link' => authoritative_source['link'],
}.compact,
'type' => 'authoritative'
}
}.compact
end
end

Expand Down

0 comments on commit cffcb03

Please sign in to comment.