Sha256: a04522a0cf1ff3ef34369cf780a99024fa6d292500c1d2d74a19c22619c0cc2b
Contents?: true
Size: 1.74 KB
Versions: 1
Compression:
Stored size: 1.74 KB
Contents
require "isodoc" require_relative "init" require_relative "utils" module IsoDoc module Generic class Metadata < IsoDoc::Metadata def initialize(lang, script, labels) super here = File.dirname(__FILE__) default_logo_path = File.expand_path(File.join(here, "html", "logo.jpg")) set(:logo, baselocation(configuration.logo_path) || default_logo_path) unless configuration.logo_paths.nil? set(:logo_paths, Array(configuration.logo_paths).map { |p| baselocation(p) }) end end class << self attr_accessor :_file end def self.inherited( k ) k._file = caller_locations.first.absolute_path end =begin def baselocation(loc) return nil if loc.nil? File.expand_path(File.join(File.dirname( self.class.respond_to?(:_file) ? (self.class::_file || __FILE__) : __FILE__), "..", "..", "..", loc)) end def configuration Metanorma::Generic.configuration end =end def author(isoxml, _out) super tc = isoxml.at(ns("//bibdata/ext/editorialgroup/committee")) set(:tc, tc.text) if tc end def stage_abbr(status) return super unless configuration.stage_abbreviations Hash(configuration.stage_abbreviations).dig(status) end def unpublished(status) stages = configuration&.published_stages || ["published"] !(Array(stages).map { |m| m.downcase }.include? status.downcase) end def ext(isoxml, out) Array(configuration.metadata_extensions).each do |e| b = isoxml&.at(ns("//bibdata/ext/#{e}"))&.text or next set(e.to_sym, b) end end include Utils end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
metanorma-generic-1.7.0 | lib/isodoc/generic/metadata.rb |