cul_hydra 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/app/assets/images/cul_hydra/crystal/binary.png +0 -0
- data/app/assets/images/cul_hydra/crystal/document.png +0 -0
- data/app/assets/images/cul_hydra/crystal/file.png +0 -0
- data/app/assets/images/cul_hydra/crystal/file_broken.png +0 -0
- data/app/assets/images/cul_hydra/crystal/folder_documents.png +0 -0
- data/app/assets/images/cul_hydra/crystal/folder_images.png +0 -0
- data/app/assets/images/cul_hydra/crystal/folder_music.png +0 -0
- data/app/assets/images/cul_hydra/crystal/folder_sound.png +0 -0
- data/app/assets/images/cul_hydra/crystal/folder_video.png +0 -0
- data/app/assets/images/cul_hydra/crystal/kmultiple.png +0 -0
- data/app/assets/images/cul_hydra/crystal/knotify.png +0 -0
- data/app/assets/images/cul_hydra/crystal/mp3.png +0 -0
- data/app/assets/images/cul_hydra/crystal/multimedia2.png +0 -0
- data/app/assets/images/cul_hydra/crystal/video.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/application.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/code.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/css.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/db.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/directory.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/doc.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/file.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/film.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/flash.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/folder_open.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/html.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/java.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/linux.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/music.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/pdf.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/php.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/picture.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/ppt.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/psd.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/ruby.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/script.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/spinner.gif +0 -0
- data/app/assets/images/cul_hydra/filesystem/txt.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/xls.png +0 -0
- data/app/assets/images/cul_hydra/filesystem/zip.png +0 -0
- data/app/controllers/concerns/cul/hydra/application_id_behavior.rb +43 -0
- data/app/controllers/concerns/cul/hydra/controller.rb +22 -0
- data/app/controllers/concerns/cul/hydra/resolver.rb +69 -0
- data/app/controllers/concerns/cul/hydra/thumbnails.rb +62 -0
- data/app/helpers/cul/hydra/ore_proxies_helper_behavior.rb +119 -0
- data/app/helpers/cul/hydra/struct_metadata_helper_behavior.rb +89 -0
- data/app/models/bag_aggregator.rb +7 -0
- data/app/models/concept.rb +23 -0
- data/app/models/concerns/cul/hydra/models.rb +24 -0
- data/app/models/concerns/cul/hydra/models/aggregator.rb +121 -0
- data/app/models/concerns/cul/hydra/models/common.rb +220 -0
- data/app/models/concerns/cul/hydra/models/image_resource.rb +106 -0
- data/app/models/concerns/cul/hydra/models/linkable_resources.rb +108 -0
- data/app/models/concerns/cul/hydra/models/resource.rb +87 -0
- data/app/models/concerns/nfo/common.rb +17 -0
- data/app/models/concerns/nfo/file_data_object.rb +10 -0
- data/app/models/concerns/nfo/folder.rb +10 -0
- data/app/models/concerns/nie/information_element.rb +10 -0
- data/app/models/concerns/ore/proxy.rb +124 -0
- data/app/models/concerns/rdf/cul.rb +77 -0
- data/app/models/concerns/rdf/fcrepo3.rb +360 -0
- data/app/models/concerns/rdf/nfo.rb +807 -0
- data/app/models/concerns/rdf/nie.rb +338 -0
- data/app/models/concerns/rdf/olo.rb +100 -0
- data/app/models/concerns/rdf/ore.rb +101 -0
- data/app/models/concerns/rdf/pimo.rb +605 -0
- data/app/models/concerns/rdf/sc.rb +47 -0
- data/app/models/concerns/sc/canvas.rb +12 -0
- data/app/models/concerns/sc/sequence.rb +21 -0
- data/app/models/content_aggregator.rb +3 -0
- data/app/models/cul/hydra/datastreams/dc_metadata.rb +107 -0
- data/app/models/cul/hydra/datastreams/mods_document.rb +195 -0
- data/app/models/cul/hydra/datastreams/struct_metadata.rb +176 -0
- data/app/models/dc_document.rb +39 -0
- data/app/models/generic_aggregator.rb +68 -0
- data/app/models/generic_object.rb +18 -0
- data/app/models/generic_resource.rb +210 -0
- data/app/models/jp2_image_aggregator.rb +34 -0
- data/app/models/mets_structured_aggregator.rb +18 -0
- data/app/models/resource.rb +78 -0
- data/app/models/resource_aggregator.rb +22 -0
- data/app/models/static_audio_aggregator.rb +12 -0
- data/app/models/static_image_aggregator.rb +32 -0
- data/bin/rails +12 -0
- data/config/fedora.yml +17 -0
- data/config/jetty.yml +6 -0
- data/config/locales/ldpd_hydra.en.yml +125 -0
- data/config/predicate_mappings.yml +79 -0
- data/config/solr.yml +8 -0
- data/config/solr_mappings.yml +26 -0
- data/config/solr_value_maps.yml +41 -0
- data/config/subs.yml +17 -0
- data/fixtures/cmodels/ldpd_ADLMetadata.xml +56 -0
- data/fixtures/cmodels/ldpd_AESMetadata.xml +56 -0
- data/fixtures/cmodels/ldpd_BagAggregator.xml +70 -0
- data/fixtures/cmodels/ldpd_Concept.xml +69 -0
- data/fixtures/cmodels/ldpd_ContentAggregator.xml +70 -0
- data/fixtures/cmodels/ldpd_DynamicAggregator.xml +56 -0
- data/fixtures/cmodels/ldpd_JP2ImageAggregator.xml +60 -0
- data/fixtures/cmodels/ldpd_METSMetadata.xml +56 -0
- data/fixtures/cmodels/ldpd_METSStructuredAggregator.xml +53 -0
- data/fixtures/cmodels/ldpd_MODSMetadata.xml +73 -0
- data/fixtures/cmodels/ldpd_MostRecent.xml +46 -0
- data/fixtures/cmodels/ldpd_PTIFImageAggregator.xml +63 -0
- data/fixtures/cmodels/ldpd_Resource.xml +72 -0
- data/fixtures/cmodels/ldpd_RestrictedResource.xml +54 -0
- data/fixtures/cmodels/ldpd_Since.xml +62 -0
- data/fixtures/cmodels/ldpd_StaticAudioAggregator.xml +54 -0
- data/fixtures/cmodels/ldpd_StaticImageAggregator.xml +71 -0
- data/fixtures/cmodels/ldpd_htest.xml +54 -0
- data/fixtures/cmodels/ldpd_nullbind.xml +63 -0
- data/fixtures/cmodels/ldpd_sdef.Aggregator.xml +71 -0
- data/fixtures/cmodels/ldpd_sdef.Core.xml +48 -0
- data/fixtures/cmodels/ldpd_sdef.Image.xml +47 -0
- data/fixtures/cmodels/ldpd_sdef.Metadata.xml +62 -0
- data/fixtures/cmodels/ldpd_sdef.Resource.xml +76 -0
- data/fixtures/cmodels/ldpd_sdef.ZoomingImage.xml +46 -0
- data/fixtures/cmodels/ldpd_sdep.BagAggregator.xml +160 -0
- data/fixtures/cmodels/ldpd_sdep.BagAggregatorCore.xml +221 -0
- data/fixtures/cmodels/ldpd_sdep.ContentAggregatorCore.xml +221 -0
- data/fixtures/cmodels/ldpd_sdep.DynamicAggregator.xml +171 -0
- data/fixtures/cmodels/ldpd_sdep.DynamicAggregatorCore.xml +215 -0
- data/fixtures/cmodels/ldpd_sdep.JP2Image.xml +220 -0
- data/fixtures/cmodels/ldpd_sdep.JP2ImageAggregator.xml +167 -0
- data/fixtures/cmodels/ldpd_sdep.JP2ImageCore.xml +229 -0
- data/fixtures/cmodels/ldpd_sdep.MODSMetadata.xml +158 -0
- data/fixtures/cmodels/ldpd_sdep.MODSMetadataCore.xml +227 -0
- data/fixtures/cmodels/ldpd_sdep.PTIFImage.xml +222 -0
- data/fixtures/cmodels/ldpd_sdep.PTIFImageAggregator.xml +167 -0
- data/fixtures/cmodels/ldpd_sdep.PTIFImageCore.xml +215 -0
- data/fixtures/cmodels/ldpd_sdep.StaticImage.xml +210 -0
- data/fixtures/cmodels/ldpd_sdep.StaticImageAggregator.xml +186 -0
- data/fixtures/cmodels/ldpd_sdep.StaticImageCore.xml +220 -0
- data/fixtures/cmodels/ore_Proxy.xml +50 -0
- data/fixtures/spec/BLOB/test001.jpg +0 -0
- data/fixtures/spec/CUL_DC/dc.xml +5 -0
- data/fixtures/spec/CUL_MODS/mods-001.xml +25 -0
- data/fixtures/spec/CUL_MODS/mods-all.xml +65 -0
- data/fixtures/spec/CUL_MODS/mods-bad-repo.xml +7 -0
- data/fixtures/spec/CUL_MODS/mods-date-created-range.xml +7 -0
- data/fixtures/spec/CUL_MODS/mods-date-created-single.xml +6 -0
- data/fixtures/spec/CUL_MODS/mods-date-end-with-all-u-characters.xml +7 -0
- data/fixtures/spec/CUL_MODS/mods-date-issued-range.xml +7 -0
- data/fixtures/spec/CUL_MODS/mods-date-issued-single.xml +6 -0
- data/fixtures/spec/CUL_MODS/mods-date-other-range.xml +7 -0
- data/fixtures/spec/CUL_MODS/mods-date-other-single.xml +6 -0
- data/fixtures/spec/CUL_MODS/mods-date-range-short-years.xml +7 -0
- data/fixtures/spec/CUL_MODS/mods-date-start-with-all-u-characters.xml +7 -0
- data/fixtures/spec/CUL_MODS/mods-dates-with-all-u-characters.xml +7 -0
- data/fixtures/spec/CUL_MODS/mods-dates-with-some-u-characters.xml +7 -0
- data/fixtures/spec/CUL_MODS/mods-item.xml +31 -0
- data/fixtures/spec/CUL_MODS/mods-names.xml +35 -0
- data/fixtures/spec/CUL_MODS/mods-notes.xml +8 -0
- data/fixtures/spec/CUL_MODS/mods-ns.xml +2 -0
- data/fixtures/spec/CUL_MODS/mods-origin-info.xml +9 -0
- data/fixtures/spec/CUL_MODS/mods-part.xml +22 -0
- data/fixtures/spec/CUL_MODS/mods-physical-description.xml +12 -0
- data/fixtures/spec/CUL_MODS/mods-physical-location.xml +9 -0
- data/fixtures/spec/CUL_MODS/mods-record-info.xml +4 -0
- data/fixtures/spec/CUL_MODS/mods-relateditem-project.xml +8 -0
- data/fixtures/spec/CUL_MODS/mods-subjects.xml +73 -0
- data/fixtures/spec/CUL_MODS/mods-textual-date.xml +8 -0
- data/fixtures/spec/CUL_MODS/mods-titles.xml +33 -0
- data/fixtures/spec/CUL_MODS/mods-top-level-location-vs-relateditem-location.xml +21 -0
- data/fixtures/spec/CUL_MODS/mods-unmapped-project.xml +7 -0
- data/fixtures/spec/CUL_SOLR/mods-001.xml +1 -0
- data/fixtures/spec/CUL_SOLR/mods-001.yml +30 -0
- data/fixtures/spec/FOXML/content-aggregator.xml +64 -0
- data/fixtures/spec/FOXML/content-cmodel.xml +48 -0
- data/fixtures/spec/FOXML/image-cmodel.xml +48 -0
- data/fixtures/spec/FOXML/resource-max.xml +83 -0
- data/fixtures/spec/FOXML/resource-screen.xml +273 -0
- data/fixtures/spec/FOXML/resource-thumb.xml +86 -0
- data/fixtures/spec/FOXML/static-image-aggregator.xml +31 -0
- data/fixtures/spec/STRUCTMAP/structmap-examples.xml +21 -0
- data/fixtures/spec/STRUCTMAP/structmap-nested.xml +10 -0
- data/fixtures/spec/STRUCTMAP/structmap-recto.xml +4 -0
- data/fixtures/spec/STRUCTMAP/structmap-seq.xml +5 -0
- data/fixtures/spec/STRUCTMAP/structmap-unordered-seq.xml +5 -0
- data/lib/cul_hydra.rb +20 -0
- data/lib/cul_hydra/access_controls_enforcement.rb +53 -0
- data/lib/cul_hydra/controllers.rb +13 -0
- data/lib/cul_hydra/controllers/aggregates.rb +93 -0
- data/lib/cul_hydra/controllers/aggregator_controller_helper.rb +27 -0
- data/lib/cul_hydra/controllers/catalog.rb +12 -0
- data/lib/cul_hydra/controllers/content_aggregators.rb +81 -0
- data/lib/cul_hydra/controllers/datastreams.rb +145 -0
- data/lib/cul_hydra/controllers/helpers.rb +10 -0
- data/lib/cul_hydra/controllers/helpers/active_fedora_helper_behavior.rb +9 -0
- data/lib/cul_hydra/controllers/helpers/application_helper_behavior.rb +16 -0
- data/lib/cul_hydra/controllers/helpers/dc_metadata_helper_behavior.rb +9 -0
- data/lib/cul_hydra/controllers/helpers/hydra_assets_helper_behavior.rb +46 -0
- data/lib/cul_hydra/controllers/helpers/hydra_autocomplete_helper_behavior.rb +35 -0
- data/lib/cul_hydra/controllers/helpers/hydra_uploader_helper_behavior.rb +34 -0
- data/lib/cul_hydra/controllers/helpers/resources_helper_behavior.rb +159 -0
- data/lib/cul_hydra/controllers/resources.rb +161 -0
- data/lib/cul_hydra/controllers/static_image_aggregators.rb +105 -0
- data/lib/cul_hydra/controllers/suggestions.rb +126 -0
- data/lib/cul_hydra/controllers/terms.rb +205 -0
- data/lib/cul_hydra/engine.rb +31 -0
- data/lib/cul_hydra/fedora.rb +41 -0
- data/lib/cul_hydra/fedora/dummy_object.rb +37 -0
- data/lib/cul_hydra/fedora/rubydora_patch.rb +16 -0
- data/lib/cul_hydra/fedora/url_helper_behavior.rb +32 -0
- data/lib/cul_hydra/indexer.rb +102 -0
- data/lib/cul_hydra/om.rb +7 -0
- data/lib/cul_hydra/om/standard_mods.rb +115 -0
- data/lib/cul_hydra/risearch_members.rb +92 -0
- data/lib/cul_hydra/solrizer.rb +10 -0
- data/lib/cul_hydra/solrizer/extractor.rb +27 -0
- data/lib/cul_hydra/solrizer/mods_fieldable.rb +473 -0
- data/lib/cul_hydra/solrizer/terminology_based_solrizer.rb +35 -0
- data/lib/cul_hydra/solrizer/value_mapper.rb +46 -0
- data/lib/cul_hydra/solrizer_patch.rb +172 -0
- data/lib/cul_hydra/version.rb +8 -0
- data/lib/cul_hydra/version.rb~ +8 -0
- data/lib/tasks/cmodel.rake +122 -0
- data/lib/tasks/cul_hydra_dev.rake +54 -0
- data/lib/tasks/index.rake +73 -0
- data/lib/tasks/transform.rake +23 -0
- metadata +503 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
class ResourceAggregator < ::ActiveFedora::Base
|
|
2
|
+
include ::ActiveFedora::FinderMethods::RepositoryMethods
|
|
3
|
+
include ::ActiveFedora::DatastreamCollections
|
|
4
|
+
include ::Hydra::ModelMethods
|
|
5
|
+
include Cul::Hydra::Models::Common
|
|
6
|
+
include Cul::Hydra::Models::Aggregator
|
|
7
|
+
include Cul::Hydra::Models::LinkableResources
|
|
8
|
+
|
|
9
|
+
has_many :parts, :property => :cul_member_of, :class_name=>'Resource'
|
|
10
|
+
|
|
11
|
+
def route_as
|
|
12
|
+
"resource"
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
def index_type_label
|
|
16
|
+
"PART"
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
def thumbnail_info
|
|
20
|
+
return {:url=>image_url("cul_hydra/crystal/file.png"),:mime=>'image/png'}
|
|
21
|
+
end
|
|
22
|
+
end
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
require "active-fedora"
|
|
2
|
+
require "active_fedora_finders"
|
|
3
|
+
class StaticImageAggregator < ResourceAggregator
|
|
4
|
+
|
|
5
|
+
CUL_WIDTH = "http://purl.oclc.org/NET/CUL/RESOURCE/STILLIMAGE/BASIC/imageWidth"
|
|
6
|
+
CUL_LENGTH = "http://purl.oclc.org/NET/CUL/RESOURCE/STILLIMAGE/BASIC/imageLength"
|
|
7
|
+
|
|
8
|
+
def route_as
|
|
9
|
+
"image"
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
def index_type_label
|
|
13
|
+
'PART'
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
def thumbnail_info
|
|
17
|
+
candidate = nil
|
|
18
|
+
max_dim = 251
|
|
19
|
+
resources.each do |pid|
|
|
20
|
+
resource = Resource.find(pid)
|
|
21
|
+
if max_dim > resouce.long
|
|
22
|
+
candidate = resource
|
|
23
|
+
max_dim = resource.long
|
|
24
|
+
end
|
|
25
|
+
end
|
|
26
|
+
if candidate.nil?
|
|
27
|
+
return {:url=>image_url("cul_hydra/crystal/file_broken.png"),:mime=>'image/png'}
|
|
28
|
+
else
|
|
29
|
+
return {:url=>"#{ActiveFedora.fedora_config[:url]}/objects/#{candidate.pid}/datastreams/CONTENT/content",:mime=>candidate.datastreams['CONENT'].mimeType}
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
end
|
data/bin/rails
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
# This command will automatically be run when you run "rails" with Rails 4 gems installed from the root of your application.
|
|
3
|
+
|
|
4
|
+
ENGINE_ROOT = File.expand_path('../..', __FILE__)
|
|
5
|
+
ENGINE_PATH = File.expand_path('../../lib/cul_hydra/engine', __FILE__)
|
|
6
|
+
|
|
7
|
+
# Set up gems listed in the Gemfile.
|
|
8
|
+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
|
|
9
|
+
require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
|
|
10
|
+
|
|
11
|
+
require 'rails/all'
|
|
12
|
+
require 'rails/engine/commands'
|
data/config/fedora.yml
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
development:
|
|
2
|
+
:user: fedoraAdmin
|
|
3
|
+
:password: fedoraAdmin
|
|
4
|
+
:url: http://localhost:8983/fedora-test
|
|
5
|
+
:time_zone: "America/New_York"
|
|
6
|
+
|
|
7
|
+
test:
|
|
8
|
+
:user: fedoraAdmin
|
|
9
|
+
:password: fedoraAdmin
|
|
10
|
+
:url: http://localhost:8983/fedora-test
|
|
11
|
+
:time_zone: "America/New_York"
|
|
12
|
+
|
|
13
|
+
production:
|
|
14
|
+
:user: fedoraAdmin
|
|
15
|
+
:password: f+BULUS*^
|
|
16
|
+
:url: http://alcott.cul.columbia.edu:8080/fedora
|
|
17
|
+
:time_zone: "America/New_York"
|
data/config/jetty.yml
ADDED
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
en:
|
|
2
|
+
ldpd:
|
|
3
|
+
short:
|
|
4
|
+
repo:
|
|
5
|
+
'NNBa' : 'Barnard College Library'
|
|
6
|
+
'NNC' : 'Butler Library'
|
|
7
|
+
'NNC-A' : 'Avery Library'
|
|
8
|
+
'NNC-EA' : 'East Asian Library'
|
|
9
|
+
'NNC-L' : 'Law Library'
|
|
10
|
+
'NNC-M' : 'Health Sciences Library'
|
|
11
|
+
'NNC-MUS' : 'Music Library'
|
|
12
|
+
'NNC-RB' : 'Rare Book & Manuscript Library'
|
|
13
|
+
'NNC-UA' : 'University Archives'
|
|
14
|
+
'NyNyCBL' : 'Burke Library'
|
|
15
|
+
'NyNyCAP' : 'Art Properties'
|
|
16
|
+
'NNC-ART' : 'Art Properties' # This is an unofficial form of NyNyCAP that we've used in the past
|
|
17
|
+
'NyNyCMA' : 'Music Library'
|
|
18
|
+
'NNC-MUS' : 'Music Library' # This is an unofficial form of NyNyCMA that we've used in the past
|
|
19
|
+
'NyNyCOH' : 'Oral History Center'
|
|
20
|
+
project:
|
|
21
|
+
"Avery’s Architectural Ephemera Collections" : "Avery Ephemera"
|
|
22
|
+
"Avery’s Architectural Novelties" : "Avery Novelties"
|
|
23
|
+
"Barbara Curtis Adachi Bunraku Collection" : "Bunraku Collection"
|
|
24
|
+
"Biggert collection of architectural vignettes on commercial stationery" : "Biggert Collection"
|
|
25
|
+
"Butler 75: Butler Library's 75th anniversary, 1934-2009" : "Butler 75"
|
|
26
|
+
"Chamber of Commerce of New York" : "Chamber of Commerce"
|
|
27
|
+
"Charles A. Platt's Italian Garden Photographs" : "Platt's Italian Garden Photographs"
|
|
28
|
+
"Children's Drawings of the Spanish Civil War (online exhibition)" : 'Spanish Civil War'
|
|
29
|
+
'Chinese paper gods' : 'Chinese Paper Gods'
|
|
30
|
+
'Community Service Society Photographs' : 'Community Service Society'
|
|
31
|
+
"Core Curriculum: Contemporary Civilization" : "Core Curriculum: Contemporary Civilization"
|
|
32
|
+
"Core Curriculum: Literature Humanities" : "Core Curriculum: Literature Humanities"
|
|
33
|
+
"Dramatic Museum Realia" : "Dramatic Museum"
|
|
34
|
+
'Customer Order Collection' : 'Pres Orders'
|
|
35
|
+
'G.E.E. Lindquist Native American Photographs' : 'Lindquist Photographs'
|
|
36
|
+
"Greene & Greene Architectural Records and Papers Collection" : "Greene & Greene"
|
|
37
|
+
"Hugh Ferriss architectural drawings and papers" : "Ferriss Architectural Drawings"
|
|
38
|
+
"Images from Stokes' Iconography of Manhattan Island, 1498-1909" : "Stokes"
|
|
39
|
+
'Jewels in her crown: treasures of Columbia University Libraries special collections' : 'Jewels in Her Crown'
|
|
40
|
+
"Joseph Urban Stage Design Models & Documents Stabilization & Access Project" : "Urban Stage Design"
|
|
41
|
+
"Judging a Book by its Cover : Gold-Stamped Publishers' Bindings of the 19th century" : "Judging a Book"
|
|
42
|
+
"Korean Independence Outbreak Movement" : "Korean Independence"
|
|
43
|
+
"Lehman special correspondence files" : "Lehman Correspondence"
|
|
44
|
+
"New York Real Estate Brochure Collection" : "New York Real Estate Brochure"
|
|
45
|
+
"Our Tools of Learning: George Arthur Plimpton's gifts to Columbia University" : "Plimpton"
|
|
46
|
+
"Political Ecologies in the Renaissance" : "Political Ecologies"
|
|
47
|
+
'Preserving Historic Audio Content' : 'Audio Preservation'
|
|
48
|
+
'Project Mapping Test' : 'Successful Project Mapping For Short Project Title'
|
|
49
|
+
"Quran in East and West: Manuscripts and Printed Books" : "Quran"
|
|
50
|
+
"Reading of Books and the Reading of Literature" : "Reading of Books"
|
|
51
|
+
'Russian Imperial Corps of Pages' : 'Russian Corps of Pages'
|
|
52
|
+
'The Papers of John Jay' : 'Jay Papers'
|
|
53
|
+
"The People in the Books: Hebraica and Judaica Manuscripts from Columbia University Libraries" : "People in the Books"
|
|
54
|
+
"Type to Print: The Book & The Type Specimen Book" : "Type to Print"
|
|
55
|
+
"Varsity Show: a Columbia Tradition" : "Varsity Show: a Columbia Tradition"
|
|
56
|
+
long:
|
|
57
|
+
repo:
|
|
58
|
+
'NNBa' : 'Barnard College Library'
|
|
59
|
+
'NNC' : 'Butler Library'
|
|
60
|
+
'NNC-A' : 'Avery Architectural & Fine Arts Library'
|
|
61
|
+
'NNC-EA' : 'C.V. Starr East Asian Library'
|
|
62
|
+
'NNC-L' : 'Arthur W. Diamond Law Library'
|
|
63
|
+
'NNC-M' : 'Augustus C. Long Health Sciences Library'
|
|
64
|
+
'NNC-MUS' : 'Music Library'
|
|
65
|
+
'NNC-RB' : 'Rare Book & Manuscript Library'
|
|
66
|
+
'NNC-UA' : 'University Archives'
|
|
67
|
+
'NyNyCBL' : 'Burke Library at Union Theological Seminary'
|
|
68
|
+
'NyNyCAP' : 'Art Properties'
|
|
69
|
+
'NNC-ART' : 'Art Properties' # This is an unofficial form of NyNyCAP that we've used in the past
|
|
70
|
+
'NyNyCMA' : 'Gabe M. Wiener Music & Arts Library'
|
|
71
|
+
'NNC-MUS' : 'Gabe M. Wiener Music & Arts Library' # This is an unofficial form of NyNyCMA that we've used in the past
|
|
72
|
+
'NyNyCOH' : 'Columbia Center for Oral History'
|
|
73
|
+
full:
|
|
74
|
+
repo:
|
|
75
|
+
'NNBa' : 'Barnard College Library'
|
|
76
|
+
'NNC' : 'Butler Library, Columbia University'
|
|
77
|
+
'NNC-A' : 'Avery Architectural & Fine Arts Library, Columbia University'
|
|
78
|
+
'NNC-EA' : 'C.V. Starr East Asian Library, Columbia University'
|
|
79
|
+
'NNC-L' : 'Arthur W. Diamond Law Library, Columbia University'
|
|
80
|
+
'NNC-M' : 'Augustus C. Long Health Sciences Library, Columbia University'
|
|
81
|
+
'NNC-MUS' : 'Music Library'
|
|
82
|
+
'NNC-RB' : 'Rare Book & Manuscript Library, Columbia University'
|
|
83
|
+
'NNC-UA' : 'University Archives, Columbia University'
|
|
84
|
+
'NyNyCBL' : 'Burke Library at Union Theological Seminary, Columbia University'
|
|
85
|
+
'NyNyCAP' : 'Art Properties, Columbia University'
|
|
86
|
+
'NNC-ART' : 'Art Properties, Columbia University' # This is an unofficial form of NyNyCAP that we've used in the past
|
|
87
|
+
'NyNyCMA' : 'Gabe M. Wiener Music & Arts Library, Columbia University'
|
|
88
|
+
'NNC-MUS' : 'Gabe M. Wiener Music & Arts Library, Columbia University' # This is an unofficial form of NyNyCMA that we've used in the past
|
|
89
|
+
'NyNyCOH' : 'Columbia Center for Oral History, Columbia University'
|
|
90
|
+
project:
|
|
91
|
+
"Avery’s Architectural Ephemera Collections" : "Avery’s Architectural Ephemera Collections"
|
|
92
|
+
"Avery’s Architectural Novelties" : "Avery's Architectural Novelties"
|
|
93
|
+
"Barbara Curtis Adachi Bunraku Collection" : "Barbara Curtis Adachi Bunraku Collection"
|
|
94
|
+
"Biggert collection of architectural vignettes on commercial stationery" : "Biggert Collection of Architectural Vignettes on Commercial Stationery"
|
|
95
|
+
"Butler 75: Butler Library's 75th anniversary, 1934-2009" : "Butler 75: Butler Library's 75th anniversary, 1934-2009"
|
|
96
|
+
"Chamber of Commerce of New York" : "Chamber of Commerce of New York"
|
|
97
|
+
"Charles A. Platt's Italian Garden Photographs" : "Charles A. Platt's Italian Garden Photographs"
|
|
98
|
+
"Children's Drawings of the Spanish Civil War (online exhibition)" : "Children's Drawings of the Spanish Civil War"
|
|
99
|
+
'Chinese paper gods' : 'Chinese Paper Gods'
|
|
100
|
+
'Community Service Society Photographs' : 'Community Service Society Photographs'
|
|
101
|
+
"Core Curriculum: Contemporary Civilization" : "Core Curriculum: Contemporary Civilization"
|
|
102
|
+
"Core Curriculum: Literature Humanities" : "Core Curriculum: Literature Humanities"
|
|
103
|
+
"Dramatic Museum Realia" : "Dramatic Museum Realia"
|
|
104
|
+
'Customer Order Collection' : 'Customer Order Collection'
|
|
105
|
+
'G.E.E. Lindquist Native American Photographs' : 'G.E.E. Lindquist Native American Photographs'
|
|
106
|
+
"Greene & Greene Architectural Records and Papers Collection" : "Greene & Greene Architectural Records and Papers Collection"
|
|
107
|
+
"Hugh Ferriss architectural drawings and papers" : "Hugh Ferriss architectural drawings and papers"
|
|
108
|
+
"Images from Stokes' Iconography of Manhattan Island, 1498-1909" : "Images from Stokes' Iconography of Manhattan Island, 1498-1909"
|
|
109
|
+
'Jewels in her crown: treasures of Columbia University Libraries special collections' : 'Jewels in her Crown: Treasures of Columbia University Libraries Special Collections'
|
|
110
|
+
"Joseph Urban Stage Design Models & Documents Stabilization & Access Project" : "Joseph Urban Stage Design Models & Documents Stabilization & Access Project"
|
|
111
|
+
"Judging a Book by its Cover : Gold-Stamped Publishers' Bindings of the 19th century" : "Judging a Book by its Cover : Gold-Stamped Publishers' Bindings of the 19th century"
|
|
112
|
+
"Korean Independence Outbreak Movement" : "Korean Independence Outbreak Movement"
|
|
113
|
+
"Lehman special correspondence files" : "Lehman Special Correspondence Files"
|
|
114
|
+
"New York Real Estate Brochure Collection" : "New York Real Estate Brochure Collection"
|
|
115
|
+
"Our Tools of Learning: George Arthur Plimpton's gifts to Columbia University" : "Our Tools of Learning: George Arthur Plimpton's gifts to Columbia University"
|
|
116
|
+
"Political Ecologies in the Renaissance" : "Political Ecologies in the Renaissance"
|
|
117
|
+
'Preserving Historic Audio Content' : 'Preserving Historic Audio Content'
|
|
118
|
+
'Project Mapping Test' : 'Successful Project Mapping For Full Project Title'
|
|
119
|
+
"Quran in East and West: Manuscripts and Printed Books" : "Quran in East and West: Manuscripts and Printed Books"
|
|
120
|
+
"Reading of Books and the Reading of Literature" : "Reading of Books and the Reading of Literature"
|
|
121
|
+
'Russian Imperial Corps of Pages' : 'Russian Imperial Corps of Pages'
|
|
122
|
+
'The Papers of John Jay' : 'Papers of John Jay'
|
|
123
|
+
"The People in the Books: Hebraica and Judaica Manuscripts from Columbia University Libraries" : "People in the Books: Hebraica and Judaica Manuscripts from Columbia University Libraries"
|
|
124
|
+
"Type to Print: The Book & The Type Specimen Book" : "Type to Print: The Book & The Type Specimen Book"
|
|
125
|
+
"Varsity Show: a Columbia Tradition" : "Varsity Show"
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
# The default namespace maps to the default namespace for generating rels_ext from solr
|
|
2
|
+
:default_namespace: info:fedora/fedora-system:def/relations-external#
|
|
3
|
+
|
|
4
|
+
# namespace mappings---
|
|
5
|
+
# you can add specific mappings for your institution by providing the following:
|
|
6
|
+
# namespace_uri:
|
|
7
|
+
# :relationship_symbol: relationship_identifier
|
|
8
|
+
#
|
|
9
|
+
# For example, if you have the following element in your rels_ext:
|
|
10
|
+
#
|
|
11
|
+
# <oai:itemID>oai:example.edu:changeme:500</oai:itemID>
|
|
12
|
+
#
|
|
13
|
+
# With the last two lines of this file uncommented, the relationships hash of your object will include:
|
|
14
|
+
# :oai_item_id => ["info:fedora/oai:example.edu:changeme:500"]
|
|
15
|
+
#
|
|
16
|
+
:predicate_mapping:
|
|
17
|
+
http://purl.oclc.org/NET/CUL/:
|
|
18
|
+
:cul_has_member: hasMember
|
|
19
|
+
:cul_member_of: memberOf
|
|
20
|
+
:cul_metadata_for: metadataFor
|
|
21
|
+
:cul_obsolete_from: obsoleteFrom
|
|
22
|
+
http://creativecommons.org/ns#:
|
|
23
|
+
:cc_license: license
|
|
24
|
+
info:fedora/fedora-system:def/relations-external#:
|
|
25
|
+
:conforms_to: conformsTo
|
|
26
|
+
:has_annotation: hasAnnotation
|
|
27
|
+
:has_collection_member: hasCollectionMember
|
|
28
|
+
:has_constituent: hasConstituent
|
|
29
|
+
:has_dependent: hasDependent
|
|
30
|
+
:has_derivation: hasDerivation
|
|
31
|
+
:has_description: hasDescription
|
|
32
|
+
:has_equivalent: hasEquivalent
|
|
33
|
+
:has_metadata: hasMetadata
|
|
34
|
+
:has_member: hasMember
|
|
35
|
+
:has_model: hasModel
|
|
36
|
+
:has_part: hasPart
|
|
37
|
+
:has_subset: hasSubset
|
|
38
|
+
:is_annotation_of: isAnnotationOf
|
|
39
|
+
:is_constituent_of: isConstituentOf
|
|
40
|
+
:is_dependent_of: isDependentOf
|
|
41
|
+
:is_derivation_of: isDerivationOf
|
|
42
|
+
:is_description_of: isDescriptionOf
|
|
43
|
+
:is_member_of: isMemberOf
|
|
44
|
+
:is_member_of_collection: isMemberOfCollection
|
|
45
|
+
:is_metadata_for: isMetadataFor
|
|
46
|
+
:is_part_of: isPartOf
|
|
47
|
+
:is_subset_of: isSubsetOf
|
|
48
|
+
info:fedora/fedora-system:def/model#:
|
|
49
|
+
:has_model: hasModel
|
|
50
|
+
http://purl.oclc.org/NET/CUL/RESOURCE/STILLIMAGE/BASIC/:
|
|
51
|
+
:cul_image_width: imageWidth
|
|
52
|
+
:cul_image_length: imageLength
|
|
53
|
+
http://purl.oclc.org/NET/CUL/RESOURCE/STILLIMAGE/ASSESSMENT/:
|
|
54
|
+
:x_sampling: xSamplingFrequency
|
|
55
|
+
:y_sampling: ySamplingFrequency
|
|
56
|
+
:sampling_unit: samplingFrequencyUnit
|
|
57
|
+
http://purl.org/dc/terms/:
|
|
58
|
+
:contributor: contributor
|
|
59
|
+
:extent: extent
|
|
60
|
+
:format: format
|
|
61
|
+
:format_of: isFormatOf
|
|
62
|
+
:publisher: publisher
|
|
63
|
+
http://www.w3.org/2003/12/exif/ns#:
|
|
64
|
+
:image_width: imageWidth
|
|
65
|
+
:image_length: imageLength
|
|
66
|
+
:x_resolution: xResolution
|
|
67
|
+
:y_resolution: yResolution
|
|
68
|
+
:resolution_unit: resolutionUnit
|
|
69
|
+
:orientation: orientation
|
|
70
|
+
http://xmlns.com/foaf/0.1/:
|
|
71
|
+
:foaf_image: image
|
|
72
|
+
:foaf_thumbnail: thumbnail
|
|
73
|
+
:foaf_zooming: zoomingImage
|
|
74
|
+
:foaf_depicts: depicts
|
|
75
|
+
:foaf_depiction: depiction
|
|
76
|
+
http://www.w3.org/1999/02/22-rdf-syntax-ns#:
|
|
77
|
+
:rdf_type: type
|
|
78
|
+
http://www.loc.gov/premis/rdf/v1#:
|
|
79
|
+
:original_name: hasOriginalName
|
data/config/solr.yml
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# Define additional properties for OM terms to communicate with Solrizer
|
|
2
|
+
# (Solrizer's use of dynamic fields to turn OM terms into Solr fields)
|
|
3
|
+
# example: t.my_term(:index_as=>[:searchable, :displayable])
|
|
4
|
+
# implies that the Solr document will have fields my_term_t and my_term_display
|
|
5
|
+
# if there is a value for the OM term :my_term in an object.
|
|
6
|
+
# :textable is a dummy; the field named returned will be 'text'
|
|
7
|
+
id: id
|
|
8
|
+
default: searchable
|
|
9
|
+
searchable:
|
|
10
|
+
default: _t
|
|
11
|
+
date: _dt
|
|
12
|
+
string: _t
|
|
13
|
+
text: _t
|
|
14
|
+
symbol: _s
|
|
15
|
+
integer: _i
|
|
16
|
+
long: _l
|
|
17
|
+
boolean: _b
|
|
18
|
+
float: _f
|
|
19
|
+
double: _d
|
|
20
|
+
displayable: _display
|
|
21
|
+
facetable: _facet
|
|
22
|
+
sortable: _sort
|
|
23
|
+
textable:
|
|
24
|
+
# this is a dummy value, all values will be mapped to a field called 'text'
|
|
25
|
+
default: _t
|
|
26
|
+
unstemmed_searchable: _unstem_search
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
:marc_to_facet :
|
|
2
|
+
'NNBa' : 'Barnard College Library'
|
|
3
|
+
'NNC' : 'Butler Library'
|
|
4
|
+
'NNC-A' : 'Avery Library'
|
|
5
|
+
'NNC-ART' : 'Office of Art Properties'
|
|
6
|
+
'NNC-EA' : 'East Asian Library'
|
|
7
|
+
'NNC-L' : 'Law Library'
|
|
8
|
+
'NNC-M' : 'Health Sciences Library'
|
|
9
|
+
'NNC-MUS' : 'Music Library'
|
|
10
|
+
'NNC-RB' : 'Rare Book Library'
|
|
11
|
+
'NNC-UA' : 'University Archives'
|
|
12
|
+
'NyNyCBL' : 'Burke Library'
|
|
13
|
+
'NyNyCOH' : 'Oral History'
|
|
14
|
+
'NyNyCAP' : 'Art Properties'
|
|
15
|
+
'NyNyCMA' : 'Music Library'
|
|
16
|
+
'UkWC-A' : 'Royal Archives, Windsor Castle'
|
|
17
|
+
:marc_to_display :
|
|
18
|
+
'NNBa' : 'Barnard College Library'
|
|
19
|
+
'NNC' : 'Columbia University Libraries'
|
|
20
|
+
'NNC-A' : 'Avery Architectural & Fine Arts Library, Columbia University'
|
|
21
|
+
'NNC-ART' : 'Office of Art Properties'
|
|
22
|
+
'NNC-EA' : 'C.V. Starr East Asian Library, Columbia University'
|
|
23
|
+
'NNC-L' : 'Arthur W. Diamond Law Library, Columbia University'
|
|
24
|
+
'NNC-M' : 'Augustus C. Long Health Sciences Library, Columbia University'
|
|
25
|
+
'NNC-MUS' : 'Music Library'
|
|
26
|
+
'NNC-RB' : 'Rare Book & Manuscript Library, Columbia University'
|
|
27
|
+
'NNC-UA' : 'University Archives, Columbia University'
|
|
28
|
+
'NyNyCBL' : 'Burke Library at Union Theological Seminary, Columbia University'
|
|
29
|
+
'NyNyCOH' : 'Columbia Center for Oral History, Columbia University'
|
|
30
|
+
'NyNyCAP' : 'Art Properties, Columbia University'
|
|
31
|
+
'NyNyCMA' : 'Gabe M. Wiener Music & Arts Library, Columbia University'
|
|
32
|
+
'UkWC-A' : 'Royal Archives, Windsor Castle'
|
|
33
|
+
:project_to_facet :
|
|
34
|
+
'Customer Order Collection' : 'Pres Orders'
|
|
35
|
+
"Children's Drawings of the Spanish Civil War (online exhibition)" : 'Spanish Civil War'
|
|
36
|
+
"Jewels in her crown: treasures of Columbia University Libraries special collections" : 'Jewels in her Crown'
|
|
37
|
+
"Russian Imperial Corps of Pages" : 'Russian Corps of Pages'
|
|
38
|
+
"Preserving Historic Audio Content" : 'Audio Preservation'
|
|
39
|
+
'The Papers of John Jay' : 'John Jay Papers'
|
|
40
|
+
'Project Facet Mapping Test' : 'Successful Project Mapping'
|
|
41
|
+
'G.E.E. Lindquist Native American Photographs' : 'Lindquist Photographs'
|
data/config/subs.yml
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
development:
|
|
2
|
+
djatoka_server: "http://iris.cul.columbia.edu:8080"
|
|
3
|
+
fedora_server: "http://sayers.cul.columbia.edu:8080"
|
|
4
|
+
php_server: "http://bach.cul.columbia.edu/dev"
|
|
5
|
+
test:
|
|
6
|
+
djatoka_server: "http://iris.cul.columbia.edu:8080"
|
|
7
|
+
fedora_server: "http://sayers.cul.columbia.edu:8080"
|
|
8
|
+
php_server: "http://bach.cul.columbia.edu/dev"
|
|
9
|
+
production:
|
|
10
|
+
djatoka_server: "http://iris.cul.columbia.edu:8080"
|
|
11
|
+
fedora_server: "http://alcott.cul.columbia.edu:8080"
|
|
12
|
+
php_server: "http://bach.cul.columbia.edu"
|
|
13
|
+
|
|
14
|
+
hyacinth_prod:
|
|
15
|
+
djatoka_server: "http://iris.cul.columbia.edu:8080"
|
|
16
|
+
fedora_server: "http://alcott.cul.columbia.edu:8080"
|
|
17
|
+
php_server: "http://bach.cul.columbia.edu"
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<foxml:digitalObject VERSION="1.1" PID="ldpd:ADLMetadata"
|
|
3
|
+
xmlns:foxml="info:fedora/fedora-system:def/foxml#"
|
|
4
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
5
|
+
xsi:schemaLocation="info:fedora/fedora-system:def/foxml# http://www.fedora.info/definitions/1/0/foxml1-1.xsd">
|
|
6
|
+
<foxml:objectProperties>
|
|
7
|
+
<foxml:property NAME="info:fedora/fedora-system:def/model#state" VALUE="Active"/>
|
|
8
|
+
<foxml:property NAME="info:fedora/fedora-system:def/model#label" VALUE="CModel for metadata objects"/>
|
|
9
|
+
</foxml:objectProperties>
|
|
10
|
+
|
|
11
|
+
<foxml:datastream ID="DC" STATE="A" CONTROL_GROUP="X" VERSIONABLE="true">
|
|
12
|
+
<foxml:datastreamVersion ID="DC1.0" LABEL="Dublin Core Record for Metadata CModel" MIMETYPE="text/xml" FORMAT_URI="http://www.openarchives.org/OAI/2.0/oai_dc/">
|
|
13
|
+
<foxml:xmlContent>
|
|
14
|
+
<oai_dc:dc xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/"
|
|
15
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
16
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
17
|
+
xsi:schemaLocation="http://www.openarchives.org/OAI/2.0/oai_dc/ http://www.openarchives.org/OAI/2.0/oai_dc.xsd">
|
|
18
|
+
<dc:title>CModel for metadata objects</dc:title>
|
|
19
|
+
<dc:creator>CUL/IS:LDPD</dc:creator>
|
|
20
|
+
<dc:contributor>NNC</dc:contributor>
|
|
21
|
+
<dc:identifier>ldpd:ADLMetadata</dc:identifier>
|
|
22
|
+
</oai_dc:dc>
|
|
23
|
+
</foxml:xmlContent>
|
|
24
|
+
</foxml:datastreamVersion>
|
|
25
|
+
</foxml:datastream>
|
|
26
|
+
<foxml:datastream ID="RELS-EXT" STATE="A" CONTROL_GROUP="X" VERSIONABLE="true">
|
|
27
|
+
<foxml:datastreamVersion ID="RELS-EXT1.0" LABEL="RDF Statements about this object" MIMETYPE="application/rdf+xml" FORMAT_URI="info:fedora/fedora-system:FedoraRELSExt-1.0">
|
|
28
|
+
<foxml:xmlContent>
|
|
29
|
+
<rdf:RDF xmlns:fedora-model="info:fedora/fedora-system:def/model#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
|
30
|
+
<rdf:Description rdf:about="info:fedora/ldpd:ADLMetadata">
|
|
31
|
+
<fedora-model:hasModel rdf:resource="info:fedora/fedora-system:ContentModel-3.0"></fedora-model:hasModel>
|
|
32
|
+
<fedora-model:hasService rdf:resource="info:fedora/ldpd:sdef.Metadata"></fedora-model:hasService>
|
|
33
|
+
<fedora-model:hasService rdf:resource="info:fedora/ldpd:sdef.Core"></fedora-model:hasService>
|
|
34
|
+
</rdf:Description>
|
|
35
|
+
</rdf:RDF>
|
|
36
|
+
</foxml:xmlContent>
|
|
37
|
+
</foxml:datastreamVersion>
|
|
38
|
+
</foxml:datastream>
|
|
39
|
+
<foxml:datastream ID="DS-COMPOSITE-MODEL" STATE="A" CONTROL_GROUP="X" VERSIONABLE="true">
|
|
40
|
+
<foxml:datastreamVersion ID="DS-COMPOSITE-MODEL1.0" LABEL="Datastream Composite Model" MIMETYPE="text/xml" FORMAT_URI="info:fedora/fedora-system:FedoraDSCompositeModel-1.0">
|
|
41
|
+
<foxml:xmlContent>
|
|
42
|
+
<dsCompositeModel xmlns="info:fedora/fedora-system:def/dsCompositeModel#">
|
|
43
|
+
<dsTypeModel ID="DC">
|
|
44
|
+
<form FORMAT_URI="http://www.openarchives.org/OAI/2.0/oai_dc/" MIME="text/xml"></form>
|
|
45
|
+
</dsTypeModel>
|
|
46
|
+
<dsTypeModel ID="RELS-EXT">
|
|
47
|
+
<form FORMAT_URI="info:fedora/fedora-system:FedoraRELSExt-1.0" MIME="application/rdf+xml"></form>
|
|
48
|
+
</dsTypeModel>
|
|
49
|
+
<dsTypeModel ID="CONTENT">
|
|
50
|
+
<form MIME="text/plain"></form>
|
|
51
|
+
</dsTypeModel>
|
|
52
|
+
</dsCompositeModel>
|
|
53
|
+
</foxml:xmlContent>
|
|
54
|
+
</foxml:datastreamVersion>
|
|
55
|
+
</foxml:datastream>
|
|
56
|
+
</foxml:digitalObject>
|