Alexander O'Neill
14 years ago
14 changed files with 927 additions and 468 deletions
@ -1,70 +1,22 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<collection_policy> |
||||
<!---we will define allowed mimetypes and what to do with various types as part of the content model--> |
||||
<contentmodels> |
||||
<contentmodel name="STANDARD_JPEG"> |
||||
<pid_namespace>demo:Smiley</pid_namespace> |
||||
<pid>demo:DualResImage</pid> |
||||
<dsid>ISLANDORACM</dsid> |
||||
</contentmodel> |
||||
</contentmodels> |
||||
<!--if we define a query for an object the relationship we ask for may not be isMemberOfCollection. So when we ingest in th |
||||
Collection we will want the relationship to match the query. If this element is null we will use the isMemberOfCollection relationship--> |
||||
<relationship>isMemberOf</relationship> |
||||
<search_terms> |
||||
<!--define what fields we can query as part of the advanced search for this collection, not used yet--> |
||||
<default>dc.description</default> |
||||
<term> |
||||
<field>dc.title</field> |
||||
<value>dc.title</value> |
||||
</term> |
||||
<term> |
||||
<field>dc.creator</field> |
||||
<value>dc.creator</value> |
||||
</term> |
||||
<term> |
||||
<field>dc.description</field> |
||||
<value>dc.description</value> |
||||
</term> |
||||
<term> |
||||
<field>dc.date</field> |
||||
<value>dc.date</value> |
||||
</term> |
||||
<term> |
||||
<field>dc.identifier</field> |
||||
<value>dc.identifier</value> |
||||
</term> |
||||
<term> |
||||
<field>dc.language</field> |
||||
<value>dc.language</value> |
||||
</term> |
||||
<term> |
||||
<field>dc.publisher</field> |
||||
<value>dc.publisher</value> |
||||
</term> |
||||
<term> |
||||
<field>dc.rights</field> |
||||
<value>dc.rights</value> |
||||
</term> |
||||
<term> |
||||
<field>dc.subject</field> |
||||
<value>dc.subject</value> |
||||
</term> |
||||
<term> |
||||
<field>dc.relation</field> |
||||
<value>dc.relation</value> |
||||
</term> |
||||
<term> |
||||
<field>dcterms.temporal</field> |
||||
<value>dcterms.temporal</value> |
||||
</term> |
||||
<term> |
||||
<field>dcterms.spatial</field> |
||||
<value>dcterms.spatial</value> |
||||
</term> |
||||
<term> |
||||
<field>fgs.DS.first.text</field> |
||||
<value>Full Text</value> |
||||
</term> |
||||
</search_terms> |
||||
</collection_policy> |
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<collection_policy xmlns="http://www.islandora.ca" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="" xsi:schemaLocation="http://www.islandora.ca http://syn.lib.umanitoba.ca/collection_policy.xsd"> |
||||
<content_models> |
||||
<content_model name="STANDARD_JPEG" dsid="ISLANDORACM" namespace="demo:Smiley" pid="demo:DualResImage"/> |
||||
</content_models> |
||||
<search_terms> |
||||
<term field="dc.title">dc.title</term> |
||||
<term field="dc.creator">dc.creator</term> |
||||
<term field="dc.description" default="true">dc.description</term> |
||||
<term field="dc.date">dc.date</term> |
||||
<term field="dc.identifier">dc.identifier</term> |
||||
<term field="dc.language">dc.language</term> |
||||
<term field="dc.publisher">dc.publisher</term> |
||||
<term field="dc.rights">dc.rights</term> |
||||
<term field="dc.subject">dc.subject</term> |
||||
<term field="dc.relation">dc.relation</term> |
||||
<term field="dcterms.temporal">dcterms.temporal</term> |
||||
<term field="dcterms.spatial">dcterms.spatial</term> |
||||
<term field="fgs.DS.first.text">Full Text</term> |
||||
</search_terms> |
||||
<relationship>isMemberOf</relationship> |
||||
</collection_policy> |
@ -0,0 +1,7 @@
|
||||
select $collTitle $collDesc $member $memberTitle $memberDesc |
||||
from <#ri> |
||||
where %parent_collection% <dc:title> $collTitle |
||||
and %parent_collection% <dc:description> $collDesc |
||||
and $member <fedora-rels-ext:isMemberOf> %parent_collection% |
||||
and $member <dc:title> $memberTitle |
||||
and $member <dc:description> $memberDesc |
@ -1,198 +1,95 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<content_model name="standard_jpeg"> |
||||
<mimetypes> |
||||
<type>image/jpeg</type> |
||||
</mimetypes> |
||||
<display_in_fieldset> |
||||
<datastream id="MEDIUM_SIZE"> |
||||
<method> |
||||
<file>plugins/ShowDemoStreamsInFieldSets.inc</file> |
||||
<class_name>ShowDemoStreamsInFieldSets</class_name> |
||||
<method_name>showMediumSize</method_name> |
||||
</method> |
||||
</datastream> |
||||
<datastream id="QDC"> |
||||
<method> |
||||
<file>plugins/ShowStreamsInFieldSets.inc</file> |
||||
<class_name>ShowStreamsInFieldSets</class_name> |
||||
<method_name>showQdc</method_name> |
||||
</method> |
||||
</datastream> |
||||
<datastream id="FULL_SIZE"> |
||||
<allowed_mime_type>image/jpeg</allowed_mime_type> |
||||
<add_datastream_method> |
||||
<file>plugins/ImageManipulation.inc</file> |
||||
<class_name>ImageManipulation</class_name> |
||||
<method_name>manipulateImage</method_name> |
||||
<modified_files_ext>jpg</modified_files_ext> |
||||
<datastream_id>MEDIUM_SIZE</datastream_id> |
||||
<parameters> |
||||
<parameter name="width">120</parameter> |
||||
<parameter name="height">160</parameter> |
||||
</parameters> |
||||
</add_datastream_method> |
||||
</datastream> |
||||
</display_in_fieldset> |
||||
<ingest_rules> |
||||
<rule> |
||||
<applies_to> |
||||
image/jpeg |
||||
</applies_to> |
||||
<methods> |
||||
<method> |
||||
<file>plugins/ImageManipulation.inc</file> |
||||
<class_name>ImageManipulation</class_name> |
||||
<method_name>manipulateImage</method_name> |
||||
<modified_files_ext>jpg</modified_files_ext> |
||||
<datastream_id>MEDIUM_SIZE</datastream_id> |
||||
<parameters> |
||||
<parameter name="width">160</parameter> |
||||
<parameter name="height">120</parameter> |
||||
</parameters> |
||||
</method> |
||||
<method> |
||||
<file>plugins/ImageManipulation.inc</file> |
||||
<class_name>ImageManipulation</class_name> |
||||
<method_name>manipulateImage</method_name> |
||||
<modified_files_ext>jpg</modified_files_ext> |
||||
<datastream_id>TN</datastream_id> |
||||
<parameters> |
||||
<parameter name="width">120</parameter> |
||||
<parameter name="height">120</parameter> |
||||
</parameters> |
||||
</method> |
||||
</methods> |
||||
</rule> |
||||
</ingest_rules> |
||||
<ingest_form dsid="QDC" page="2"> |
||||
<form_builder_method> |
||||
<file>plugins/DemoFormBuilder.inc</file> |
||||
<class_name>DemoFormBuilder</class_name> |
||||
<method_name>buildQDCForm</method_name> |
||||
<form_handler>handleQDCForm</form_handler> |
||||
<!--need validation method as well--> |
||||
</form_builder_method> |
||||
<form_elements> |
||||
<element> |
||||
<label>Title/Caption/Image Name</label> |
||||
<name>dc:title</name> |
||||
<type>textfield</type> |
||||
<description>The name given to the resource</description> |
||||
<required>true</required> |
||||
</element> |
||||
<element> |
||||
<label>Creator/Photographer</label> |
||||
<name>dc:creator</name> |
||||
<type>textfield</type> |
||||
<description>An entity primarily responsible for making the content of the resource such as a person, organization or service.</description> |
||||
<required>false</required> |
||||
</element> |
||||
<element> |
||||
<label>Subject</label> |
||||
<name>dc:subject</name> |
||||
<type>select</type> |
||||
<description>Subject</description> |
||||
<required>false</required> |
||||
<authoritative_list> |
||||
<item> |
||||
<field>image</field> |
||||
<value>image</value> |
||||
</item> |
||||
<item> |
||||
<field>photograph</field> |
||||
<value>photograph</value> |
||||
</item> |
||||
<item> |
||||
<field>presentation</field> |
||||
<value>presentation</value> |
||||
</item> |
||||
<item> |
||||
<field>art</field> |
||||
<value>art</value> |
||||
</item> |
||||
|
||||
</authoritative_list> |
||||
</element> |
||||
<element> |
||||
<label>Description</label> |
||||
<name>dc:description</name> |
||||
<type>textarea</type> |
||||
<description>Description of the Image</description> |
||||
<required>true</required> |
||||
</element> |
||||
<element> |
||||
<label>Publisher</label> |
||||
<name>dc:publisher</name> |
||||
<type>textfield</type> |
||||
<description>An entity, (including persons, organizations, or services), responsible for making the resource available.</description> |
||||
<required>false</required> |
||||
</element> |
||||
<element> |
||||
<label>Contributor</label> |
||||
<name>dc:contributor</name> |
||||
<type>textfield</type> |
||||
<description>An entity responsible for contributing to the content of the resource such as a person, organization or service.</description> |
||||
<required>false</required> |
||||
</element> |
||||
<element> |
||||
<label>Date</label> |
||||
<name>dc:date</name> |
||||
<type>textfield</type> |
||||
<description>Temporal scope of the content if known. Date format is YYYY-MM-DD (e.g. 1890,1910-10,or 2007-10-23)</description> |
||||
<required>false</required> |
||||
</element> |
||||
<element> |
||||
<label>Resource Type</label> |
||||
<name>dc:type</name> |
||||
<type>textfield</type> |
||||
<description>Genre of the content of the resource. Examples include: home page, novel, poem, working paper, technical report, essay, dictionary.</description> |
||||
<required>false</required> |
||||
</element> |
||||
<element> |
||||
<label>Source</label> |
||||
<name>dc:source</name> |
||||
<type>textfield</type> |
||||
<description>A reference to a resource from which the present resource is derived.</description> |
||||
<required>false</required> |
||||
</element> |
||||
<element> |
||||
<label>Identifier</label> |
||||
<name>dc:identifier</name> |
||||
<type>textfield</type> |
||||
<description>A unique reference to the resource; In this instance, the accession number or collection number.</description> |
||||
<required>false</required> |
||||
</element> |
||||
<element> |
||||
<label>Language</label> |
||||
<name>dc:language</name> |
||||
<type>select</type> |
||||
<description>The language of the intellectual content of the resource.</description> |
||||
<required>false</required> |
||||
<authoritative_list> |
||||
<item> |
||||
<field>eng</field> |
||||
<value>English</value> |
||||
</item> |
||||
<item> |
||||
<field>fre</field> |
||||
<value>French</value> |
||||
</item> |
||||
</authoritative_list> |
||||
</element> |
||||
<element> |
||||
<label>Relation</label> |
||||
<name>dc:relation</name> |
||||
<type>textfield</type> |
||||
<description>Reference to a related resource.</description> |
||||
<required>false</required> |
||||
</element> |
||||
<element> |
||||
<label>Rights Management</label> |
||||
<name>dc:rights</name> |
||||
<type>textarea</type> |
||||
<description>Information about intellectual property rights, copyright, and various property rights.</description> |
||||
<required>false</required> |
||||
</element> |
||||
</form_elements> |
||||
</ingest_form> |
||||
</content_model> |
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<content_model xmlns="http://www.islandora.ca" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="standard_jpeg" xsi:schemaLocation="http://www.islandora.ca http://localhost/islandoracm.xsd"> |
||||
<mimetypes> |
||||
<type>image/jpeg</type> |
||||
</mimetypes> |
||||
<ingest_rules> |
||||
<rule> |
||||
<applies_to>image/jpeg</applies_to> |
||||
<ingest_methods> |
||||
<ingest_method module="" file="plugins/ImageManipulation.inc" class="ImageManipulation" method="manipulateImage" dsid="MEDIUM_SIZE" modified_files_ext="jpg"> |
||||
<parameters> |
||||
<parameter name="width">160</parameter> |
||||
<parameter name="height">120</parameter> |
||||
</parameters> |
||||
</ingest_method> |
||||
<ingest_method module="" file="plugins/ImageManipulation.inc" class="ImageManipulation" method="manipulateImage" dsid="TN" modified_files_ext="jpg"> |
||||
<parameters> |
||||
<parameter name="width">120</parameter> |
||||
<parameter name="height">120</parameter> |
||||
</parameters> |
||||
</ingest_method> |
||||
</ingest_methods> |
||||
</rule> |
||||
</ingest_rules> |
||||
<datastreams> |
||||
<datastream dsid="MEDIUM_SIZE"> |
||||
<display_method module="" file="plugins/ShowDemoStreamsInFieldSets.inc" class="ShowDemoStreamsInFieldSets" method="showMediumSize"/> |
||||
</datastream> |
||||
<datastream dsid="QDC"> |
||||
<display_method module="" file="plugins/ShowStreamsInFieldSets.inc" class="ShowStreamsInFieldSets" method="showQdc"/> |
||||
</datastream> |
||||
<datastream dsid="FULL_SIZE"> |
||||
<add_datastream_method module="" file="plugins/ImageManipulation.inc" class="ImageManipulation" method="manipulateImage" dsid="MEDIUM_SIZE" modified_files_ext="jpg"> |
||||
<parameters> |
||||
<parameter name="width">120</parameter> |
||||
<parameter name="height">160</parameter> |
||||
</parameters> |
||||
</add_datastream_method> |
||||
</datastream> |
||||
</datastreams> |
||||
<ingest_form dsid="QDC" page="2"> |
||||
<form_builder_method module="" file="plugins/DemoFormBuilder.inc" class="DemoFormBuilder" method="buildQDCForm" handler="handleQDCForm"/> |
||||
<form_elements> |
||||
<element label="Title/Caption/Image Name" name="dc:title" type="textfield" required="true"> |
||||
<description>The name given to the resource</description> |
||||
</element> |
||||
<element label="Creator/Photographer" name="dc:creator" type="textfield"> |
||||
<description>An entity primarily responsible for making the content of the resource such as a person, organization or service.</description> |
||||
</element> |
||||
<element label="Subject" name="dc:subject" type="select"> |
||||
<description>Subject</description> |
||||
<authoritative_list> |
||||
<item>image</item> |
||||
<item>photograph</item> |
||||
<item>presentation</item> |
||||
<item>art</item> |
||||
</authoritative_list> |
||||
</element> |
||||
<element label="Description" name="dc:description" type="textarea" required="true"> |
||||
<description>Description of the Image</description> |
||||
</element> |
||||
<element label="Publisher" name="dc:publisher" type="textfield"> |
||||
<description>An entity, (including persons, organizations, or services), responsible for making the resource available.</description> |
||||
</element> |
||||
<element label="Contributor" name="dc:contributor" type="textfield"> |
||||
<description>An entity responsible for contributing to the content of the resource such as a person, organization or service.</description> |
||||
</element> |
||||
<element label="Date" name="dc:date" type="textfield"> |
||||
<description>Temporal scope of the content if known. Date format is YYYY-MM-DD (e.g. 1890,1910-10,or 2007-10-23)</description> |
||||
</element> |
||||
<element label="Resource Type" name="dc:type" type="textfield"> |
||||
<description>Genre of the content of the resource. Examples include: home page, novel, poem, working paper, technical report, essay, dictionary.</description> |
||||
</element> |
||||
<element label="Source" name="dc:source" type="textfield"> |
||||
<description>A reference to a resource from which the present resource is derived.</description> |
||||
</element> |
||||
<element label="Identifier" name="dc:identifier" type="textfield"> |
||||
<description>A unique reference to the resource; In this instance, the accession number or collection number.</description> |
||||
</element> |
||||
<element label="Language" name="dc:language" type="select"> |
||||
<description>The language of the intellectual content of the resource.</description> |
||||
<authoritative_list> |
||||
<item field="eng">English</item> |
||||
<item field="fre">French</item> |
||||
</authoritative_list> |
||||
</element> |
||||
<element label="Relation" name="dc:relation" type="textfield"> |
||||
<description>Reference to a related resource.</description> |
||||
</element> |
||||
<element label="Rights Management" name="dc:rights" type="textarea"> |
||||
<description>Information about intellectual property rights, copyright, and various property rights.</description> |
||||
</element> |
||||
</form_elements> |
||||
</ingest_form> |
||||
</content_model> |
@ -1,198 +1,95 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<content_model name="standard_jpeg"> |
||||
<mimetypes> |
||||
<type>image/jpeg</type> |
||||
</mimetypes> |
||||
<display_in_fieldset> |
||||
<datastream id="MEDIUM_SIZE"> |
||||
<method> |
||||
<file>plugins/ShowDemoStreamsInFieldSets.inc</file> |
||||
<class_name>ShowDemoStreamsInFieldSets</class_name> |
||||
<method_name>showMediumSize</method_name> |
||||
</method> |
||||
</datastream> |
||||
<datastream id="QDC"> |
||||
<method> |
||||
<file>plugins/ShowStreamsInFieldSets.inc</file> |
||||
<class_name>ShowStreamsInFieldSets</class_name> |
||||
<method_name>showQdc</method_name> |
||||
</method> |
||||
</datastream> |
||||
<datastream id="FULL_SIZE"> |
||||
<allowed_mime_type>image/jpeg</allowed_mime_type> |
||||
<add_datastream_method> |
||||
<file>plugins/ImageManipulation.inc</file> |
||||
<class_name>ImageManipulation</class_name> |
||||
<method_name>manipulateImage</method_name> |
||||
<modified_files_ext>jpg</modified_files_ext> |
||||
<datastream_id>MEDIUM_SIZE</datastream_id> |
||||
<parameters> |
||||
<parameter name="width">120</parameter> |
||||
<parameter name="height">160</parameter> |
||||
</parameters> |
||||
</add_datastream_method> |
||||
</datastream> |
||||
</display_in_fieldset> |
||||
<ingest_rules> |
||||
<rule> |
||||
<applies_to> |
||||
image/jpeg |
||||
</applies_to> |
||||
<methods> |
||||
<method> |
||||
<file>plugins/ImageManipulation.inc</file> |
||||
<class_name>ImageManipulation</class_name> |
||||
<method_name>manipulateImage</method_name> |
||||
<modified_files_ext>jpg</modified_files_ext> |
||||
<datastream_id>MEDIUM_SIZE</datastream_id> |
||||
<parameters> |
||||
<parameter name="width">160</parameter> |
||||
<parameter name="height">120</parameter> |
||||
</parameters> |
||||
</method> |
||||
<method> |
||||
<file>plugins/ImageManipulation.inc</file> |
||||
<class_name>ImageManipulation</class_name> |
||||
<method_name>manipulateImage</method_name> |
||||
<modified_files_ext>jpg</modified_files_ext> |
||||
<datastream_id>TN</datastream_id> |
||||
<parameters> |
||||
<parameter name="width">120</parameter> |
||||
<parameter name="height">120</parameter> |
||||
</parameters> |
||||
</method> |
||||
</methods> |
||||
</rule> |
||||
</ingest_rules> |
||||
<ingest_form dsid="QDC" page="2"> |
||||
<form_builder_method> |
||||
<file>plugins/DemoFormBuilder.inc</file> |
||||
<class_name>DemoFormBuilder</class_name> |
||||
<method_name>buildQDCForm</method_name> |
||||
<form_handler>handleQDCForm</form_handler> |
||||
<!--need validation method as well--> |
||||
</form_builder_method> |
||||
<form_elements> |
||||
<element> |
||||
<label>Title/Caption/Image Name</label> |
||||
<name>dc:title</name> |
||||
<type>textfield</type> |
||||
<description>The name given to the resource</description> |
||||
<required>true</required> |
||||
</element> |
||||
<element> |
||||
<label>Creator/Photographer</label> |
||||
<name>dc:creator</name> |
||||
<type>textfield</type> |
||||
<description>An entity primarily responsible for making the content of the resource such as a person, organization or service.</description> |
||||
<required>false</required> |
||||
</element> |
||||
<element> |
||||
<label>Subject</label> |
||||
<name>dc:subject</name> |
||||
<type>select</type> |
||||
<description>Subject</description> |
||||
<required>false</required> |
||||
<authoritative_list> |
||||
<item> |
||||
<field>image</field> |
||||
<value>image</value> |
||||
</item> |
||||
<item> |
||||
<field>photograph</field> |
||||
<value>photograph</value> |
||||
</item> |
||||
<item> |
||||
<field>presentation</field> |
||||
<value>presentation</value> |
||||
</item> |
||||
<item> |
||||
<field>art</field> |
||||
<value>art</value> |
||||
</item> |
||||
|
||||
</authoritative_list> |
||||
</element> |
||||
<element> |
||||
<label>Description</label> |
||||
<name>dc:description</name> |
||||
<type>textarea</type> |
||||
<description>Description of the Image</description> |
||||
<required>true</required> |
||||
</element> |
||||
<element> |
||||
<label>Publisher</label> |
||||
<name>dc:publisher</name> |
||||
<type>textfield</type> |
||||
<description>An entity, (including persons, organizations, or services), responsible for making the resource available.</description> |
||||
<required>false</required> |
||||
</element> |
||||
<element> |
||||
<label>Contributor</label> |
||||
<name>dc:contributor</name> |
||||
<type>textfield</type> |
||||
<description>An entity responsible for contributing to the content of the resource such as a person, organization or service.</description> |
||||
<required>false</required> |
||||
</element> |
||||
<element> |
||||
<label>Date</label> |
||||
<name>dc:date</name> |
||||
<type>textfield</type> |
||||
<description>Temporal scope of the content if known. Date format is YYYY-MM-DD (e.g. 1890,1910-10,or 2007-10-23)</description> |
||||
<required>false</required> |
||||
</element> |
||||
<element> |
||||
<label>Resource Type</label> |
||||
<name>dc:type</name> |
||||
<type>textfield</type> |
||||
<description>Genre of the content of the resource. Examples include: home page, novel, poem, working paper, technical report, essay, dictionary.</description> |
||||
<required>false</required> |
||||
</element> |
||||
<element> |
||||
<label>Source</label> |
||||
<name>dc:source</name> |
||||
<type>textfield</type> |
||||
<description>A reference to a resource from which the present resource is derived.</description> |
||||
<required>false</required> |
||||
</element> |
||||
<element> |
||||
<label>Identifier</label> |
||||
<name>dc:identifier</name> |
||||
<type>textfield</type> |
||||
<description>A unique reference to the resource; In this instance, the accession number or collection number.</description> |
||||
<required>false</required> |
||||
</element> |
||||
<element> |
||||
<label>Language</label> |
||||
<name>dc:language</name> |
||||
<type>select</type> |
||||
<description>The language of the intellectual content of the resource.</description> |
||||
<required>false</required> |
||||
<authoritative_list> |
||||
<item> |
||||
<field>eng</field> |
||||
<value>English</value> |
||||
</item> |
||||
<item> |
||||
<field>fre</field> |
||||
<value>French</value> |
||||
</item> |
||||
</authoritative_list> |
||||
</element> |
||||
<element> |
||||
<label>Relation</label> |
||||
<name>dc:relation</name> |
||||
<type>textfield</type> |
||||
<description>Reference to a related resource.</description> |
||||
<required>false</required> |
||||
</element> |
||||
<element> |
||||
<label>Rights Management</label> |
||||
<name>dc:rights</name> |
||||
<type>textarea</type> |
||||
<description>Information about intellectual property rights, copyright, and various property rights.</description> |
||||
<required>false</required> |
||||
</element> |
||||
</form_elements> |
||||
</ingest_form> |
||||
</content_model> |
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<content_model xmlns="http://www.islandora.ca" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="standard_jpeg" xsi:schemaLocation="http://www.islandora.ca http://localhost/islandoracm.xsd"> |
||||
<mimetypes> |
||||
<type>image/jpeg</type> |
||||
</mimetypes> |
||||
<ingest_rules> |
||||
<rule> |
||||
<applies_to>image/jpeg</applies_to> |
||||
<ingest_methods> |
||||
<ingest_method module="" file="plugins/ImageManipulation.inc" class="ImageManipulation" method="manipulateImage" dsid="MEDIUM_SIZE" modified_files_ext="jpg"> |
||||
<parameters> |
||||
<parameter name="width">160</parameter> |
||||
<parameter name="height">120</parameter> |
||||
</parameters> |
||||
</ingest_method> |
||||
<ingest_method module="" file="plugins/ImageManipulation.inc" class="ImageManipulation" method="manipulateImage" dsid="TN" modified_files_ext="jpg"> |
||||
<parameters> |
||||
<parameter name="width">120</parameter> |
||||
<parameter name="height">120</parameter> |
||||
</parameters> |
||||
</ingest_method> |
||||
</ingest_methods> |
||||
</rule> |
||||
</ingest_rules> |
||||
<datastreams> |
||||
<datastream dsid="MEDIUM_SIZE"> |
||||
<display_method module="" file="plugins/ShowDemoStreamsInFieldSets.inc" class="ShowDemoStreamsInFieldSets" method="showMediumSize"/> |
||||
</datastream> |
||||
<datastream dsid="QDC"> |
||||
<display_method module="" file="plugins/ShowStreamsInFieldSets.inc" class="ShowStreamsInFieldSets" method="showQdc"/> |
||||
</datastream> |
||||
<datastream dsid="FULL_SIZE"> |
||||
<add_datastream_method module="" file="plugins/ImageManipulation.inc" class="ImageManipulation" method="manipulateImage" dsid="MEDIUM_SIZE" modified_files_ext="jpg"> |
||||
<parameters> |
||||
<parameter name="width">120</parameter> |
||||
<parameter name="height">160</parameter> |
||||
</parameters> |
||||
</add_datastream_method> |
||||
</datastream> |
||||
</datastreams> |
||||
<ingest_form dsid="QDC" page="2"> |
||||
<form_builder_method module="" file="plugins/DemoFormBuilder.inc" class="DemoFormBuilder" method="buildQDCForm" handler="handleQDCForm"/> |
||||
<form_elements> |
||||
<element label="Title/Caption/Image Name" name="dc:title" type="textfield" required="true"> |
||||
<description>The name given to the resource</description> |
||||
</element> |
||||
<element label="Creator/Photographer" name="dc:creator" type="textfield"> |
||||
<description>An entity primarily responsible for making the content of the resource such as a person, organization or service.</description> |
||||
</element> |
||||
<element label="Subject" name="dc:subject" type="select"> |
||||
<description>Subject</description> |
||||
<authoritative_list> |
||||
<item>image</item> |
||||
<item>photograph</item> |
||||
<item>presentation</item> |
||||
<item>art</item> |
||||
</authoritative_list> |
||||
</element> |
||||
<element label="Description" name="dc:description" type="textarea" required="true"> |
||||
<description>Description of the Image</description> |
||||
</element> |
||||
<element label="Publisher" name="dc:publisher" type="textfield"> |
||||
<description>An entity, (including persons, organizations, or services), responsible for making the resource available.</description> |
||||
</element> |
||||
<element label="Contributor" name="dc:contributor" type="textfield"> |
||||
<description>An entity responsible for contributing to the content of the resource such as a person, organization or service.</description> |
||||
</element> |
||||
<element label="Date" name="dc:date" type="textfield"> |
||||
<description>Temporal scope of the content if known. Date format is YYYY-MM-DD (e.g. 1890,1910-10,or 2007-10-23)</description> |
||||
</element> |
||||
<element label="Resource Type" name="dc:type" type="textfield"> |
||||
<description>Genre of the content of the resource. Examples include: home page, novel, poem, working paper, technical report, essay, dictionary.</description> |
||||
</element> |
||||
<element label="Source" name="dc:source" type="textfield"> |
||||
<description>A reference to a resource from which the present resource is derived.</description> |
||||
</element> |
||||
<element label="Identifier" name="dc:identifier" type="textfield"> |
||||
<description>A unique reference to the resource; In this instance, the accession number or collection number.</description> |
||||
</element> |
||||
<element label="Language" name="dc:language" type="select"> |
||||
<description>The language of the intellectual content of the resource.</description> |
||||
<authoritative_list> |
||||
<item field="eng">English</item> |
||||
<item field="fre">French</item> |
||||
</authoritative_list> |
||||
</element> |
||||
<element label="Relation" name="dc:relation" type="textfield"> |
||||
<description>Reference to a related resource.</description> |
||||
</element> |
||||
<element label="Rights Management" name="dc:rights" type="textarea"> |
||||
<description>Information about intellectual property rights, copyright, and various property rights.</description> |
||||
</element> |
||||
</form_elements> |
||||
</ingest_form> |
||||
</content_model> |
@ -0,0 +1,65 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<foxml:digitalObject PID="demo:Collection" VERSION="1.1" xmlns:foxml="info:fedora/fedora-system:def/foxml#" |
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="info:fedora/fedora-system:def/foxml# http://www.fedora.info/definitions/1/0/foxml1-1.xsd"> |
||||
<foxml:objectProperties> |
||||
<foxml:property NAME="info:fedora/fedora-system:def/model#state" VALUE="Active"/> |
||||
<foxml:property NAME="info:fedora/fedora-system:def/model#label" VALUE="Service Definition Object (Collection) for Image Collection Demo"/> |
||||
<foxml:property NAME="info:fedora/fedora-system:def/model#ownerId" VALUE="fedoraAdmin"/> |
||||
<foxml:property NAME="info:fedora/fedora-system:def/model#createdDate" VALUE="2008-07-02T05:09:42.015Z"/> |
||||
<foxml:property NAME="info:fedora/fedora-system:def/view#lastModifiedDate" VALUE="2011-03-29T14:15:20.712Z"/> |
||||
</foxml:objectProperties> |
||||
<foxml:datastream CONTROL_GROUP="X" ID="AUDIT" STATE="A" VERSIONABLE="false"> |
||||
<foxml:datastreamVersion CREATED="2008-07-02T05:09:42.015Z" |
||||
FORMAT_URI="info:fedora/fedora-system:format/xml.fedora.audit" ID="AUDIT.0" LABEL="Audit Trail for this object" MIMETYPE="text/xml"> |
||||
<foxml:xmlContent> |
||||
<audit:auditTrail xmlns:audit="info:fedora/fedora-system:def/audit#"> |
||||
<audit:record ID="AUDREC1"> |
||||
<audit:process type="Fedora API-M"/> |
||||
<audit:action>ingest</audit:action> |
||||
<audit:componentID/> |
||||
<audit:responsibility>fedoraAdmin</audit:responsibility> |
||||
<audit:date>2011-03-29T14:15:20.712Z</audit:date> |
||||
<audit:justification>Ingested from local file /usr/local/fedora/client/demo/foxml/local-server-demos/image-collection-demo/sDefObjects/demo_Collection.xml</audit:justification> |
||||
</audit:record> |
||||
</audit:auditTrail> |
||||
</foxml:xmlContent> |
||||
</foxml:datastreamVersion> |
||||
</foxml:datastream> |
||||
<foxml:datastream CONTROL_GROUP="X" ID="DC" STATE="A" VERSIONABLE="true"> |
||||
<foxml:datastreamVersion CREATED="2008-07-02T05:09:43.125Z" FORMAT_URI="http://www.openarchives.org/OAI/2.0/oai_dc/" |
||||
ID="DC1.0" LABEL="Dublin Core Record for this object" MIMETYPE="text/xml" SIZE="432"> |
||||
<foxml:xmlContent> |
||||
<oai_dc:dc xmlns:dc="http://purl.org/dc/elements/1.1/" |
||||
xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/" |
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.openarchives.org/OAI/2.0/oai_dc/ http://www.openarchives.org/OAI/2.0/oai_dc.xsd"> |
||||
<dc:title>Service Definition Object (Collection) for Image Collection Demo</dc:title> |
||||
<dc:identifier>demo:Collection</dc:identifier> |
||||
</oai_dc:dc> |
||||
</foxml:xmlContent> |
||||
</foxml:datastreamVersion> |
||||
</foxml:datastream> |
||||
<foxml:datastream CONTROL_GROUP="X" ID="RELS-EXT" STATE="A" VERSIONABLE="true"> |
||||
<foxml:datastreamVersion CREATED="2008-07-02T05:09:43.125Z" FORMAT_URI="info:fedora/fedora-system:FedoraRELSExt-1.0" |
||||
ID="RELS-EXT1.0" LABEL="RDF Statements about this object" MIMETYPE="application/rdf+xml" SIZE="404"> |
||||
<foxml:xmlContent> |
||||
<rdf:RDF xmlns:fedora-model="info:fedora/fedora-system:def/model#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> |
||||
<rdf:Description rdf:about="info:fedora/demo:Collection"> |
||||
<fedora-model:hasModel rdf:resource="info:fedora/fedora-system:ServiceDefinition-3.0"/> |
||||
</rdf:Description> |
||||
</rdf:RDF> |
||||
</foxml:xmlContent> |
||||
</foxml:datastreamVersion> |
||||
</foxml:datastream> |
||||
<foxml:datastream CONTROL_GROUP="X" ID="METHODMAP" STATE="A" VERSIONABLE="true"> |
||||
<foxml:datastreamVersion CREATED="2008-07-02T05:09:43.125Z" |
||||
FORMAT_URI="info:fedora/fedora-system:FedoraSDefMethodMap-1.0" ID="METHODMAP1.0" LABEL="Abstract Method Map" |
||||
MIMETYPE="text/xml" SIZE="401"> |
||||
<foxml:xmlContent> |
||||
<fmm:MethodMap name="MethodMap - Collection of Objects" xmlns:fmm="http://fedora.comm.nsdlib.org/service/methodmap"> |
||||
<fmm:Method operationLabel="An xml list of members in the collection" operationName="list"/> |
||||
<fmm:Method operationLabel="An html representation of the collection" operationName="view"/> |
||||
</fmm:MethodMap> |
||||
</foxml:xmlContent> |
||||
</foxml:datastreamVersion> |
||||
</foxml:datastream> |
||||
</foxml:digitalObject> |
@ -0,0 +1,196 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<foxml:digitalObject PID="demo:CollectionImpl" VERSION="1.1" xmlns:foxml="info:fedora/fedora-system:def/foxml#" |
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="info:fedora/fedora-system:def/foxml# http://www.fedora.info/definitions/1/0/foxml1-1.xsd"> |
||||
<foxml:objectProperties> |
||||
<foxml:property NAME="info:fedora/fedora-system:def/model#state" VALUE="Active"/> |
||||
<foxml:property NAME="info:fedora/fedora-system:def/model#label" VALUE="Service Deployment Object (Collection) for Image Collection Demo"/> |
||||
<foxml:property NAME="info:fedora/fedora-system:def/model#ownerId" VALUE="fedoraAdmin"/> |
||||
<foxml:property NAME="info:fedora/fedora-system:def/model#createdDate" VALUE="2008-07-02T05:09:42.015Z"/> |
||||
<foxml:property NAME="info:fedora/fedora-system:def/view#lastModifiedDate" VALUE="2011-03-29T14:15:20.819Z"/> |
||||
</foxml:objectProperties> |
||||
<foxml:datastream CONTROL_GROUP="X" ID="AUDIT" STATE="A" VERSIONABLE="false"> |
||||
<foxml:datastreamVersion CREATED="2008-07-02T05:09:42.015Z" |
||||
FORMAT_URI="info:fedora/fedora-system:format/xml.fedora.audit" ID="AUDIT.0" LABEL="Audit Trail for this object" MIMETYPE="text/xml"> |
||||
<foxml:xmlContent> |
||||
<audit:auditTrail xmlns:audit="info:fedora/fedora-system:def/audit#"> |
||||
<audit:record ID="AUDREC1"> |
||||
<audit:process type="Fedora API-M"/> |
||||
<audit:action>ingest</audit:action> |
||||
<audit:componentID/> |
||||
<audit:responsibility>fedoraAdmin</audit:responsibility> |
||||
<audit:date>2011-03-29T14:15:20.819Z</audit:date> |
||||
<audit:justification>Ingested from local file /usr/local/fedora/client/demo/foxml/local-server-demos/image-collection-demo/sDepObjects/demo_CollectionImpl.xml</audit:justification> |
||||
</audit:record> |
||||
</audit:auditTrail> |
||||
</foxml:xmlContent> |
||||
</foxml:datastreamVersion> |
||||
</foxml:datastream> |
||||
<foxml:datastream CONTROL_GROUP="X" ID="DC" STATE="A" VERSIONABLE="true"> |
||||
<foxml:datastreamVersion CREATED="2008-07-02T05:09:43.171Z" FORMAT_URI="http://www.openarchives.org/OAI/2.0/oai_dc/" |
||||
ID="DC1.0" LABEL="Dublin Core Record for this object" MIMETYPE="text/xml" SIZE="494"> |
||||
<foxml:xmlContent> |
||||
<oai_dc:dc xmlns:dc="http://purl.org/dc/elements/1.1/" |
||||
xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/" |
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.openarchives.org/OAI/2.0/oai_dc/ http://www.openarchives.org/OAI/2.0/oai_dc.xsd"> |
||||
<dc:title>Service Deployment Object (Collection) for Image Collection Demo</dc:title> |
||||
<dc:identifier>demo:ImageCollectionImpl</dc:identifier> |
||||
<dc:identifier>demo:CollectionImpl</dc:identifier> |
||||
</oai_dc:dc> |
||||
</foxml:xmlContent> |
||||
</foxml:datastreamVersion> |
||||
</foxml:datastream> |
||||
<foxml:datastream CONTROL_GROUP="X" ID="RELS-EXT" STATE="A" VERSIONABLE="true"> |
||||
<foxml:datastreamVersion CREATED="2008-07-02T05:09:43.171Z" FORMAT_URI="info:fedora/fedora-system:FedoraRELSExt-1.0" |
||||
ID="RELS-EXT.1" LABEL="RDF Statements about this object" MIMETYPE="application/rdf+xml" SIZE="674"> |
||||
<foxml:xmlContent> |
||||
<rdf:RDF xmlns:fedora-model="info:fedora/fedora-system:def/model#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> |
||||
<rdf:Description rdf:about="info:fedora/demo:CollectionImpl"> |
||||
<fedora-model:hasModel rdf:resource="info:fedora/fedora-system:ServiceDeployment-3.0"/> |
||||
<fedora-model:isDeploymentOf rdf:resource="info:fedora/demo:Collection"/> |
||||
<fedora-model:isContractorOf rdf:resource="info:fedora/demo:DualResImageCollection"/> |
||||
</rdf:Description> |
||||
</rdf:RDF> |
||||
</foxml:xmlContent> |
||||
</foxml:datastreamVersion> |
||||
</foxml:datastream> |
||||
<foxml:datastream CONTROL_GROUP="X" ID="METHODMAP" STATE="A" VERSIONABLE="true"> |
||||
<foxml:datastreamVersion CREATED="2008-07-02T05:09:43.171Z" |
||||
FORMAT_URI="info:fedora/fedora-system:FedoraSDepMethodMap-1.1" ID="METHODMAP1.0" LABEL="Deployment Method Map" |
||||
MIMETYPE="text/xml" SIZE="1948"> |
||||
<foxml:xmlContent> |
||||
<fmm:MethodMap name="MethodMap - Image Collection" xmlns:fmm="http://fedora.comm.nsdlib.org/service/methodmap"> |
||||
<fmm:Method operationLabel="An html representation of the collection" operationName="view" |
||||
wsdlMsgName="viewRequest" wsdlMsgOutput="dissemResponse"> |
||||
<fmm:DatastreamInputParm label="Stylesheet to transform LIST into html" parmName="XSLT" passBy="URL_REF" required="true"/> |
||||
<fmm:DatastreamInputParm label="The result of the list dissemination as a datastream" parmName="LIST" |
||||
passBy="URL_REF" required="true"/> |
||||
<fmm:DefaultInputParm defaultValue="yes" label="Whether to reload the stylesheet each time" |
||||
parmName="CLEAR_CACHE" passBy="VALUE" required="true"/> |
||||
<fmm:MethodReturnType wsdlMsgName="dissemResponse" wsdlMsgTOMIME="text/html"/> |
||||
</fmm:Method> |
||||
<fmm:Method operationLabel="An xml list of members in the collection" operationName="list" |
||||
wsdlMsgName="listRequest" wsdlMsgOutput="dissemResponse"> |
||||
<fmm:DatastreamInputParm defaultValue="" label="" parmName="QUERY" passBy="URL_REF" required="true"/> |
||||
<fmm:DefaultInputParm defaultValue="tuples" label="" parmName="TYPE" passBy="VALUE" required="true"/> |
||||
<fmm:DefaultInputParm defaultValue="itql" label="" parmName="LANG" passBy="VALUE" required="true"/> |
||||
<fmm:DefaultInputParm defaultValue="Sparql" label="" parmName="FORMAT" passBy="VALUE" required="true"/> |
||||
<fmm:MethodReturnType wsdlMsgName="dissemResponse" wsdlMsgTOMIME="text/xml"/> |
||||
</fmm:Method> |
||||
</fmm:MethodMap> |
||||
</foxml:xmlContent> |
||||
</foxml:datastreamVersion> |
||||
</foxml:datastream> |
||||
<foxml:datastream CONTROL_GROUP="X" ID="DSINPUTSPEC" STATE="A" VERSIONABLE="true"> |
||||
<foxml:datastreamVersion CREATED="2004-12-17T15:32:11.000Z" |
||||
FORMAT_URI="info:fedora/fedora-system:FedoraDSInputSpec-1.1" ID="DSINPUTSPEC1.0" |
||||
LABEL="Datastream Input Specification" MIMETYPE="text/xml" SIZE="1194"> |
||||
<foxml:xmlContent> |
||||
<fbs:DSInputSpec label="Datastream Input Specification for Image Collection" xmlns:fbs="http://fedora.comm.nsdlib.org/service/bindspec"> |
||||
<fbs:DSInput DSMax="1" DSMin="1" DSOrdinality="false" wsdlMsgPartName="XSLT"> |
||||
<fbs:DSInputLabel>XSLT Binding</fbs:DSInputLabel> |
||||
<fbs:DSMIME>text/xml</fbs:DSMIME> |
||||
<fbs:DSInputInstruction/> |
||||
</fbs:DSInput> |
||||
<fbs:DSInput DSMax="1" DSMin="1" DSOrdinality="false" wsdlMsgPartName="LIST"> |
||||
<fbs:DSInputLabel>LIST Binding</fbs:DSInputLabel> |
||||
<fbs:DSMIME>text/xml</fbs:DSMIME> |
||||
<fbs:DSInputInstruction/> |
||||
</fbs:DSInput> |
||||
<fbs:DSInput DSMax="1" DSMin="1" DSOrdinality="false" wsdlMsgPartName="QUERY"> |
||||
<fbs:DSInputLabel>QUERY Binding</fbs:DSInputLabel> |
||||
<fbs:DSMIME>text/plain</fbs:DSMIME> |
||||
<fbs:DSInputInstruction/> |
||||
</fbs:DSInput> |
||||
</fbs:DSInputSpec> |
||||
</foxml:xmlContent> |
||||
</foxml:datastreamVersion> |
||||
</foxml:datastream> |
||||
<foxml:datastream CONTROL_GROUP="X" ID="WSDL" STATE="A" VERSIONABLE="true"> |
||||
<foxml:datastreamVersion CREATED="2008-07-02T05:09:43.171Z" FORMAT_URI="http://schemas.xmlsoap.org/wsdl/" |
||||
ID="WSDL1.0" LABEL="WSDL Bindings" MIMETYPE="text/xml" SIZE="5242"> |
||||
<foxml:xmlContent> |
||||
<wsdl:definitions name="ImageCollection" targetNamespace="bmech" |
||||
xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" |
||||
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap" |
||||
xmlns:soapenc="http://schemas.xmlsoap.org/wsdl/soap/encoding" xmlns:this="bmech" |
||||
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> |
||||
<wsdl:types> |
||||
<xsd:schema targetNamespace="bmech"> |
||||
<xsd:simpleType name="TYPEType"> |
||||
<xsd:restriction base="xsd:string"/> |
||||
</xsd:simpleType> |
||||
<xsd:simpleType name="QUERYType"> |
||||
<xsd:restriction base="xsd:string"/> |
||||
</xsd:simpleType> |
||||
<xsd:simpleType name="XSLTType"> |
||||
<xsd:restriction base="xsd:string"/> |
||||
</xsd:simpleType> |
||||
<xsd:simpleType name="LANGType"> |
||||
<xsd:restriction base="xsd:string"/> |
||||
</xsd:simpleType> |
||||
<xsd:simpleType name="LISTType"> |
||||
<xsd:restriction base="xsd:string"/> |
||||
</xsd:simpleType> |
||||
<xsd:simpleType name="CLEAR_CACHEType"> |
||||
<xsd:restriction base="xsd:string"/> |
||||
</xsd:simpleType> |
||||
<xsd:simpleType name="FORMATType"> |
||||
<xsd:restriction base="xsd:string"/> |
||||
</xsd:simpleType> |
||||
</xsd:schema> |
||||
</wsdl:types> |
||||
<wsdl:message name="viewRequest"> |
||||
<wsdl:part name="XSLT" type="this:XSLTType"/> |
||||
<wsdl:part name="LIST" type="this:LISTType"/> |
||||
<wsdl:part name="CLEAR_CACHE" type="this:CLEAR_CACHEType"/> |
||||
</wsdl:message> |
||||
<wsdl:message name="listRequest"> |
||||
<wsdl:part name="TYPE" type="this:TYPEType"/> |
||||
<wsdl:part name="QUERY" type="this:QUERYType"/> |
||||
<wsdl:part name="LANG" type="this:LANGType"/> |
||||
<wsdl:part name="FORMAT" type="this:FORMATType"/> |
||||
</wsdl:message> |
||||
<wsdl:message name="dissemResponse"> |
||||
<wsdl:part name="dissem" type="xsd:base64Binary"/> |
||||
</wsdl:message> |
||||
<wsdl:portType name="ImageCollectionPortType"> |
||||
<wsdl:operation name="view"> |
||||
<wsdl:input message="this:viewRequest"/> |
||||
<wsdl:output message="this:dissemResponse"/> |
||||
</wsdl:operation> |
||||
<wsdl:operation name="list"> |
||||
<wsdl:input message="this:listRequest"/> |
||||
<wsdl:output message="this:dissemResponse"/> |
||||
</wsdl:operation> |
||||
</wsdl:portType> |
||||
<wsdl:service name="ImageCollection"> |
||||
<wsdl:port binding="this:ImageCollection_http" name="ImageCollection_port"> |
||||
<http:address location="LOCAL"/> |
||||
</wsdl:port> |
||||
</wsdl:service> |
||||
<wsdl:binding name="ImageCollection_http" type="this:ImageCollectionPortType"> |
||||
<http:binding verb="GET"/> |
||||
<wsdl:operation name="view"> |
||||
<http:operation location="http://local.fedora.server/saxon/SaxonServlet?source=(LIST)&style=(XSLT)&clear-stylesheet-cache=(CLEAR_CACHE)"/> |
||||
<wsdl:input> |
||||
<http:urlReplacement/> |
||||
</wsdl:input> |
||||
<wsdl:output> |
||||
<mime:content type="text/html"/> |
||||
</wsdl:output> |
||||
</wsdl:operation> |
||||
<wsdl:operation name="list"> |
||||
<http:operation location="http://local.fedora.server/fedora/risearch?type=(TYPE)&lang=(LANG)&format=(FORMAT)&query=(QUERY)"/> |
||||
<wsdl:input> |
||||
<http:urlReplacement/> |
||||
</wsdl:input> |
||||
<wsdl:output> |
||||
<mime:content type="text/xml"/> |
||||
</wsdl:output> |
||||
</wsdl:operation> |
||||
</wsdl:binding> |
||||
</wsdl:definitions> |
||||
</foxml:xmlContent> |
||||
</foxml:datastreamVersion> |
||||
</foxml:datastream> |
||||
</foxml:digitalObject> |
@ -0,0 +1,76 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<foxml:digitalObject PID="demo:DualResImage" VERSION="1.1" xmlns:foxml="info:fedora/fedora-system:def/foxml#" |
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="info:fedora/fedora-system:def/foxml# http://www.fedora.info/definitions/1/0/foxml1-1.xsd"> |
||||
<foxml:objectProperties> |
||||
<foxml:property NAME="info:fedora/fedora-system:def/model#state" VALUE="Active"/> |
||||
<foxml:property NAME="info:fedora/fedora-system:def/model#label" VALUE="Content Model Object (Image) for Image Collection Demo"/> |
||||
<foxml:property NAME="info:fedora/fedora-system:def/model#ownerId" VALUE="fedoraAdmin"/> |
||||
<foxml:property NAME="info:fedora/fedora-system:def/model#createdDate" VALUE="2007-08-15T14:36:32.085Z"/> |
||||
<foxml:property NAME="info:fedora/fedora-system:def/view#lastModifiedDate" VALUE="2011-03-29T14:15:19.456Z"/> |
||||
</foxml:objectProperties> |
||||
<foxml:datastream CONTROL_GROUP="X" ID="AUDIT" STATE="A" VERSIONABLE="false"> |
||||
<foxml:datastreamVersion CREATED="2007-08-15T14:36:32.085Z" |
||||
FORMAT_URI="info:fedora/fedora-system:format/xml.fedora.audit" ID="AUDIT.0" LABEL="Audit Trail for this object" MIMETYPE="text/xml"> |
||||
<foxml:xmlContent> |
||||
<audit:auditTrail xmlns:audit="info:fedora/fedora-system:def/audit#"> |
||||
<audit:record ID="AUDREC1"> |
||||
<audit:process type="Fedora API-M"/> |
||||
<audit:action>ingest</audit:action> |
||||
<audit:componentID/> |
||||
<audit:responsibility>fedoraAdmin</audit:responsibility> |
||||
<audit:date>2011-03-29T14:15:19.456Z</audit:date> |
||||
<audit:justification>Ingested from local file /usr/local/fedora/client/demo/foxml/local-server-demos/image-collection-demo/cModelObjects/demo_DualResImage.xml</audit:justification> |
||||
</audit:record> |
||||
</audit:auditTrail> |
||||
</foxml:xmlContent> |
||||
</foxml:datastreamVersion> |
||||
</foxml:datastream> |
||||
<foxml:datastream CONTROL_GROUP="X" ID="DC" STATE="A" VERSIONABLE="true"> |
||||
<foxml:datastreamVersion CREATED="2008-07-02T05:09:42.890Z" FORMAT_URI="http://www.openarchives.org/OAI/2.0/oai_dc/" |
||||
ID="DC1.0" LABEL="Dublin Core Record for this object" MIMETYPE="text/xml" SIZE="424"> |
||||
<foxml:xmlContent> |
||||
<oai_dc:dc xmlns:dc="http://purl.org/dc/elements/1.1/" |
||||
xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/" |
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.openarchives.org/OAI/2.0/oai_dc/ http://www.openarchives.org/OAI/2.0/oai_dc.xsd"> |
||||
<dc:title>Content Model Object (Image) for Image Collection Demo</dc:title> |
||||
<dc:identifier>demo:DualResImage</dc:identifier> |
||||
</oai_dc:dc> |
||||
</foxml:xmlContent> |
||||
</foxml:datastreamVersion> |
||||
</foxml:datastream> |
||||
<foxml:datastream CONTROL_GROUP="X" ID="RELS-EXT" STATE="A" VERSIONABLE="true"> |
||||
<foxml:datastreamVersion CREATED="2008-07-02T05:09:42.890Z" FORMAT_URI="info:fedora/fedora-system:FedoraRELSExt-1.0" |
||||
ID="RELS-EXT.0" LABEL="RDF Statements about this object" MIMETYPE="application/rdf+xml" SIZE="472"> |
||||
<foxml:xmlContent> |
||||
<rdf:RDF xmlns:fedora-model="info:fedora/fedora-system:def/model#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> |
||||
<rdf:Description rdf:about="info:fedora/demo:DualResImage"> |
||||
<fedora-model:hasModel rdf:resource="info:fedora/fedora-system:ContentModel-3.0"/> |
||||
<fedora-model:hasService rdf:resource="info:fedora/demo:DualResolution"/> |
||||
</rdf:Description> |
||||
</rdf:RDF> |
||||
</foxml:xmlContent> |
||||
</foxml:datastreamVersion> |
||||
</foxml:datastream> |
||||
<foxml:datastream CONTROL_GROUP="X" ID="DS-COMPOSITE-MODEL" STATE="A" VERSIONABLE="true"> |
||||
<foxml:datastreamVersion CREATED="2007-08-15T14:36:30.369Z" |
||||
FORMAT_URI="info:fedora/fedora-system:FedoraDSCompositeModel-1.0" ID="DS-COMPOSITE-MODEL1.0" |
||||
LABEL="Datastream Composite Model" MIMETYPE="text/xml" SIZE="651"> |
||||
<foxml:xmlContent> |
||||
<dsCompositeModel xmlns="info:fedora/fedora-system:def/dsCompositeModel#"> |
||||
<dsTypeModel ID="DC"> |
||||
<form FORMAT_URI="http://www.openarchives.org/OAI/2.0/oai_dc/" MIME="text/xml"/> |
||||
</dsTypeModel> |
||||
<dsTypeModel ID="RELS-EXT"> |
||||
<form FORMAT_URI="info:fedora/fedora-system:FedoraRELSExt-1.0" MIME="application/rdf+xml"/> |
||||
</dsTypeModel> |
||||
<dsTypeModel ID="MEDIUM_SIZE"> |
||||
<form MIME="image/jpeg"/> |
||||
</dsTypeModel> |
||||
<dsTypeModel ID="FULL_SIZE"> |
||||
<form MIME="image/jpeg"/> |
||||
</dsTypeModel> |
||||
</dsCompositeModel> |
||||
</foxml:xmlContent> |
||||
</foxml:datastreamVersion> |
||||
</foxml:datastream> |
||||
</foxml:digitalObject> |
@ -0,0 +1,73 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<foxml:digitalObject PID="demo:DualResImageCollection" VERSION="1.1" xmlns:foxml="info:fedora/fedora-system:def/foxml#" |
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="info:fedora/fedora-system:def/foxml# http://www.fedora.info/definitions/1/0/foxml1-1.xsd"> |
||||
<foxml:objectProperties> |
||||
<foxml:property NAME="info:fedora/fedora-system:def/model#state" VALUE="Active"/> |
||||
<foxml:property NAME="info:fedora/fedora-system:def/model#label" VALUE="Content Model Object (Image Collection) for Image Collection Demo"/> |
||||
<foxml:property NAME="info:fedora/fedora-system:def/model#ownerId" VALUE="fedoraAdmin"/> |
||||
<foxml:property NAME="info:fedora/fedora-system:def/model#createdDate" VALUE="2007-08-15T14:36:34.682Z"/> |
||||
<foxml:property NAME="info:fedora/fedora-system:def/view#lastModifiedDate" VALUE="2011-03-29T14:15:19.509Z"/> |
||||
</foxml:objectProperties> |
||||
<foxml:datastream CONTROL_GROUP="X" ID="AUDIT" STATE="A" VERSIONABLE="false"> |
||||
<foxml:datastreamVersion CREATED="2007-08-15T14:36:34.682Z" |
||||
FORMAT_URI="info:fedora/fedora-system:format/xml.fedora.audit" ID="AUDIT.0" LABEL="Audit Trail for this object" MIMETYPE="text/xml"> |
||||
<foxml:xmlContent> |
||||
<audit:auditTrail xmlns:audit="info:fedora/fedora-system:def/audit#"> |
||||
<audit:record ID="AUDREC1"> |
||||
<audit:process type="Fedora API-M"/> |
||||
<audit:action>ingest</audit:action> |
||||
<audit:componentID/> |
||||
<audit:responsibility>fedoraAdmin</audit:responsibility> |
||||
<audit:date>2011-03-29T14:15:19.509Z</audit:date> |
||||
<audit:justification>Ingested from local file /usr/local/fedora/client/demo/foxml/local-server-demos/image-collection-demo/cModelObjects/demo_DualResImageCollection.xml</audit:justification> |
||||
</audit:record> |
||||
</audit:auditTrail> |
||||
</foxml:xmlContent> |
||||
</foxml:datastreamVersion> |
||||
</foxml:datastream> |
||||
<foxml:datastream CONTROL_GROUP="X" ID="DC" STATE="A" VERSIONABLE="true"> |
||||
<foxml:datastreamVersion CREATED="2008-07-02T05:09:42.906Z" FORMAT_URI="http://www.openarchives.org/OAI/2.0/oai_dc/" |
||||
ID="DC1.0" LABEL="Dublin Core Record for this object" MIMETYPE="text/xml" SIZE="445"> |
||||
<foxml:xmlContent> |
||||
<oai_dc:dc xmlns:dc="http://purl.org/dc/elements/1.1/" |
||||
xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/" |
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.openarchives.org/OAI/2.0/oai_dc/ http://www.openarchives.org/OAI/2.0/oai_dc.xsd"> |
||||
<dc:title>Content Model Object (Image Collection) for Image Collection Demo</dc:title> |
||||
<dc:identifier>demo:DualResImageCollection</dc:identifier> |
||||
</oai_dc:dc> |
||||
</foxml:xmlContent> |
||||
</foxml:datastreamVersion> |
||||
</foxml:datastream> |
||||
<foxml:datastream CONTROL_GROUP="X" ID="RELS-EXT" STATE="A" VERSIONABLE="true"> |
||||
<foxml:datastreamVersion CREATED="2008-07-02T05:09:42.906Z" FORMAT_URI="info:fedora/fedora-system:FedoraRELSExt-1.0" |
||||
ID="RELS-EXT.0" LABEL="RDF Statements about this object" MIMETYPE="application/rdf+xml" SIZE="478"> |
||||
<foxml:xmlContent> |
||||
<rdf:RDF xmlns:fedora-model="info:fedora/fedora-system:def/model#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> |
||||
<rdf:Description rdf:about="info:fedora/demo:DualResImageCollection"> |
||||
<fedora-model:hasModel rdf:resource="info:fedora/fedora-system:ContentModel-3.0"/> |
||||
<fedora-model:hasService rdf:resource="info:fedora/demo:Collection"/> |
||||
</rdf:Description> |
||||
</rdf:RDF> |
||||
</foxml:xmlContent> |
||||
</foxml:datastreamVersion> |
||||
</foxml:datastream> |
||||
<foxml:datastream CONTROL_GROUP="X" ID="DS-COMPOSITE-MODEL" STATE="A" VERSIONABLE="true"> |
||||
<foxml:datastreamVersion CREATED="2007-08-15T14:36:30.369Z" |
||||
FORMAT_URI="info:fedora/fedora-system:FedoraDSCompositeModel-1.0" ID="DS-COMPOSITE-MODEL1.0" |
||||
LABEL="Datastream Composite Model" MIMETYPE="text/xml" SIZE="410"> |
||||
<foxml:xmlContent> |
||||
<dsCompositeModel xmlns="info:fedora/fedora-system:def/dsCompositeModel#"> |
||||
<dsTypeModel ID="QUERY"> |
||||
<form MIME="text/plain"/> |
||||
</dsTypeModel> |
||||
<dsTypeModel ID="XSLT"> |
||||
<form MIME="text/xml"/> |
||||
</dsTypeModel> |
||||
<dsTypeModel ID="LIST"> |
||||
<form MIME="text/xml"/> |
||||
</dsTypeModel> |
||||
</dsCompositeModel> |
||||
</foxml:xmlContent> |
||||
</foxml:datastreamVersion> |
||||
</foxml:datastream> |
||||
</foxml:digitalObject> |
@ -0,0 +1,162 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<foxml:digitalObject PID="demo:DualResImageImpl" VERSION="1.1" xmlns:foxml="info:fedora/fedora-system:def/foxml#" |
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="info:fedora/fedora-system:def/foxml# http://www.fedora.info/definitions/1/0/foxml1-1.xsd"> |
||||
<foxml:objectProperties> |
||||
<foxml:property NAME="info:fedora/fedora-system:def/model#state" VALUE="Active"/> |
||||
<foxml:property NAME="info:fedora/fedora-system:def/model#label" VALUE="Service Deployment Object (Image) for Image Collection Demo"/> |
||||
<foxml:property NAME="info:fedora/fedora-system:def/model#ownerId" VALUE="fedoraAdmin"/> |
||||
<foxml:property NAME="info:fedora/fedora-system:def/model#createdDate" VALUE="2008-07-02T05:09:42.015Z"/> |
||||
<foxml:property NAME="info:fedora/fedora-system:def/view#lastModifiedDate" VALUE="2011-03-29T14:15:20.881Z"/> |
||||
</foxml:objectProperties> |
||||
<foxml:datastream CONTROL_GROUP="X" ID="AUDIT" STATE="A" VERSIONABLE="false"> |
||||
<foxml:datastreamVersion CREATED="2008-07-02T05:09:42.015Z" |
||||
FORMAT_URI="info:fedora/fedora-system:format/xml.fedora.audit" ID="AUDIT.0" LABEL="Audit Trail for this object" MIMETYPE="text/xml"> |
||||
<foxml:xmlContent> |
||||
<audit:auditTrail xmlns:audit="info:fedora/fedora-system:def/audit#"> |
||||
<audit:record ID="AUDREC1"> |
||||
<audit:process type="Fedora API-M"/> |
||||
<audit:action>ingest</audit:action> |
||||
<audit:componentID/> |
||||
<audit:responsibility>fedoraAdmin</audit:responsibility> |
||||
<audit:date>2011-03-29T14:15:20.881Z</audit:date> |
||||
<audit:justification>Ingested from local file /usr/local/fedora/client/demo/foxml/local-server-demos/image-collection-demo/sDepObjects/demo_DualResImageImpl.xml</audit:justification> |
||||
</audit:record> |
||||
</audit:auditTrail> |
||||
</foxml:xmlContent> |
||||
</foxml:datastreamVersion> |
||||
</foxml:datastream> |
||||
<foxml:datastream CONTROL_GROUP="X" ID="DC" STATE="A" VERSIONABLE="true"> |
||||
<foxml:datastreamVersion CREATED="2008-07-02T05:09:43.203Z" FORMAT_URI="http://www.openarchives.org/OAI/2.0/oai_dc/" |
||||
ID="DC1.0" LABEL="Dublin Core Record for this object" MIMETYPE="text/xml" SIZE="433"> |
||||
<foxml:xmlContent> |
||||
<oai_dc:dc xmlns:dc="http://purl.org/dc/elements/1.1/" |
||||
xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/" |
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.openarchives.org/OAI/2.0/oai_dc/ http://www.openarchives.org/OAI/2.0/oai_dc.xsd"> |
||||
<dc:title>Service Deployment Object (Image) for Image Collection Demo</dc:title> |
||||
<dc:identifier>demo:DualResImageImpl</dc:identifier> |
||||
</oai_dc:dc> |
||||
</foxml:xmlContent> |
||||
</foxml:datastreamVersion> |
||||
</foxml:datastream> |
||||
<foxml:datastream CONTROL_GROUP="X" ID="RELS-EXT" STATE="A" VERSIONABLE="true"> |
||||
<foxml:datastreamVersion CREATED="2008-07-02T05:09:43.203Z" FORMAT_URI="info:fedora/fedora-system:FedoraRELSExt-1.0" |
||||
ID="RELS-EXT.1" LABEL="RDF Statements about this object" MIMETYPE="application/rdf+xml" SIZE="670"> |
||||
<foxml:xmlContent> |
||||
<rdf:RDF xmlns:fedora-model="info:fedora/fedora-system:def/model#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> |
||||
<rdf:Description rdf:about="info:fedora/demo:DualResImageImpl"> |
||||
<fedora-model:hasModel rdf:resource="info:fedora/fedora-system:ServiceDeployment-3.0"/> |
||||
<fedora-model:isDeploymentOf rdf:resource="info:fedora/demo:DualResolution"/> |
||||
<fedora-model:isContractorOf rdf:resource="info:fedora/demo:DualResImage"/> |
||||
</rdf:Description> |
||||
</rdf:RDF> |
||||
</foxml:xmlContent> |
||||
</foxml:datastreamVersion> |
||||
</foxml:datastream> |
||||
<foxml:datastream CONTROL_GROUP="X" ID="METHODMAP" STATE="A" VERSIONABLE="true"> |
||||
<foxml:datastreamVersion CREATED="2008-07-02T05:09:43.203Z" |
||||
FORMAT_URI="info:fedora/fedora-system:FedoraSDepMethodMap-1.1" ID="METHODMAP1.0" LABEL="Deployment Method Map" |
||||
MIMETYPE="text/xml" SIZE="1152"> |
||||
<foxml:xmlContent> |
||||
<fmm:MethodMap name="MethodMap - Dual Resolution Image Implementation" xmlns:fmm="http://fedora.comm.nsdlib.org/service/methodmap"> |
||||
<fmm:Method operationLabel="A full-size image" operationName="fullSize" wsdlMsgName="fullSizeRequest" wsdlMsgOutput="dissemResponse"> |
||||
<fmm:DatastreamInputParm defaultValue="" label="The full-size image" parmName="FULL_SIZE" passBy="URL_REF" required="true"/> |
||||
<fmm:MethodReturnType wsdlMsgName="dissemResponse" wsdlMsgTOMIME="image/jpeg"/> |
||||
</fmm:Method> |
||||
<fmm:Method operationLabel="A medium-size image" operationName="mediumSize" wsdlMsgName="mediumSizeRequest" wsdlMsgOutput="dissemResponse"> |
||||
<fmm:DatastreamInputParm defaultValue="" label="The medium-size image" parmName="MEDIUM_SIZE" |
||||
passBy="URL_REF" required="true"/> |
||||
<fmm:MethodReturnType wsdlMsgName="dissemResponse" wsdlMsgTOMIME="image/jpeg"/> |
||||
</fmm:Method> |
||||
</fmm:MethodMap> |
||||
</foxml:xmlContent> |
||||
</foxml:datastreamVersion> |
||||
</foxml:datastream> |
||||
<foxml:datastream CONTROL_GROUP="X" ID="DSINPUTSPEC" STATE="A" VERSIONABLE="true"> |
||||
<foxml:datastreamVersion CREATED="2008-07-02T05:09:43.203Z" |
||||
FORMAT_URI="info:fedora/fedora-system:FedoraDSInputSpec-1.1" ID="DSINPUTSPEC1.0" |
||||
LABEL="Datastream Input Specification" MIMETYPE="text/xml" SIZE="899"> |
||||
<foxml:xmlContent> |
||||
<fbs:DSInputSpec label="Datastream Input Specification for Dual Resolution Image Implementation" xmlns:fbs="http://fedora.comm.nsdlib.org/service/bindspec"> |
||||
<fbs:DSInput DSMax="1" DSMin="1" DSOrdinality="false" wsdlMsgPartName="FULL_SIZE"> |
||||
<fbs:DSInputLabel>FULL_SIZE Binding</fbs:DSInputLabel> |
||||
<fbs:DSMIME>image/jpeg</fbs:DSMIME> |
||||
<fbs:DSInputInstruction/> |
||||
</fbs:DSInput> |
||||
<fbs:DSInput DSMax="1" DSMin="1" DSOrdinality="false" wsdlMsgPartName="MEDIUM_SIZE"> |
||||
<fbs:DSInputLabel>MEDIUM_SIZE Binding</fbs:DSInputLabel> |
||||
<fbs:DSMIME>image/jpeg</fbs:DSMIME> |
||||
<fbs:DSInputInstruction/> |
||||
</fbs:DSInput> |
||||
</fbs:DSInputSpec> |
||||
</foxml:xmlContent> |
||||
</foxml:datastreamVersion> |
||||
</foxml:datastream> |
||||
<foxml:datastream CONTROL_GROUP="X" ID="WSDL" STATE="A" VERSIONABLE="true"> |
||||
<foxml:datastreamVersion CREATED="2008-07-02T05:09:43.203Z" FORMAT_URI="http://schemas.xmlsoap.org/wsdl/" |
||||
ID="WSDL1.0" LABEL="WSDL Bindings" MIMETYPE="text/xml" SIZE="3744"> |
||||
<foxml:xmlContent> |
||||
<wsdl:definitions name="DualResolutionImageImplementation" targetNamespace="bmech" |
||||
xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" |
||||
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap" |
||||
xmlns:soapenc="http://schemas.xmlsoap.org/wsdl/soap/encoding" xmlns:this="bmech" |
||||
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> |
||||
<wsdl:types> |
||||
<xsd:schema targetNamespace="bmech"> |
||||
<xsd:simpleType name="FULL_SIZEType"> |
||||
<xsd:restriction base="xsd:string"/> |
||||
</xsd:simpleType> |
||||
<xsd:simpleType name="MEDIUM_SIZEType"> |
||||
<xsd:restriction base="xsd:string"/> |
||||
</xsd:simpleType> |
||||
</xsd:schema> |
||||
</wsdl:types> |
||||
<wsdl:message name="fullSizeRequest"> |
||||
<wsdl:part name="FULL_SIZE" type="this:FULL_SIZEType"/> |
||||
</wsdl:message> |
||||
<wsdl:message name="mediumSizeRequest"> |
||||
<wsdl:part name="MEDIUM_SIZE" type="this:MEDIUM_SIZEType"/> |
||||
</wsdl:message> |
||||
<wsdl:message name="dissemResponse"> |
||||
<wsdl:part name="dissem" type="xsd:base64Binary"/> |
||||
</wsdl:message> |
||||
<wsdl:portType name="DualResImageImplPortType"> |
||||
<wsdl:operation name="fullSize"> |
||||
<wsdl:input message="this:fullSizeRequest"/> |
||||
<wsdl:output message="this:dissemResponse"/> |
||||
</wsdl:operation> |
||||
<wsdl:operation name="mediumSize"> |
||||
<wsdl:input message="this:mediumSizeRequest"/> |
||||
<wsdl:output message="this:dissemResponse"/> |
||||
</wsdl:operation> |
||||
</wsdl:portType> |
||||
<wsdl:service name="DualResImageImpl"> |
||||
<wsdl:port binding="this:DualResImageImpl_http" name="DualResImageImpl_port"> |
||||
<http:address location="LOCAL"/> |
||||
</wsdl:port> |
||||
</wsdl:service> |
||||
<wsdl:binding name="DualResImageImpl_http" type="this:DualResImageImplPortType"> |
||||
<http:binding verb="GET"/> |
||||
<wsdl:operation name="fullSize"> |
||||
<http:operation location="(FULL_SIZE)"/> |
||||
<wsdl:input> |
||||
<http:urlReplacement/> |
||||
</wsdl:input> |
||||
<wsdl:output> |
||||
<mime:content type="image/jpeg"/> |
||||
</wsdl:output> |
||||
</wsdl:operation> |
||||
<wsdl:operation name="mediumSize"> |
||||
<http:operation location="(MEDIUM_SIZE)"/> |
||||
<wsdl:input> |
||||
<http:urlReplacement/> |
||||
</wsdl:input> |
||||
<wsdl:output> |
||||
<mime:content type="image/jpeg"/> |
||||
</wsdl:output> |
||||
</wsdl:operation> |
||||
</wsdl:binding> |
||||
</wsdl:definitions> |
||||
</foxml:xmlContent> |
||||
</foxml:datastreamVersion> |
||||
</foxml:datastream> |
||||
</foxml:digitalObject> |
@ -0,0 +1,65 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<foxml:digitalObject PID="demo:DualResolution" VERSION="1.1" xmlns:foxml="info:fedora/fedora-system:def/foxml#" |
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="info:fedora/fedora-system:def/foxml# http://www.fedora.info/definitions/1/0/foxml1-1.xsd"> |
||||
<foxml:objectProperties> |
||||
<foxml:property NAME="info:fedora/fedora-system:def/model#state" VALUE="Active"/> |
||||
<foxml:property NAME="info:fedora/fedora-system:def/model#label" VALUE="Service Definition Object (Image) for Image Collection Demo"/> |
||||
<foxml:property NAME="info:fedora/fedora-system:def/model#ownerId" VALUE="fedoraAdmin"/> |
||||
<foxml:property NAME="info:fedora/fedora-system:def/model#createdDate" VALUE="2008-07-02T05:09:42.015Z"/> |
||||
<foxml:property NAME="info:fedora/fedora-system:def/view#lastModifiedDate" VALUE="2011-03-29T14:15:20.765Z"/> |
||||
</foxml:objectProperties> |
||||
<foxml:datastream CONTROL_GROUP="X" ID="AUDIT" STATE="A" VERSIONABLE="false"> |
||||
<foxml:datastreamVersion CREATED="2008-07-02T05:09:42.015Z" |
||||
FORMAT_URI="info:fedora/fedora-system:format/xml.fedora.audit" ID="AUDIT.0" LABEL="Audit Trail for this object" MIMETYPE="text/xml"> |
||||
<foxml:xmlContent> |
||||
<audit:auditTrail xmlns:audit="info:fedora/fedora-system:def/audit#"> |
||||
<audit:record ID="AUDREC1"> |
||||
<audit:process type="Fedora API-M"/> |
||||
<audit:action>ingest</audit:action> |
||||
<audit:componentID/> |
||||
<audit:responsibility>fedoraAdmin</audit:responsibility> |
||||
<audit:date>2011-03-29T14:15:20.765Z</audit:date> |
||||
<audit:justification>Ingested from local file /usr/local/fedora/client/demo/foxml/local-server-demos/image-collection-demo/sDefObjects/demo_DualResolution.xml</audit:justification> |
||||
</audit:record> |
||||
</audit:auditTrail> |
||||
</foxml:xmlContent> |
||||
</foxml:datastreamVersion> |
||||
</foxml:datastream> |
||||
<foxml:datastream CONTROL_GROUP="X" ID="DC" STATE="A" VERSIONABLE="true"> |
||||
<foxml:datastreamVersion CREATED="2008-07-02T05:09:43.156Z" FORMAT_URI="http://www.openarchives.org/OAI/2.0/oai_dc/" |
||||
ID="DC1.0" LABEL="Dublin Core Record for this object" MIMETYPE="text/xml" SIZE="431"> |
||||
<foxml:xmlContent> |
||||
<oai_dc:dc xmlns:dc="http://purl.org/dc/elements/1.1/" |
||||
xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/" |
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.openarchives.org/OAI/2.0/oai_dc/ http://www.openarchives.org/OAI/2.0/oai_dc.xsd"> |
||||
<dc:title>Service Definition Object (Image) for Image Collection Demo</dc:title> |
||||
<dc:identifier>demo:DualResolution</dc:identifier> |
||||
</oai_dc:dc> |
||||
</foxml:xmlContent> |
||||
</foxml:datastreamVersion> |
||||
</foxml:datastream> |
||||
<foxml:datastream CONTROL_GROUP="X" ID="RELS-EXT" STATE="A" VERSIONABLE="true"> |
||||
<foxml:datastreamVersion CREATED="2008-07-02T05:09:43.156Z" FORMAT_URI="info:fedora/fedora-system:FedoraRELSExt-1.0" |
||||
ID="RELS-EXT1.0" LABEL="RDF Statements about this object" MIMETYPE="application/rdf+xml" SIZE="408"> |
||||
<foxml:xmlContent> |
||||
<rdf:RDF xmlns:fedora-model="info:fedora/fedora-system:def/model#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> |
||||
<rdf:Description rdf:about="info:fedora/demo:DualResolution"> |
||||
<fedora-model:hasModel rdf:resource="info:fedora/fedora-system:ServiceDefinition-3.0"/> |
||||
</rdf:Description> |
||||
</rdf:RDF> |
||||
</foxml:xmlContent> |
||||
</foxml:datastreamVersion> |
||||
</foxml:datastream> |
||||
<foxml:datastream CONTROL_GROUP="X" ID="METHODMAP" STATE="A" VERSIONABLE="true"> |
||||
<foxml:datastreamVersion CREATED="2008-07-02T05:09:43.156Z" |
||||
FORMAT_URI="info:fedora/fedora-system:FedoraSDefMethodMap-1.0" ID="METHODMAP1.0" LABEL="Abstract Method Map" |
||||
MIMETYPE="text/xml" SIZE="367"> |
||||
<foxml:xmlContent> |
||||
<fmm:MethodMap name="MethodMap - Dual Resolution Image" xmlns:fmm="http://fedora.comm.nsdlib.org/service/methodmap"> |
||||
<fmm:Method operationLabel="A full-size image" operationName="fullSize"/> |
||||
<fmm:Method operationLabel="A medium-size image" operationName="mediumSize"/> |
||||
</fmm:MethodMap> |
||||
</foxml:xmlContent> |
||||
</foxml:datastreamVersion> |
||||
</foxml:datastream> |
||||
</foxml:digitalObject> |
Loading…
Reference in new issue