Method: IsoDoc::PresentationXMLConvert#designation

Defined in:
lib/isodoc/presentation_function/concepts.rb

#designation(docxml) ⇒ Object



130
131
132
133
134
135
136
137
138
# File 'lib/isodoc/presentation_function/concepts.rb', line 130

def designation(docxml)
  docxml.xpath(ns("//related")).each { |p| related_designation1(p) }
  docxml.xpath(ns("//preferred | //admitted | //deprecates"))
    .each { |p| designation1(p) }
  docxml.xpath(ns("//fmt-preferred | //fmt-admitted | //fmt-deprecates"))
    .each { |t| merge_second_preferred(t) }
  docxml.xpath(ns("//fmt-deprecates")).each { |d| deprecates(d) }
  docxml.xpath(ns("//fmt-admitted")).each { |d| admits(d) }
end