428: TDM - Support the new Workspace Explorer
Task-Url: https://support.d4science.org/issues/428 Updated support to workspace explorer git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-portlet@117645 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
40269a7b7e
commit
99d6481825
19
pom.xml
19
pom.xml
|
@ -91,6 +91,14 @@
|
|||
<artifactId>storage-manager-wrapper</artifactId>
|
||||
<version>[2.0.0-SNAPSHOT, 3.0.0-SNAPSHOT)</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.gcube.common</groupId>
|
||||
<artifactId>home-library</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.gcube.common</groupId>
|
||||
<artifactId>home-library-jcr</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
@ -188,8 +196,8 @@
|
|||
<!-- WSLT dependencies -->
|
||||
<dependency>
|
||||
<groupId>org.gcube.portlets.widgets</groupId>
|
||||
<artifactId>workspace-light-tree</artifactId>
|
||||
<version>[2.13.1-SNAPSHOT, 3.0.0-SNAPSHOT)</version>
|
||||
<artifactId>workspace-explorer</artifactId>
|
||||
<version>[1.0.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
@ -198,6 +206,13 @@
|
|||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.gcube.common</groupId>
|
||||
<artifactId>home-library-jcr</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
|
||||
<!-- service-client-impl -->
|
||||
<dependency>
|
||||
<groupId>org.gcube.data.analysis.tabulardata</groupId>
|
||||
|
|
|
@ -59,10 +59,7 @@
|
|||
<inherits
|
||||
name='org.gcube.portlets.user.td.statisticalwidget.StatisticalWidget' />
|
||||
|
||||
|
||||
<inherits
|
||||
name='org.gcube.portlets.widgets.lighttree.WorkspacePortletLightTree' />
|
||||
|
||||
<inherits name='org.gcube.portlets.widgets.wsexplorer.WorkspaceExplorer' />
|
||||
|
||||
<inherits name='org.gcube.portlets.user.td.taskswidget.TdTasksWidget' />
|
||||
<inherits name="org.gcube.portlets.user.tdtemplate.TabularDataTemplate" />
|
||||
|
|
|
@ -64,11 +64,9 @@
|
|||
<inherits
|
||||
name='org.gcube.portlets.user.td.statisticalwidget.StatisticalWidget' />
|
||||
|
||||
<inherits name='org.gcube.portlets.widgets.wsexplorer.WorkspaceExplorer' />
|
||||
|
||||
|
||||
<inherits
|
||||
name='org.gcube.portlets.widgets.lighttree.WorkspacePortletLightTree' />
|
||||
|
||||
<inherits name='org.gcube.portlets.user.td.taskswidget.TdTasksWidget' />
|
||||
<inherits name="org.gcube.portlets.user.tdtemplate.TabularDataTemplate" />
|
||||
<inherits name="org.gcube.portlets.user.tdcolumnoperation.TdColumnOperation" />
|
||||
|
|
|
@ -6,9 +6,11 @@
|
|||
<!-- The module reference below is the link -->
|
||||
<!-- between html and your Web Toolkit module -->
|
||||
<link rel="stylesheet" href="<%= request.getContextPath()%>/tabulardataportlet/reset.css" type="text/css"/>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="<%=request.getContextPath()%>/gxt/css/gxt-all.css" />
|
||||
<link rel="stylesheet" type="text/css" href="<%=request.getContextPath()%>/gxt2/css/gxt-all.css" />
|
||||
<link rel="stylesheet" href="<%= request.getContextPath()%>/tabulardataportlet.css" type="text/css">
|
||||
<script src='<%=request.getContextPath()%>/tabulardataportlet/js/jquery-1.10.1.min.js'></script>
|
||||
<script src='<%=request.getContextPath()%>/tabulardataportlet/tabulardataportlet.nocache.js'></script>
|
||||
|
||||
<div id="tdp" style="width: 100%; height: 100%">
|
||||
|
|
|
@ -130,6 +130,14 @@
|
|||
</servlet>
|
||||
|
||||
|
||||
<!-- Workspace Explorer -->
|
||||
<servlet>
|
||||
<servlet-name>workspaceExplorer</servlet-name>
|
||||
<servlet-class>org.gcube.portlets.widgets.wsexplorer.server.WorkspaceExplorerServiceImpl</servlet-class>
|
||||
</servlet>
|
||||
|
||||
|
||||
|
||||
<!-- CSV Import Wizard Workspace -->
|
||||
<!-- <servlet> <servlet-name>CSVImportServiceWorkspace</servlet-name> <servlet-class>org.gcube.portlets.user.csvimportwizardgxt3.ws.server.ImportWizardWSServiceImpl</servlet-class>
|
||||
</servlet> <servlet> <servlet-name>downloadServlet</servlet-name> <servlet-class>org.gcube.portlets.user.workspace.server.DownloadServlet</servlet-class>
|
||||
|
@ -295,6 +303,12 @@
|
|||
<url-pattern>/tabulardataportlet/WorkspaceLightService</url-pattern>
|
||||
</servlet-mapping>
|
||||
|
||||
<!-- Workspace Explorer -->
|
||||
<servlet-mapping>
|
||||
<servlet-name>workspaceExplorer</servlet-name>
|
||||
<url-pattern>/tabulardataportlet/WorkspaceExplorerService</url-pattern>
|
||||
</servlet-mapping>
|
||||
|
||||
<!-- CSV Import Wizard Workspace -->
|
||||
<!-- <servlet-mapping> <servlet-name>CSVImportServiceWorkspace</servlet-name>
|
||||
<url-pattern>/tabulardataportlet/CSVImportServiceWorkspace</url-pattern>
|
||||
|
|
|
@ -22,8 +22,10 @@
|
|||
<link rel="stylesheet" type="text/css" href="gxt/css/gxt-all.css" />
|
||||
<link type="text/css" rel="stylesheet" href="gxt2/css/gxt-all.css">
|
||||
<link type="text/css" rel="stylesheet" href="tabulardataportlet.css">
|
||||
<script type="text/javascript" language="javascript" src="tabulardataportlet/tabulardataportlet.nocache.js"></script>
|
||||
<script type="text/javascript" src="tabulardataportlet/tabulardataportlet.nocache.js"></script>
|
||||
|
||||
<!-- <script type="text/javascript" src='tabulardataportlet/js/jquery-1.10.1.min.js'></script> -->
|
||||
<!-- <script type="text/javascript" src='tabulardataportlet/js/bootstrap.min.js'></script> -->
|
||||
</head>
|
||||
|
||||
<!-- -->
|
||||
|
@ -32,10 +34,8 @@
|
|||
<!-- to create a completely dynamic UI. -->
|
||||
<!-- -->
|
||||
<body>
|
||||
|
||||
<!-- OPTIONAL: include this if you want history support -->
|
||||
<iframe src="javascript:''" id="__gwt_historyFrame" tabIndex='-1' style="position:absolute;width:0;height:0;border:0"></iframe>
|
||||
|
||||
<!-- RECOMMENDED if your web app will not function without JavaScript enabled -->
|
||||
<noscript>
|
||||
<div style="width: 22em; position: absolute; left: 50%; margin-left: -11em; color: red; background-color: white; border: 1px solid red; padding: 4px; font-family: sans-serif">
|
||||
|
|
Loading…
Reference in New Issue