11-07-2013 08:30 AM
I created a new document type in Nuxeo Studio. When I use the Drag and Drop the imported file does not use the new Document Type, but the old. How do to make this new document type as default?
11-20-2013 10:05 PM
Say you have document types SampleCustomPicture
, CustomVideo
, and CustomAudio
-- under "Projects>Advanced Settings>XML Extensions" do "+New" and create an extension with this content:
<require>org.nuxeo.ecm.platform.picture.filemanager.contrib</require>
<require>org.nuxeo.ecm.platform.video.filemanager.contrib</require>
<require>org.nuxeo.ecm.platform.audio.filemanager.contrib</require>
<extension target="org.nuxeo.ecm.platform.filemanager.service.FileManagerService" point="plugins">
<plugin name="Imageplugin" merge="true" docType="SampleCustomPicture" />
</extension>
<extension target="org.nuxeo.ecm.platform.filemanager.service.FileManagerService" point="plugins">
<plugin name="VideoImporter" merge="true" docType="CustomVideo" />
</extension>
<extension target="org.nuxeo.ecm.platform.filemanager.service.FileManagerService" point="plugins">
<plugin name="AudioImporter" merge="true" docType="CustomAudio" />
</extension>
11-14-2013 06:35 AM
I tell me the same question
11-20-2013 10:05 PM
Say you have document types SampleCustomPicture
, CustomVideo
, and CustomAudio
-- under "Projects>Advanced Settings>XML Extensions" do "+New" and create an extension with this content:
<require>org.nuxeo.ecm.platform.picture.filemanager.contrib</require>
<require>org.nuxeo.ecm.platform.video.filemanager.contrib</require>
<require>org.nuxeo.ecm.platform.audio.filemanager.contrib</require>
<extension target="org.nuxeo.ecm.platform.filemanager.service.FileManagerService" point="plugins">
<plugin name="Imageplugin" merge="true" docType="SampleCustomPicture" />
</extension>
<extension target="org.nuxeo.ecm.platform.filemanager.service.FileManagerService" point="plugins">
<plugin name="VideoImporter" merge="true" docType="CustomVideo" />
</extension>
<extension target="org.nuxeo.ecm.platform.filemanager.service.FileManagerService" point="plugins">
<plugin name="AudioImporter" merge="true" docType="CustomAudio" />
</extension>
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.