Module: IsoDoc::Ogc::Init

Included in:
HtmlConvert, PresentationXMLConvert, WordConvert
Defined in:
lib/isodoc/ogc/init.rb

Instance Method Summary collapse

Instance Method Details

#fileloc(loc) ⇒ Object



23
24
25
# File 'lib/isodoc/ogc/init.rb', line 23

def fileloc(loc)
  File.join(File.dirname(__FILE__), loc)
end

#i18n_init(lang, script, locale, i18nyaml = nil) ⇒ Object



18
19
20
21
# File 'lib/isodoc/ogc/init.rb', line 18

def i18n_init(lang, script, locale, i18nyaml = nil)
  @i18n = I18n.new(lang, script, locale: locale,
                                 i18nyaml: i18nyaml || @i18nyaml)
end

#metadata_init(lang, script, locale, labels) ⇒ Object



9
10
11
# File 'lib/isodoc/ogc/init.rb', line 9

def (lang, script, locale, labels)
  @meta = Metadata.new(lang, script, locale, labels)
end

#ogc_draft_ref?(ref) ⇒ Boolean

Returns:

  • (Boolean)


31
32
33
34
35
36
37
38
# File 'lib/isodoc/ogc/init.rb', line 31

def ogc_draft_ref?(ref)
  return unless ref.at(ns("./docidentifier[@type = 'OGC']"))

  status = ref.at(ns("./status/stage"))&.text or return
  return if %w(approved published deprecated retired).include? status

  true
end

#submittingorgs_pathObject



27
28
29
# File 'lib/isodoc/ogc/init.rb', line 27

def submittingorgs_path
  "//bibdata/contributor[role/@type = 'author']/organization/name"
end

#xref_init(lang, script, _klass, labels, options) ⇒ Object



13
14
15
16
# File 'lib/isodoc/ogc/init.rb', line 13

def xref_init(lang, script, _klass, labels, options)
  html = HtmlConvert.new(language: lang, script: script)
  @xrefs = Xref.new(lang, script, html, labels, options)
end