Component org.nuxeo.ecm.platform.picture.jsf.types
In bundle org.nuxeo.ecm.platform.picture.core
Resolution Order
380
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" encoding="UTF-8"?>
<component name="org.nuxeo.ecm.platform.picture.jsf.types">
<extension target="org.nuxeo.ecm.platform.types.TypeService" point="types">
<type id="PictureBook">
<label>PictureBook</label>
<icon>/icons/picturebook.gif</icon>
<bigIcon>/icons/picturebook_100.png</bigIcon>
<description>PictureBook.description</description>
<category>Collaborative</category>
<default-view>view_documents</default-view>
<layouts mode="any">
<layout>heading</layout>
</layouts>
<contentViews category="content">
<contentView>document_content</contentView>
</contentViews>
<contentViews category="trash_content">
<contentView showInExportView="false">
document_trash_content
</contentView>
</contentViews>
</type>
<type id="Picture">
<label>Picture</label>
<default-view>view_documents</default-view>
<icon>/icons/image.gif</icon>
<bigIcon>/icons/image_100.png</bigIcon>
<category>SimpleDocument</category>
<description>Picture.description</description>
<layouts mode="any">
<layout>heading</layout>
<layout>picture</layout>
</layouts>
<layouts mode="edit">
<layout>heading</layout>
<layout>picture</layout>
<layout>dublincore</layout>
</layouts>
<layouts mode="drive">
<layout>heading</layout>
<layout>picture</layout>
<layout>dublincore</layout>
</layouts>
</type>
</extension>
</component>