[jbosstools-commits] JBoss Tools SVN: r24232 - in trunk/gwt: plugins/org.jboss.tools.gwt.core and 2 other directories.

jbosstools-commits at lists.jboss.org jbosstools-commits at lists.jboss.org
Tue Aug 17 19:06:51 EDT 2010


Author: dgolovin
Date: 2010-08-17 19:06:50 -0400 (Tue, 17 Aug 2010)
New Revision: 24232

Added:
   trunk/gwt/features/org.jboss.tools.gwt.feature/feature.properties
   trunk/gwt/features/org.jboss.tools.gwt.feature/license.html
   trunk/gwt/plugins/org.jboss.tools.gwt.core/about.html
   trunk/gwt/plugins/org.jboss.tools.gwt.ui/about.html
   trunk/gwt/site/.project
   trunk/gwt/site/site.xml
Modified:
   trunk/gwt/features/org.jboss.tools.gwt.feature/
   trunk/gwt/features/org.jboss.tools.gwt.feature/build.properties
   trunk/gwt/features/org.jboss.tools.gwt.feature/feature.xml
   trunk/gwt/plugins/org.jboss.tools.gwt.core/
   trunk/gwt/plugins/org.jboss.tools.gwt.core/build.properties
   trunk/gwt/plugins/org.jboss.tools.gwt.ui/
   trunk/gwt/plugins/org.jboss.tools.gwt.ui/build.properties
   trunk/gwt/site/pom.xml
Log:
https://jira.jboss.org/browse/JBIDE-6836 Include GWT Features in JBossTools update site in "Application Development" category
- licence.html added to feature 
- internationalized plugin texts
- about.html added to plugins
- gwt core is marked as unpacked to let acces zips with sample application in zip inside it
- update site added for nightly build



Property changes on: trunk/gwt/features/org.jboss.tools.gwt.feature
___________________________________________________________________
Name: svn:ignore
   + target


Modified: trunk/gwt/features/org.jboss.tools.gwt.feature/build.properties
===================================================================
--- trunk/gwt/features/org.jboss.tools.gwt.feature/build.properties	2010-08-17 22:59:10 UTC (rev 24231)
+++ trunk/gwt/features/org.jboss.tools.gwt.feature/build.properties	2010-08-17 23:06:50 UTC (rev 24232)
@@ -1 +1,3 @@
-bin.includes = feature.xml
+bin.includes = feature.xml,\
+               license.html,\
+               feature.properties

Added: trunk/gwt/features/org.jboss.tools.gwt.feature/feature.properties
===================================================================
--- trunk/gwt/features/org.jboss.tools.gwt.feature/feature.properties	                        (rev 0)
+++ trunk/gwt/features/org.jboss.tools.gwt.feature/feature.properties	2010-08-17 23:06:50 UTC (rev 24232)
@@ -0,0 +1,49 @@
+###############################################################################
+# Copyright (c) 2010 JBoss by Red Hat and others.
+# All rights reserved. This program and the accompanying materials 
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+# 
+# Contributors:
+#     JBoss by Red Hat - Initial implementation.
+##############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=JBoss GWT Integration
+
+# "providerName" property - name of the company that provides the feature
+providerName=JBoss by Red Hat
+
+# "updateSiteName" property - label for the update site
+updateSiteName=JBossTools Update Site
+
+# "description" property - description of the feature
+description=JBoss GWT Integration
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=Copyright (c) 2010 JBoss by Red Hat and others.\nAll rights reserved. This program and the accompanying materials\n\
+are made available under the terms of the Eclipse Public License v1.0\nwhich accompanies this distribution, and is available at\nhttp\://www.eclipse.org/legal/epl-v10.html\n\nContributors\:\nJBoss by Red Hat - Initial implementation.
+ ############### end of copyright property ####################################
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# START NON-TRANSLATABLE
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=Red Hat, Inc. licenses these features and plugins to you under \
+certain open source licenses (or aggregations of such licenses), which \
+in a particular case may include the Eclipse Public License, the GNU \
+Lesser General Public License, and/or certain other open source \
+licenses. For precise licensing details, consult the corresponding \
+source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive, \
+Raleigh NC 27606 USA.
+# END NON-TRANSLATABLE
+########### end of license property ##########################################

