class Krikri::QdcParser

A Qualified Dublin Core parser. Uses XML parser with a root path to match the metadata path as harvested. The default root_path is the element used by CONTENTdm; this can be overridden as with all Krikri::XmlParsers, at the time of instantiation.

@see Krikri::XmlParser

Public Class Methods

new(record, root_path = '//oai_qdc:qualifieddc', ns = {}) click to toggle source
Calls superclass method
# File lib/krikri/parsers/qdc_parser.rb, line 12
def initialize(record, root_path = '//oai_qdc:qualifieddc', ns = {})
  ns = {
    qdc: 'http://epubs.cclrc.ac.uk/xmlns/qdc/',
    oai_qdc: 'http://worldcat.org/xmlschemas/qdc-1.0/'
  }.merge(ns)
  super(record, root_path, ns)
end