Sha256: ce20c3070872a8d56400df6edef644a7bd58d539d9e8bea1bf74f19fdce483eb
Contents?: true
Size: 801 Bytes
Versions: 56
Compression:
Stored size: 801 Bytes
Contents
require "active-fedora" require "cul_hydra/om" require 'uri' require 'rdf' module Cul module Hydra module Models AGGREGATOR_TYPE = RDF::CUL.Aggregator RESOURCE_TYPE = RDF::CUL.Resource MEMBER_OF = RDF::CUL.memberOf MEMBER_SPARQL = <<-SPARQL SELECT ?pid WHERE { ?pid <http://purl.oclc.org/NET/CUL/memberOf> <info:fedora/%PID%> } SPARQL MEMBER_ITQL = <<-ITQL select $pid from <#ri> where $pid <http://purl.oclc.org/NET/CUL/memberOf> <info:fedora/%PID%> ITQL autoload :Aggregator, 'cul/hydra/models/aggregator' autoload :Common, 'cul/hydra/models/common' autoload :ImageResource, 'cul/hydra/models/image_resource' autoload :LinkableResources, 'cul/hydra/models/linkable_resources' autoload :Resource, 'cul/hydra/models/resource' end end end
Version data entries
56 entries across 56 versions & 1 rubygems