Fixed Layout

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-codelistmapping-import-widget@115524 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2015-06-25 09:34:53 +00:00
parent 9550ee9f18
commit 3326a7b86c
6 changed files with 28 additions and 39 deletions

View File

@ -6,20 +6,20 @@
<Description>tabular-data-codelistmapping-import-widget allows import from url, file and workspace of maps for codelist</Description>
<Class>PortletsUser</Class>
<Name>tabular-data-codelistmapping-import-widget</Name>
<Version>1.5.0-SNAPSHOT</Version>
<Version>1.6.0-SNAPSHOT</Version>
<Packages>
<Software>
<Description>tabular-data-codelistmapping-import-widget allows import from url, file and workspace of maps for codelist</Description>
<Name>tabular-data-codelistmapping-import-widget</Name>
<Version>1.5.0-SNAPSHOT</Version>
<Version>1.6.0-SNAPSHOT</Version>
<MavenCoordinates>
<groupId>org.gcube.portlets.user</groupId>
<artifactId>tabular-data-codelistmapping-import-widget</artifactId>
<version>1.5.0-SNAPSHOT</version>
<version>1.6.0-SNAPSHOT</version>
</MavenCoordinates>
<Type>library</Type>
<Files>
<File>tabular-data-codelistmapping-import-widget-1.5.0-SNAPSHOT.jar</File>
<File>tabular-data-codelistmapping-import-widget-1.6.0-SNAPSHOT.jar</File>
</Files>
</Software>
</Packages>

View File

@ -13,7 +13,7 @@ Istituto di Scienza e Tecnologie dell'Informazione "A. Faedo"
Version and Release Date
------------------------
v. 1.5.0-SNAPSHOT (2015-04-30)
v. 1.6.0-SNAPSHOT (2015-07-01)
Description

View File

@ -1,4 +1,8 @@
<ReleaseNotes>
<Changeset component="org.gcube.portlets-user.tabular-data-codelistmapping-import-widget.1-6-0"
date="2016-07-01">
<Change>Fixed Layout</Change>
</Changeset>
<Changeset component="org.gcube.portlets-user.tabular-data-codelistmapping-import-widget.1-5-0"
date="2016-04-30">
<Change>Updated dependency</Change>

44
pom.xml
View File

@ -13,7 +13,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.gcube.portlets.user</groupId>
<artifactId>tabular-data-codelistmapping-import-widget</artifactId>
<version>1.5.0-SNAPSHOT</version>
<version>1.6.0-SNAPSHOT</version>
<name>tabular-data-codelistmapping-import-widget</name>
<description>tabular-data-codelistmapping-import-widget allows import from url, file and workspace of maps for codelist</description>
@ -37,18 +37,18 @@
<properties>
<distroDirectory>${project.basedir}/distro</distroDirectory>
<webappDirectory>${project.build.directory}/${project.build.finalName}</webappDirectory>
<release.date>2015-04-30</release.date>
<release.date>2015-07-01</release.date>
<wikiurl>https://gcube.wiki.gcube-system.org/gcube/index.php/Tabular_Data_Manager</wikiurl>
<templatesDirectory>templates</templatesDirectory>
<distroDirectory>distro</distroDirectory>
<configDirectory>config</configDirectory>
<gwtVersion>2.6.1</gwtVersion>
<gwtLogVersion>3.3.2</gwtLogVersion>
<gxtVersion>3.1.1</gxtVersion>
<gxtVersion>3.1.1</gxtVersion>
<KEYS>${env.KEYS}</KEYS>
<!-- GWT needs at least java 1.5 -->
@ -88,25 +88,6 @@
<version>${gwtVersion}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>1.0.0.GA</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>1.0.0.GA</version>
<classifier>sources</classifier>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.sencha.gxt</groupId>
@ -159,7 +140,6 @@
<dependency>
<groupId>org.gcube.common</groupId>
<artifactId>home-library</artifactId>
<version>[1.0.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
<scope>provided</scope>
</dependency>
<dependency>
@ -180,11 +160,15 @@
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<!-- Generate compiled stuff in the folder used for developing mode -->
<outputDirectory>${webappDirectory}/WEB-INF/classes</outputDirectory>

View File

@ -44,8 +44,7 @@ public class CodelistMappingTableDetailCard extends WizardCard {
this.codelistMappingSession = codelistMappingSession;
thisCard = this;
FramedPanel form = new FramedPanel();
form.setHeadingText("Details");
form.setHeaderVisible(false);
p = new VerticalLayoutContainer();
form.add(p);
@ -59,14 +58,12 @@ public class CodelistMappingTableDetailCard extends WizardCard {
} else {
}
name.setAllowBlank(false);
p.add(new FieldLabel(name, "Name"), new VerticalLayoutData(1, -1));
description = new TextArea();
description.setAllowBlank(false);
description.setEmptyText("Enter a description...");
description.setValue("XML map");
description.setAllowBlank(false);
p.add(new FieldLabel(description, "Description"),
new VerticalLayoutData(1, -1));

View File

@ -1,4 +1,8 @@
<ReleaseNotes>
<Changeset component="org.gcube.portlets-user.tabular-data-codelistmapping-import-widget.1-6-0"
date="2016-07-01">
<Change>Fixed Layout</Change>
</Changeset>
<Changeset component="org.gcube.portlets-user.tabular-data-codelistmapping-import-widget.1-5-0"
date="2016-04-30">
<Change>Updated dependency</Change>