Sha256: 868d1cecc0be29fa186009db17b3c82a92da5e423dc7867fe22464ea1eb363bc

Contents?: true

Size: 1.48 KB

Versions: 7

Compression:

Stored size: 1.48 KB

Contents

module Dor
  class DescMetadataDS < ActiveFedora::OmDatastream
    include SolrDocHelper

    MODS_NS = 'http://www.loc.gov/mods/v3'
    set_terminology do |t|
      t.root :path => 'mods', :xmlns => MODS_NS, :index_as => [:not_searchable]
      t.originInfo  :index_as => [:not_searchable] do
        t.publisher :index_as => [:searchable, :displayable]
        t.place     :index_as => [:not_searchable] do
          t.placeTerm :attributes => {:type => 'text'}, :index_as => [:searchable, :displayable]
        end
      end
      t.title_info(:path => 'titleInfo') {
        t.main_title(:index_as => [:facetable], :path => 'title', :label => 'title') {
          t.main_title_lang(:path => {:attribute => 'xml:lang'})
        }
      }
      t.language {
        t.languageTerm :attributes => {:type => 'code', :authority => 'iso639-2b'}, :index_as => [:not_searchable]
      }
      t.coordinates :index_as => [:searchable]
      t.extent      :index_as => [:searchable]
      t.scale       :index_as => [:searchable]
      t.topic       :index_as => [:searchable]
      t.abstract    :index_as => [:displayable]
    end

    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

  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
dor-services-4.25.1 lib/dor/datastreams/desc_metadata_ds.rb
dor-services-4.25.0 lib/dor/datastreams/desc_metadata_ds.rb
dor-services-4.24.0 lib/dor/datastreams/desc_metadata_ds.rb
dor-services-4.23.0 lib/dor/datastreams/desc_metadata_ds.rb
dor-services-4.22.6 lib/dor/datastreams/desc_metadata_ds.rb
dor-services-4.22.5 lib/dor/datastreams/desc_metadata_ds.rb
dor-services-4.22.4 lib/dor/datastreams/desc_metadata_ds.rb