Sha256: c38a978268749434c6fc0457af659198dbe59be2601e9e972999f959304826c9

Contents?: true

Size: 839 Bytes

Versions: 2

Compression:

Stored size: 839 Bytes

Contents

xml.instruct! :xml, :version=>"1.0"
xml.tag! "OAI-PMH", :xmlns => "http://www.openarchives.org/OAI/2.0/",
  "xmlns:xsi" => "http://www.w3.org/2001/XMLSchema-instance",
  "xsi:schemaLocation" => "http://www.openarchives.org/OAI/2.0/ http://www.openarchives.org/OAI/2.0/OAI-PMH.xsd" do
  xml.responseDate Time.zone.now.utc.iso8601
  xml.request manifestations_url(format: :oai), :verb => "ListMetadataFormats"
  xml.ListMetadataFormats do
    xml.metadataFormat do
      xml.metadataPrefix "oai_dc"
      xml.schema "http://www.openarchives.org/OAI/2.0/oai_dc.xsd"
      xml.metadataNamespace "http://www.openarchives.org/OAI/2.0/oai_dc/"
    end
    xml.metadataFormat do
      xml.metadataPrefix "junii2"
      xml.schema "http://irdb.nii.ac.jp/oai/junii2-3-1.xsd"
      xml.metadataNamespace "http://irdb.nii.ac.jp/oai"
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
enju_oai-0.1.0.pre19 app/views/manifestations/list_metadata_formats.oai.builder
enju_oai-0.1.0.pre18 app/views/manifestations/list_metadata_formats.oai.builder