From d160ee01c72fd09ff869d0c60d588bb2b24d064f Mon Sep 17 00:00:00 2001 From: Giancarlo Panichi Date: Thu, 13 Apr 2017 10:18:57 +0000 Subject: [PATCH] ref 6078:TDM - Create a new widget to support operations's invocation on DataMiner https://support.d4science.org/issues/6078 Updated to support DataMiner git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-widget-common-event@146843 82a268e6-3cf1-43bd-a215-b396298e98cf --- distro/changelog.xml | 3 +++ pom.xml | 2 +- .../user/td/widgetcommonevent/client/type/RibbonType.java | 2 ++ .../td/widgetcommonevent/shared/operations/OperationsId.java | 2 ++ .../td/widgetcommonevent/shared/operations/UIOperationsId.java | 2 ++ 5 files changed, 10 insertions(+), 1 deletion(-) diff --git a/distro/changelog.xml b/distro/changelog.xml index ac02e20..ae072f0 100644 --- a/distro/changelog.xml +++ b/distro/changelog.xml @@ -1,4 +1,7 @@ + + Added support for template export in SDMX [issue #8033] + Updated support to Spanish diff --git a/pom.xml b/pom.xml index 456d0d4..10805cb 100644 --- a/pom.xml +++ b/pom.xml @@ -14,7 +14,7 @@ 4.0.0 org.gcube.portlets.user tabular-data-widget-common-event - 1.9.0-SNAPSHOT + 1.10.0-SNAPSHOT tabular-data-widget-common-event tabular-data-widget-common-event contains events that are common to all widgets in tabular data manager diff --git a/src/main/java/org/gcube/portlets/user/td/widgetcommonevent/client/type/RibbonType.java b/src/main/java/org/gcube/portlets/user/td/widgetcommonevent/client/type/RibbonType.java index ece3000..416220b 100644 --- a/src/main/java/org/gcube/portlets/user/td/widgetcommonevent/client/type/RibbonType.java +++ b/src/main/java/org/gcube/portlets/user/td/widgetcommonevent/client/type/RibbonType.java @@ -77,6 +77,8 @@ public enum RibbonType { TEMPLATE_DELETE, TEMPLATE_APPLY, TEMPLATE_SHARE, + TEMPLATE_EXPORT_SDMX, + TEMPLATE_IMPORT_SDMX, ANALYSE_TABLE_FILTER, ANALYSE_TABLE_UNION, ANALYSE_TABLE_GROUPBY, diff --git a/src/main/java/org/gcube/portlets/user/td/widgetcommonevent/shared/operations/OperationsId.java b/src/main/java/org/gcube/portlets/user/td/widgetcommonevent/shared/operations/OperationsId.java index 851b5d5..25aa3fa 100644 --- a/src/main/java/org/gcube/portlets/user/td/widgetcommonevent/shared/operations/OperationsId.java +++ b/src/main/java/org/gcube/portlets/user/td/widgetcommonevent/shared/operations/OperationsId.java @@ -75,6 +75,8 @@ public enum OperationsId { SDMXCodelistExport("201"), SDMXDatasetImport("202"), SDMXDatasetExport("203"), + SDMXTemplateExport("204"), + SDMXTemplateImport("205"), JSONImport("300"), JSONExport("301"), ValidateCodelist("1000"), diff --git a/src/main/java/org/gcube/portlets/user/td/widgetcommonevent/shared/operations/UIOperationsId.java b/src/main/java/org/gcube/portlets/user/td/widgetcommonevent/shared/operations/UIOperationsId.java index 6e2ee72..b11f553 100644 --- a/src/main/java/org/gcube/portlets/user/td/widgetcommonevent/shared/operations/UIOperationsId.java +++ b/src/main/java/org/gcube/portlets/user/td/widgetcommonevent/shared/operations/UIOperationsId.java @@ -18,6 +18,8 @@ public enum UIOperationsId { Clone("Clone"), SDMXImport("SDMX Import"), SDMXExport("SDMX Export"), + SDMXTemplateImport("SDMX Template Import"), + SDMXTemplateExport("SDMX Template Export"), JSONImport("JSON Import"), JSONExport("JSON Export"), ChangeTableType("Change Table Type"),