Modified: trunk/gwt/features/org.jboss.tools.gwt.feature/feature.xml
===================================================================
--- trunk/gwt/features/org.jboss.tools.gwt.feature/feature.xml	2010-08-17 22:59:10 UTC (rev 24231)
+++ trunk/gwt/features/org.jboss.tools.gwt.feature/feature.xml	2010-08-17 23:06:50 UTC (rev 24232)
@@ -1,28 +1,27 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <feature
       id="org.jboss.tools.gwt.feature"
-      label="Feature"
+      label="%featureName"
       version="1.0.0.qualifier"
-      provider-name="JBoss by Red Hat">
+      provider-name="%providerName">
 
    <description url="http://www.example.com/description">
-      [Enter Feature Description here.]
+      %description
    </description>
 
    <copyright url="http://www.example.com/copyright">
-      [Enter Copyright Description here.]
+      %copyright
    </copyright>
 
-   <license url="http://www.example.com/license">
-      [Enter License Description here.]
+   <license url="%licenseURL">
+      %license
    </license>
 
    <plugin
          id="org.jboss.tools.gwt.core"
          download-size="0"
          install-size="0"
-         version="0.0.0"
-         unpack="false"/>
+         version="0.0.0"/>
 
    <plugin
          id="org.jboss.tools.gwt.ui"

Added: trunk/gwt/features/org.jboss.tools.gwt.feature/license.html
===================================================================
--- trunk/gwt/features/org.jboss.tools.gwt.feature/license.html	                        (rev 0)
+++ trunk/gwt/features/org.jboss.tools.gwt.feature/license.html	2010-08-17 23:06:50 UTC (rev 24232)
@@ -0,0 +1,14 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
+<html>
+
+<body>
+<p>Red Hat, Inc. licenses these features and plugins to you under
+certain open source licenses (or aggregations of such licenses), which
+in a particular case may include the Eclipse Public License, the GNU
+Lesser General Public License, and/or certain other open source
+licenses. For precise licensing details, consult the corresponding
+source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive,
+Raleigh NC 27606 USA.
+</p>
+</body>
+</html>
\ No newline at end of file


Property changes on: trunk/gwt/features/org.jboss.tools.gwt.feature/license.html
___________________________________________________________________
Name: svn:executable
   + *


Property changes on: trunk/gwt/plugins/org.jboss.tools.gwt.core
___________________________________________________________________
Name: svn:ignore
   + target


Added: trunk/gwt/plugins/org.jboss.tools.gwt.core/about.html
===================================================================
--- trunk/gwt/plugins/org.jboss.tools.gwt.core/about.html	                        (rev 0)
+++ trunk/gwt/plugins/org.jboss.tools.gwt.core/about.html	2010-08-17 23:06:50 UTC (rev 24232)
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>JBoss GWT Integration</title>
+<style type="text/css" media="screen">
+<!--
+  body {
+    font-family: Sans-serif, Arial, Helvetica;
+  }
+
+-->
+</style>
+</head>
+<body>
+<h1JBoss GWT Integration</h1>
+
+<p>
+This plugin is part of the JBoss Tools developed by the <a href="http://www.jboss.com">JBoss Inc.</a>
+</p>
+
+<p>Information about this plugin is available at <a href="http://www.jboss.org/tools">JBoss Tools project page</a></p>
+
+<p>
+This software is distributed under the terms of the Eclipse Public License - v 1.0
+(see <a href="www.eclipse.org/legal/epl-v10.html">Eclipse Public License - Version 1.0</a>).
+</p>
+</body>
+</html>
\ No newline at end of file

Modified: trunk/gwt/plugins/org.jboss.tools.gwt.core/build.properties
===================================================================
--- trunk/gwt/plugins/org.jboss.tools.gwt.core/build.properties	2010-08-17 22:59:10 UTC (rev 24231)
+++ trunk/gwt/plugins/org.jboss.tools.gwt.core/build.properties	2010-08-17 23:06:50 UTC (rev 24232)
@@ -3,7 +3,8 @@
 bin.includes = META-INF/,\
                .,\
                plugin.xml,\
