Minor Update
git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-portlet@119186 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
267fa9ebb4
commit
9e55c21b9c
|
@ -1,12 +1,12 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="src" output="target/tabular-data-manager-2.8.0-SNAPSHOT/WEB-INF/classes" path="src/main/java">
|
||||
<classpathentry kind="src" output="target/tabular-data-manager-2.9.0-SNAPSHOT/WEB-INF/classes" path="src/main/java">
|
||||
<attributes>
|
||||
<attribute name="optional" value="true"/>
|
||||
<attribute name="maven.pomderived" value="true"/>
|
||||
</attributes>
|
||||
</classpathentry>
|
||||
<classpathentry excluding="**" kind="src" output="target/tabular-data-manager-2.8.0-SNAPSHOT/WEB-INF/classes" path="src/main/resources">
|
||||
<classpathentry excluding="**" kind="src" output="target/tabular-data-manager-2.9.0-SNAPSHOT/WEB-INF/classes" path="src/main/resources">
|
||||
<attributes>
|
||||
<attribute name="maven.pomderived" value="true"/>
|
||||
</attributes>
|
||||
|
@ -45,5 +45,5 @@
|
|||
</classpathentry>
|
||||
<classpathentry kind="lib" path="/home/giancarlo/gwt/gwt-2.6.1/validation-api-1.0.0.GA.jar" sourcepath="/home/giancarlo/gwt/gwt-2.6.1/validation-api-1.0.0.GA-sources.jar"/>
|
||||
<classpathentry kind="lib" path="/home/giancarlo/gwt/gwt-2.6.1/validation-api-1.0.0.GA-sources.jar"/>
|
||||
<classpathentry kind="output" path="target/tabular-data-manager-2.8.0-SNAPSHOT/WEB-INF/classes"/>
|
||||
<classpathentry kind="output" path="target/tabular-data-manager-2.9.0-SNAPSHOT/WEB-INF/classes"/>
|
||||
</classpath>
|
||||
|
|
|
@ -11,15 +11,15 @@
|
|||
<Software>
|
||||
<Description>tabular-data-manager manages tabular data</Description>
|
||||
<Name>tabular-data-manager</Name>
|
||||
<Version>2.8.0-SNAPSHOT</Version>
|
||||
<Version>2.9.0-SNAPSHOT</Version>
|
||||
<MavenCoordinates>
|
||||
<groupId>org.gcube.portlets.user</groupId>
|
||||
<artifactId>tabular-data-manager</artifactId>
|
||||
<version>2.8.0-SNAPSHOT</version>
|
||||
<version>2.9.0-SNAPSHOT</version>
|
||||
</MavenCoordinates>
|
||||
<Type>webapplication</Type>
|
||||
<Files>
|
||||
<File>tabular-data-manager-2.8.0-SNAPSHOT.war</File>
|
||||
<File>tabular-data-manager-2.9.0-SNAPSHOT.war</File>
|
||||
</Files>
|
||||
</Software>
|
||||
</Packages>
|
||||
|
|
|
@ -13,7 +13,7 @@ Istituto di Scienza e Tecnologie dell'Informazione "A. Faedo"
|
|||
Version and Release Date
|
||||
------------------------
|
||||
|
||||
v. 2.8.0-SNAPSHOT (2015-07-03)
|
||||
v. 2.9.0-SNAPSHOT (2015-10-15)
|
||||
|
||||
|
||||
Description
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<ReleaseNotes>
|
||||
<Changeset component="org.gcube.portlets-user.tabular-data-portlet.2-9-0"
|
||||
date="2015-10-15">
|
||||
<Change>Added support to WorkspaceExplorer [issue #428]</Change>
|
||||
</Changeset>
|
||||
<Changeset component="org.gcube.portlets-user.tabular-data-portlet.2-8-0"
|
||||
date="2015-07-03">
|
||||
<Change>Added Delete Validations</Change>
|
||||
|
|
4
pom.xml
4
pom.xml
|
@ -13,7 +13,7 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.gcube.portlets.user</groupId>
|
||||
<artifactId>tabular-data-manager</artifactId>
|
||||
<version>2.8.0-SNAPSHOT</version>
|
||||
<version>2.9.0-SNAPSHOT</version>
|
||||
<packaging>war</packaging>
|
||||
|
||||
|
||||
|
@ -41,7 +41,7 @@
|
|||
<properties>
|
||||
<distroDirectory>${project.basedir}/distro</distroDirectory>
|
||||
<webappDirectory>${project.build.directory}/${project.build.finalName}</webappDirectory>
|
||||
<release.date>2015-07-03</release.date>
|
||||
<release.date>2015-10-15</release.date>
|
||||
<wikiurl>https://gcube.wiki.gcube-system.org/gcube/index.php/Tabular_Data_Manager</wikiurl>
|
||||
<templatesDirectory>templates</templatesDirectory>
|
||||
<distroDirectory>distro</distroDirectory>
|
||||
|
|
|
@ -14,6 +14,8 @@ import com.allen_sauer.gwt.log.client.Log;
|
|||
import com.google.gwt.core.client.GWT;
|
||||
import com.google.gwt.dom.client.Element;
|
||||
import com.google.gwt.dom.client.NodeList;
|
||||
import com.google.gwt.event.logical.shared.SelectionEvent;
|
||||
import com.google.gwt.event.logical.shared.SelectionHandler;
|
||||
import com.google.gwt.user.client.ui.FlexTable;
|
||||
import com.google.web.bindery.event.shared.EventBus;
|
||||
import com.sencha.gxt.cell.core.client.ButtonCell.ButtonArrowAlign;
|
||||
|
@ -24,6 +26,9 @@ import com.sencha.gxt.widget.core.client.button.ButtonGroup;
|
|||
import com.sencha.gxt.widget.core.client.button.TextButton;
|
||||
import com.sencha.gxt.widget.core.client.event.SelectEvent;
|
||||
import com.sencha.gxt.widget.core.client.event.SelectEvent.SelectHandler;
|
||||
import com.sencha.gxt.widget.core.client.menu.Item;
|
||||
import com.sencha.gxt.widget.core.client.menu.Menu;
|
||||
import com.sencha.gxt.widget.core.client.menu.MenuItem;
|
||||
import com.sencha.gxt.widget.core.client.toolbar.ToolBar;
|
||||
|
||||
/**
|
||||
|
@ -63,15 +68,15 @@ public class FileToolBar {
|
|||
|
||||
//Help
|
||||
private TextButton helpButton;
|
||||
//private TextButton languageButton;
|
||||
private TextButton languageButton;
|
||||
//private TextButton logsButton;
|
||||
//private TextButton testButton;
|
||||
|
||||
|
||||
//Language Menu
|
||||
/*private MenuItem enItem;
|
||||
private MenuItem enItem;
|
||||
private MenuItem itItem;
|
||||
private MenuItem esItem;*/
|
||||
private MenuItem esItem;
|
||||
|
||||
|
||||
|
||||
|
@ -427,7 +432,7 @@ public class FileToolBar {
|
|||
FlexTable helpLayout = new FlexTable();
|
||||
helpGroup.add(helpLayout);
|
||||
|
||||
/*
|
||||
|
||||
languageButton = new TextButton(msgs.languageButton(),
|
||||
TabularDataResources.INSTANCE.language32());
|
||||
languageButton.enable();
|
||||
|
@ -439,7 +444,6 @@ public class FileToolBar {
|
|||
|
||||
helpLayout.setWidget(0, 0, languageButton);
|
||||
helpLayout.getFlexCellFormatter().setRowSpan(0, 0, 2);
|
||||
*/
|
||||
|
||||
helpButton = new TextButton(msgs.helpButton(),
|
||||
TabularDataResources.INSTANCE.help32());
|
||||
|
@ -520,7 +524,7 @@ public class FileToolBar {
|
|||
}
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
private Menu createLanguageMenu() {
|
||||
Menu menuReplace = new Menu();
|
||||
enItem = new MenuItem(msgs.english(),
|
||||
|
@ -567,7 +571,7 @@ public class FileToolBar {
|
|||
menuReplace.add(esItem);
|
||||
menuReplace.add(itItem);
|
||||
return menuReplace;
|
||||
}*/
|
||||
}
|
||||
|
||||
|
||||
public void setUI(UIStateEvent event) {
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
validationGroupHeadingText = Validation
|
||||
validationsShowButton = Show
|
||||
validationsShowButtonToolTip = Show Validations
|
||||
validationsDeleteButton = Delete
|
||||
validationsDeleteButtonToolTip = Delete Validations
|
||||
duplicateDetectionButton = Duplicate Detection
|
||||
duplicateDetectionButtonToolTip = Duplicate Detection
|
||||
structureGroupHeadingText = Structure
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
validationGroupHeadingText = Validación
|
||||
validationsShowButton = Muestra
|
||||
validationsShowButtonToolTip = Muestra Validaciones
|
||||
validationsDeleteButton = Eliminar
|
||||
validationsDeleteButtonToolTip = Elimina validaciones
|
||||
duplicateDetectionButton = Detección Duplicados
|
||||
duplicateDetectionButtonToolTip = Detección de duplicados
|
||||
structureGroupHeadingText = Estructura
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
validationGroupHeadingText = Validazioni
|
||||
validationsShowButton = Mostra
|
||||
validationsShowButtonToolTip = Mostra Validazioni
|
||||
validationsDeleteButton = Elimina
|
||||
validationsDeleteButtonToolTip = Elimina Validazioni
|
||||
duplicateDetectionButton = Rilevazione Duplicati
|
||||
duplicateDetectionButtonToolTip = Rilevazioni Duplicati
|
||||
structureGroupHeadingText = Struttura
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
ruleGroupHeadingText = Manage
|
||||
ruleEditButton = Open
|
||||
ruleEditButtonToolTip = Open
|
||||
ruleOpenButton = Open
|
||||
ruleOpenButtonToolTip = Open
|
||||
ruleDeleteButton = Delete
|
||||
ruleDeleteButtonToolTip = Delete
|
||||
ruleShareButton = Share
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
ruleGroupHeadingText = Gestionar
|
||||
ruleEditButton = Abre
|
||||
ruleEditButtonToolTip = Abre
|
||||
ruleOpenButton = Abre
|
||||
ruleOpenButtonToolTip = Abre
|
||||
ruleDeleteButton = Borrar
|
||||
ruleDeleteButtonToolTip = Borrar
|
||||
ruleShareButton = Cuota
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
ruleGroupHeadingText = Gestisci
|
||||
ruleEditButton = Apri
|
||||
ruleEditButtonToolTip = Apri
|
||||
ruleOpenButton = Apri
|
||||
ruleOpenButtonToolTip = Apri
|
||||
ruleDeleteButton = Elimina
|
||||
ruleDeleteButtonToolTip = Elimina
|
||||
ruleShareButton = Condividi
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<module rename-to='tabulardataportlet'>
|
||||
<inherits name='com.google.gwt.user.User' />
|
||||
<inherits name="com.google.gwt.http.HTTP" />
|
||||
<!-- <inherits name="com.google.gwt.i18n.I18N" /> -->
|
||||
<inherits name="com.google.gwt.i18n.I18N" />
|
||||
|
||||
<!-- <inherits name='com.extjs.gxt.ui.GXT' /> -->
|
||||
<inherits name='com.sencha.gxt.ui.GXT' />
|
||||
|
@ -38,7 +38,7 @@
|
|||
<inherits name='org.gcube.portlets.user.td.columnwidget.ColumnWidget' />
|
||||
<inherits name='org.gcube.portlets.user.td.resourceswidget.ResourcesWidget' />
|
||||
<inherits name='org.gcube.portlets.user.td.rulewidget.RuleWidget' />
|
||||
|
||||
|
||||
<inherits name='org.gcube.portlets.user.td.toolboxwidget.ToolBox' />
|
||||
<inherits name='org.gcube.portlets.user.td.openwidget.TDOpen' />
|
||||
<inherits
|
||||
|
@ -83,29 +83,35 @@
|
|||
<entry-point class='org.gcube.portlets.user.td.client.TabularDataPortlet' />
|
||||
|
||||
|
||||
|
||||
<!-- <set-configuration-property name="locale.cookie" value="TDLangCookie"
|
||||
/> <set-configuration-property name="locale.queryparam" value="TDLang" />
|
||||
<set-configuration-property name="locale.usemeta" value="Y" /> <set-configuration-property
|
||||
name="locale.useragent" value="Y" /> <set-configuration-property name="locale.searchorder"
|
||||
value="cookie,queryparam,meta,useragent" /> <extend-property name="locale"
|
||||
values="en" /> <extend-property name="locale" values="it" /> <extend-property
|
||||
name="locale" values="es" /> <set-property name="locale" value="en, it, es"
|
||||
/> <set-property-fallback name="locale" value="en" /> -->
|
||||
<set-configuration-property name="locale.cookie"
|
||||
value="TDLangCookie" />
|
||||
<set-configuration-property name="locale.queryparam"
|
||||
value="TDLang" />
|
||||
<set-configuration-property name="locale.usemeta"
|
||||
value="Y" />
|
||||
<set-configuration-property name="locale.useragent"
|
||||
value="Y" />
|
||||
<set-configuration-property name="locale.searchorder"
|
||||
value="cookie,queryparam,meta,useragent" />
|
||||
<extend-property name="locale" values="en" />
|
||||
<extend-property name="locale" values="it" />
|
||||
<extend-property name="locale" values="es" />
|
||||
<set-property name="locale" value="en, it, es" />
|
||||
<set-property-fallback name="locale" value="en" />
|
||||
|
||||
<!--
|
||||
<set-property name="log_ConsoleLogger" value="ENABLED" />
|
||||
<set-property name="log_DivLogger" value="ENABLED" />
|
||||
<set-property name="log_GWTLogger" value="ENABLED" />
|
||||
<set-property name="log_SystemLogger" value="ENABLED" /> -->
|
||||
|
||||
<!-- <set-property name="log_ConsoleLogger" value="ENABLED" /> <set-property
|
||||
name="log_DivLogger" value="ENABLED" /> <set-property name="log_GWTLogger"
|
||||
value="ENABLED" /> <set-property name="log_SystemLogger" value="ENABLED"
|
||||
/> -->
|
||||
<!-- Not in GWT 2.6 <set-property name="log_FirebugLogger" value="ENABLED"
|
||||
/> -->
|
||||
|
||||
|
||||
|
||||
<set-property name="log_ConsoleLogger" value="DISABLED" />
|
||||
<set-property name="log_DivLogger" value="DISABLED" />
|
||||
<set-property name="log_GWTLogger" value="DISABLED" />
|
||||
<set-property name="log_SystemLogger" value="DISABLED" />
|
||||
<set-property name="log_SystemLogger" value="DISABLED" />
|
||||
<!-- Not in GWT 2.6 <set-property name="log_FirebugLogger" value="DISABLED"
|
||||
/> -->
|
||||
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<ReleaseNotes>
|
||||
<Changeset component="org.gcube.portlets-user.tabular-data-portlet.2-9-0"
|
||||
date="2015-10-15">
|
||||
<Change>Added support to WorkspaceExplorer [issue #428]</Change>
|
||||
</Changeset>
|
||||
<Changeset component="org.gcube.portlets-user.tabular-data-portlet.2-8-0"
|
||||
date="2015-07-03">
|
||||
<Change>Added Delete Validations</Change>
|
||||
|
|
Loading…
Reference in New Issue