Sha256: a06f38d3a86bdcb0d207f915e58945d52efec7b0070a997d1cbd2f319657c710
Contents?: true
Size: 1.6 KB
Versions: 7
Compression:
Stored size: 1.6 KB
Contents
# ISO <<Class>> CI_OnlineResource # writer output in XML # History: # Stan Smith 2013-08-14 original script # Stan Smith 2014-07-08 modify require statements to function in RubyGem structure # Stan Smith 2014-08-14 added protocol to onlineResource require 'code_onlineFunction' class CI_OnlineResource def initialize(xml) @xml = xml end def writeXML(hOlResource) # classes used olFunctionCode = CI_OnLineFunctionCode.new(@xml) @xml.tag! 'gmd:CI_OnlineResource' do # online resource - link - required s = hOlResource[:olResURI] if s.nil? @xml.tag!('gmd:linkage',{'gco:nilReason'=>'missing'}) else @xml.tag!('gmd:linkage') do @xml.tag!('gmd:URL',s) end end # online resource - protocol s = hOlResource[:olResProtocol] if !s.nil? @xml.tag!('gmd:protocol') do @xml.tag!('gco:CharacterString',s) end elsif $showAllTags @xml.tag!('gmd:protocol') end # online resource - link name s = hOlResource[:olResName] if !s.nil? @xml.tag!('gmd:name') do @xml.tag!('gco:CharacterString',s) end elsif $showAllTags @xml.tag!('gmd:name') end # online resource - link description s = hOlResource[:olResDesc] if !s.nil? @xml.tag!('gmd:description') do @xml.tag!('gco:CharacterString',s) end elsif $showAllTags @xml.tag!('gmd:description') end # online resource - link function - CI_OnLineFunctionCode s = hOlResource[:olResFunction] if !s.nil? @xml.tag!('gmd:function') do olFunctionCode.writeXML(s) end elsif $showAllTags @xml.tag!('gmd:function') end end end end
Version data entries
7 entries across 7 versions & 1 rubygems