-               bin/
+               bin/,\
+               about.html
 src.includes = .classpath,\
                .project,\
                .settings/,\


Property changes on: trunk/gwt/plugins/org.jboss.tools.gwt.ui
___________________________________________________________________
Name: svn:ignore
   + target


Added: trunk/gwt/plugins/org.jboss.tools.gwt.ui/about.html
===================================================================
--- trunk/gwt/plugins/org.jboss.tools.gwt.ui/about.html	                        (rev 0)
+++ trunk/gwt/plugins/org.jboss.tools.gwt.ui/about.html	2010-08-17 23:06:50 UTC (rev 24232)
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>JBoss GWT Integration</title>
+<style type="text/css" media="screen">
+<!--
+  body {
+    font-family: Sans-serif, Arial, Helvetica;
+  }
+
+-->
+</style>
+</head>
+<body>
+<h1JBoss GWT Integration</h1>
+
+<p>
+This plugin is part of the JBoss Tools developed by the <a href="http://www.jboss.com">JBoss Inc.</a>
+</p>
+
+<p>Information about this plugin is available at <a href="http://www.jboss.org/tools">JBoss Tools project page</a></p>
+
+<p>
+This software is distributed under the terms of the Eclipse Public License - v 1.0
+(see <a href="www.eclipse.org/legal/epl-v10.html">Eclipse Public License - Version 1.0</a>).
+</p>
+</body>
+</html>
\ No newline at end of file

Modified: trunk/gwt/plugins/org.jboss.tools.gwt.ui/build.properties
===================================================================
--- trunk/gwt/plugins/org.jboss.tools.gwt.ui/build.properties	2010-08-17 22:59:10 UTC (rev 24231)
+++ trunk/gwt/plugins/org.jboss.tools.gwt.ui/build.properties	2010-08-17 23:06:50 UTC (rev 24232)
@@ -2,4 +2,5 @@
 output.. = bin/
 bin.includes = META-INF/,\
                .,\
-               plugin.xml
+               plugin.xml,\
+               about.html

Added: trunk/gwt/site/.project
===================================================================
--- trunk/gwt/site/.project	                        (rev 0)
+++ trunk/gwt/site/.project	2010-08-17 23:06:50 UTC (rev 24232)
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>gwt-site</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+	</buildSpec>
+	<natures>
+	</natures>
+</projectDescription>

Modified: trunk/gwt/site/pom.xml
===================================================================
--- trunk/gwt/site/pom.xml	2010-08-17 22:59:10 UTC (rev 24231)
+++ trunk/gwt/site/pom.xml	2010-08-17 23:06:50 UTC (rev 24232)
@@ -1,7 +1,6 @@
 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
 	<modelVersion>4.0.0</modelVersion> 
 	<parent>
-		<relativePath>../../build/parent-pom.xml</relativePath>
 		<groupId>org.jboss.tools</groupId>
 		<artifactId>org.jboss.tools.parent.pom</artifactId>
 		<version>0.0.1-SNAPSHOT</version>

Added: trunk/gwt/site/site.xml
===================================================================
--- trunk/gwt/site/site.xml	                        (rev 0)
+++ trunk/gwt/site/site.xml	2010-08-17 23:06:50 UTC (rev 24232)
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<site>
+	<description>To install these features, point Eclipse at this site.</description>
+	<!-- JBoss Tools GWT Integration Nightly Build Update Site -->
+	<category-def label="JBoss Tools GWT Integration Nightly Build Update Site" name="JBoss Tools GWT Integration Nightly Build Update Site">
+		<description>JBoss Tools GWT Integration Nightly Build Update Site: contains all features in this build.</description>
+	</category-def>
+	<feature url="features/org.jboss.tools.gwt.feature_0.0.0.jar" id="org.jboss.tools.gwt.feature" version="0.0.0">
+		<category name="JBoss Tools GWT Integration Nightly Build Update Site"/>
+	</feature>
+
+</site>



More information about the jbosstools-commits mailing list