Platform Explorer / Nuxeo Platform LTS 2019 10.10

Contribution org.nuxeo.ecm.platform.io.web--actions

This contribution is part of XML component org.nuxeo.ecm.platform.io.web inside nuxeo-platform-io-client-10.10-HF33.jar /OSGI-INF/actions-contrib.xml

Extension Point

Extension point actions of component ActionService.

Registration Order

22
The registration order represents the order in which this contribution was registered on its target extention point. This will impact the override/merge behaviour when it is implemented on the target service, and is useful for proper customization of existing contributions.
You can influence this order by adding "require" tags in the containing component declaration, to make sure it is resolved after another component (see "Resolution Order" on components).

Contributed Items

  • <action enabled="false" icon="/icons/zip.png" id="xmlExport" label="action.xml.export" link="#{importExportAction.doExportDocument()}" order="17">
          <category>DOCUMENT_UPPER_ACTION</category>
          <filter-id>not_folder</filter-id>
        </action>
  • <action enabled="false" icon="/icons/zip.png" id="xmlTreeExport" label="action.xmltree.export" link="#{importExportAction.doExportFolder()}" order="17">
          <category>DOCUMENT_UPPER_ACTION</category>
          <filter-id>folder</filter-id>
        </action>
  • <action enabled="false" icon="/icons/export.png" id="exportView" label="label.exportview" link="export" order="80">
          <category>DOCUMENT_UPPER_ACTION</category>
        </action>
  • <action icon="/icons/xml.png" id="exportViewXMLExport" label="label.exportview.xmlExport" link="#{importExportAction.documentXMLExportURL}" order="10">
          <category>DOCUMENT_EXPORT_VIEW_ACTION</category>
        </action>
  • <action icon="/icons/zip_export.png" id="exportViewZIPExport" label="label.exportview.zipExport" link="#{importExportAction.documentZIPTreeExportURL}" order="20">
          <category>DOCUMENT_EXPORT_VIEW_ACTION</category>
          <filter-id>not_folder</filter-id>
        </action>
  • <action icon="/icons/zip_tree_export.png" id="exportViewTreeZIPExport" label="label.exportview.zipTreeExport" link="#{importExportAction.documentZIPTreeExportURL}" order="30">
          <category>DOCUMENT_EXPORT_VIEW_ACTION</category>
          <filter-id>folder</filter-id>
        </action>
  • <action icon="/icons/action_export_zip.gif" id="WORKLIST_XMLEXPORT" label="command.clipboard.xmlZipExport" link="#{importExportAction.exportCurrentList()}">
          <category>DEFAULT_LIST</category>
          <filter id="currentWorkListIsNotEmptyXML">
            <rule grant="false">
              <condition>#{clipboardActions.workListEmpty}</condition>
            </rule>
          </filter>
        </action>

XML Source

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

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

    <!-- old export icon for non folderish docs => disabled -->
    <action enabled="false" icon="/icons/zip.png" id="xmlTreeExport" label="action.xmltree.export" link="#{importExportAction.doExportFolder()}" order="17">
      <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" icon="/icons/export.png" id="exportView" label="label.exportview" link="export" order="80">
      <category>DOCUMENT_UPPER_ACTION</category>
    </action>

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

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

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

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

  </extension>