Sha256: a187107a4ebf0734f1231ee5d51f38c8e6e22ba33791c15982c1a9f09147db42
Contents?: true
Size: 649 Bytes
Versions: 48
Compression:
Stored size: 649 Bytes
Contents
module Krikri ## # 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 class QdcParser < XmlParser include Krikri::OaiParserHeaders 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 end end
Version data entries
48 entries across 48 versions & 1 rubygems