Component org.nuxeo.ecm.platform.picture.coreTypes
In bundle org.nuxeo.ecm.platform.picture.core
Requirements
Resolution Order
513
The resolution order represents the order in which this component has been resolved by the Nuxeo Runtime
framework.
You can influence this order by adding "require" tags in your component declaration, to make sure it is resolved after another component.
Contributions
XML Source
<?xml version="1.0"?>
<component name="org.nuxeo.ecm.platform.picture.coreTypes">
<require>org.nuxeo.ecm.core.schema.TypeService</require>
<require>org.nuxeo.ecm.core.CoreExtensions</require>
<require>org.nuxeo.ecm.tags.schemas</require>
<extension target="org.nuxeo.ecm.core.schema.TypeService"
point="schema">
<schema name="picture" src="schema/picture.xsd"/>
<schema name="image_metadata" src="schema/image_metadata.xsd" prefix="imd"/>
<schema name="iptc" src="schema/iptc.xsd" prefix="iptc"/>
</extension>
<extension target="org.nuxeo.ecm.core.schema.TypeService"
point="doctype">
<facet name="Picture" perDocumentQuery="false">
<schema name="file"/>
<schema name="picture"/>
<schema name="image_metadata"/>
</facet>
<!-- deprecated since 7.1, here for compat -->
<facet name="MultiviewPicture"/>
<doctype name="Picture" extends="Document">
<schema name="common"/>
<schema name="uid"/>
<schema name="dublincore"/>
<facet name="Picture"/>
<facet name="Versionable"/>
<facet name="Publishable"/>
<facet name="Commentable"/>
<facet name="HasRelatedText"/>
<facet name="NXTag" />
</doctype>
<doctype name="Folder" append="true">
<subtypes>
<type>Picture</type>
</subtypes>
</doctype>
<doctype name="OrderedFolder" append="true">
<subtypes>
<type>Picture</type>
</subtypes>
</doctype>
<doctype name="Workspace" append="true">
<subtypes>
<type>Picture</type>
</subtypes>
</doctype>
<doctype name="PictureBook" append="true">
<subtypes>
<type>Picture</type>
</subtypes>
</doctype>
</extension>
</component>