Platform Explorer / Nuxeo Platform LTS 2019 10.10

Component org.nuxeo.ecm.platform.io.web

Documentation

IO client action contributions.

Resolution Order

405
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.io.web">

  <documentation>IO client action contributions.</documentation>

  <extension target="org.nuxeo.ecm.platform.actions.ActionService"
    point="actions">

    <!-- old export icon for non folderish docs => disabled -->
    <action id="xmlExport" link="#{importExportAction.doExportDocument()}"
      order="17" label="action.xml.export" icon="/icons/zip.png"
      enabled="false">
      <category>DOCUMENT_UPPER_ACTION</category>
      <filter-id>not_folder</filter-id>
    </action>

    <!-- old export icon for non folderish docs => disabled -->
    <action id="xmlTreeExport" link="#{importExportAction.doExportFolder()}"
      order="17" label="action.xmltree.export" icon="/icons/zip.png"
      enabled="false">
      <category>DOCUMENT_UPPER_ACTION</category>
      <filter-id>folder</filter-id>
    </action>

    <!-- deprecated since 7.2. Exports are now exposed as renditions, see NXP-16585 -->
    <action enabled="false" id="exportView" link="export" order="80" label="label.exportview"
      icon="/icons/export.png">
      <category>DOCUMENT_UPPER_ACTION</category>
    </action>

    <action id="exportViewXMLExport"
      link="#{importExportAction.documentXMLExportURL}" order="10"
      label="label.exportview.xmlExport" icon="/icons/xml.png">
      <category>DOCUMENT_EXPORT_VIEW_ACTION</category>
    </action>

    <action id="exportViewZIPExport"
      link="#{importExportAction.documentZIPTreeExportURL}" order="20"
      label="label.exportview.zipExport" icon="/icons/zip_export.png">
      <category>DOCUMENT_EXPORT_VIEW_ACTION</category>
      <filter-id>not_folder</filter-id>
    </action>

    <action id="exportViewTreeZIPExport"
      link="#{importExportAction.documentZIPTreeExportURL}" order="30"
      label="label.exportview.zipTreeExport"
      icon="/icons/zip_tree_export.png">
      <category>DOCUMENT_EXPORT_VIEW_ACTION</category>
      <filter-id>folder</filter-id>
    </action>

    <action id="WORKLIST_XMLEXPORT"
      link="#{importExportAction.exportCurrentList()}"
      label="command.clipboard.xmlZipExport"
      icon="/icons/action_export_zip.gif">
      <category>DEFAULT_LIST</category>
      <filter id="currentWorkListIsNotEmptyXML">
        <rule grant="false">
          <condition>#{clipboardActions.workListEmpty}</condition>
        </rule>
      </filter>
    </action>

  </extension>

</component>