Class: Dor::DescMetadataDS

Inherits:
ActiveFedora::OmDatastream
  • Object
show all
Defined in:
lib/dor/datastreams/desc_metadata_ds.rb

Constant Summary collapse

MODS_NS =
'http://www.loc.gov/mods/v3'.freeze

Class Method Summary collapse

Class Method Details

.xml_templateObject



34
35
36
37
38
39
40
41
42
43
44
# File 'lib/dor/datastreams/desc_metadata_ds.rb', line 34

def self.xml_template
  Nokogiri::XML::Builder.new do |xml|
    xml.mods(
      'xmlns' => MODS_NS, 'xmlns:xsi' => 'http://www.w3.org/2001/XMLSchema-instance', :version => '3.3',
      'xsi:schemaLocation' => 'http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-3.xsd') {
      xml.titleInfo {
        xml.title
      }
    }
  end.doc
end