[jbosstools-commits] JBoss Tools SVN: r39895 - in trunk/forge: features/org.jboss.tools.forge.test.feature and 8 other directories.

jbosstools-commits at lists.jboss.org jbosstools-commits at lists.jboss.org
Wed Mar 28 11:17:46 EDT 2012


Author: nickboldt
Date: 2012-03-28 11:17:45 -0400 (Wed, 28 Mar 2012)
New Revision: 39895

Added:
   trunk/forge/plugins/org.jboss.tools.forge.core/plugin.properties
   trunk/forge/plugins/org.jboss.tools.forge.runtime.ext/plugin.properties
   trunk/forge/plugins/org.jboss.tools.forge.runtime/plugin.properties
   trunk/forge/plugins/org.jboss.tools.forge.ui/plugin.properties
Modified:
   trunk/forge/features/org.jboss.tools.forge.feature/feature.properties
   trunk/forge/features/org.jboss.tools.forge.feature/feature.xml
   trunk/forge/features/org.jboss.tools.forge.test.feature/feature.properties
   trunk/forge/features/org.jboss.tools.forge.test.feature/feature.xml
   trunk/forge/plugins/org.jboss.tools.forge.core/META-INF/MANIFEST.MF
   trunk/forge/plugins/org.jboss.tools.forge.runtime.ext/META-INF/MANIFEST.MF
   trunk/forge/plugins/org.jboss.tools.forge.runtime/META-INF/MANIFEST.MF
   trunk/forge/plugins/org.jboss.tools.forge.ui/META-INF/MANIFEST.MF
Log:
externalize provider, bundlename, description, copyright, etc. into properties files; set plugins to be plugins (in manifest.mf)

Modified: trunk/forge/features/org.jboss.tools.forge.feature/feature.properties
===================================================================
--- trunk/forge/features/org.jboss.tools.forge.feature/feature.properties	2012-03-28 15:17:22 UTC (rev 39894)
+++ trunk/forge/features/org.jboss.tools.forge.feature/feature.properties	2012-03-28 15:17:45 UTC (rev 39895)
@@ -1,3 +1,19 @@
+###############################################################################
+# Copyright (c) 2012 Red Hat, Inc. 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=Forge Tools
 featureProvider=JBoss by Red Hat
 
@@ -7,6 +23,15 @@
 # "description" property - description of the feature
 description=Plugins for using Seam Forge from within Eclipse.
 
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=Copyright (c) 2010-2012 Red Hat, Inc. and others.\n\
+All rights reserved. This program and the accompanying materials\n\
+are made available under the terms of the Eclipse Public License v1.0\n\
+which accompanies this distribution, and is available at\n\
+http\://www.eclipse.org/legal/epl-v10.html\n\nContributors\:\n\
+JBoss by Red Hat - Initial implementation.\n
+ ############### 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

Modified: trunk/forge/features/org.jboss.tools.forge.feature/feature.xml
===================================================================
--- trunk/forge/features/org.jboss.tools.forge.feature/feature.xml	2012-03-28 15:17:22 UTC (rev 39894)
+++ trunk/forge/features/org.jboss.tools.forge.feature/feature.xml	2012-03-28 15:17:45 UTC (rev 39895)
@@ -3,15 +3,14 @@
       id="org.jboss.tools.forge.feature"
       label="%featureName"
       version="1.0.0.qualifier"
-      provider-name="JBoss by Red Hat">
+      provider-name="%featureProvider">
 
-   <description url="http://www.example.com/description">
+   <description>
       %description
    </description>
 
-   <copyright url="http://www.example.com/copyright">
-      JBoss, Home of Professional Open Source 
-Copyright (c) 2006-2012 Red Hat, Inc., and individual contributors as indicated by the @authors tag. See the copyright.txt in the distribution for a full listing of individual contributors.
+   <copyright>
+      %copyright
    </copyright>
 
    <license url="%licenseURL">

Modified: trunk/forge/features/org.jboss.tools.forge.test.feature/feature.properties
===================================================================
--- trunk/forge/features/org.jboss.tools.forge.test.feature/feature.properties	2012-03-28 15:17:22 UTC (rev 39894)
+++ trunk/forge/features/org.jboss.tools.forge.test.feature/feature.properties	2012-03-28 15:17:45 UTC (rev 39895)
@@ -12,6 +12,11 @@
 # do not translate value - just change to point to a locale-specific HTML page
 licenseURL=license.html
 
+copyright=JBoss, Home of Professional Open Source\n\
+Copyright (c) 2012 Red Hat, Inc., and individual contributors as indicated \
+by the @authors tag. See the copyright.txt in the distribution \
+for a full listing of individual contributors.
+
 # START NON-TRANSLATABLE
 # "license" property - text of the "Feature Update License"
 # should be plain text version of license agreement pointed to be "licenseURL"

Modified: trunk/forge/features/org.jboss.tools.forge.test.feature/feature.xml
===================================================================
--- trunk/forge/features/org.jboss.tools.forge.test.feature/feature.xml	2012-03-28 15:17:22 UTC (rev 39894)
+++ trunk/forge/features/org.jboss.tools.forge.test.feature/feature.xml	2012-03-28 15:17:45 UTC (rev 39895)
@@ -6,8 +6,7 @@
    </description>
 
 	<copyright>
-      JBoss, Home of Professional Open Source 
-Copyright (c) 2006-2012 Red Hat, Inc., and individual contributors as indicated by the @authors tag. See the copyright.txt in the distribution for a full listing of individual contributors.
+      %copyright
    </copyright>
 
 	<license url="%licenseURL">

Modified: trunk/forge/plugins/org.jboss.tools.forge.core/META-INF/MANIFEST.MF
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.core/META-INF/MANIFEST.MF	2012-03-28 15:17:22 UTC (rev 39894)
+++ trunk/forge/plugins/org.jboss.tools.forge.core/META-INF/MANIFEST.MF	2012-03-28 15:17:45 UTC (rev 39895)
@@ -1,6 +1,6 @@
 Manifest-Version: 1.0
 Bundle-ManifestVersion: 2
-Bundle-Name: Forge Core
+Bundle-Name: %BundleName
 Bundle-SymbolicName: org.jboss.tools.forge.core;singleton:=true
 Bundle-Version: 1.0.0.qualifier
 Bundle-RequiredExecutionEnvironment: JavaSE-1.6
@@ -13,4 +13,5 @@
  org.jboss.tools.forge.core.preferences,
  org.jboss.tools.forge.core.process
 Bundle-Activator: org.jboss.tools.forge.core.ForgeCorePlugin
-Bundle-Vendor: JBoss by Red Hat
+Bundle-Vendor: %BundleProvider
+Bundle-Localization: plugin

Added: trunk/forge/plugins/org.jboss.tools.forge.core/plugin.properties
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.core/plugin.properties	                        (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.core/plugin.properties	2012-03-28 15:17:45 UTC (rev 39895)
@@ -0,0 +1,2 @@
+BundleProvider=JBoss by Red Hat
+BundleName=Forge Core
\ No newline at end of file

Modified: trunk/forge/plugins/org.jboss.tools.forge.runtime/META-INF/MANIFEST.MF
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/META-INF/MANIFEST.MF	2012-03-28 15:17:22 UTC (rev 39894)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/META-INF/MANIFEST.MF	2012-03-28 15:17:45 UTC (rev 39895)
@@ -1,10 +1,11 @@
 Manifest-Version: 1.0
 Bundle-ManifestVersion: 2
-Bundle-Name: Forge Runtime Plugin
+Bundle-Name: %BundleName
 Bundle-SymbolicName: org.jboss.tools.forge.runtime
 Bundle-Version: 1.0.0.qualifier
 Bundle-RequiredExecutionEnvironment: JavaSE-1.6
-Bundle-Vendor: JBoss by Red Hat
+Bundle-Vendor: %BundleProvider
+Bundle-Localization: plugin
 Eclipse-BundleShape: dir
 Export-Package: javax.enterprise.event,
  javax.inject,

Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/plugin.properties
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/plugin.properties	                        (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/plugin.properties	2012-03-28 15:17:45 UTC (rev 39895)
@@ -0,0 +1,2 @@
+BundleProvider=JBoss by Red Hat
+BundleName=Forge Runtime Plugin
\ No newline at end of file

Modified: trunk/forge/plugins/org.jboss.tools.forge.runtime.ext/META-INF/MANIFEST.MF
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime.ext/META-INF/MANIFEST.MF	2012-03-28 15:17:22 UTC (rev 39894)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime.ext/META-INF/MANIFEST.MF	2012-03-28 15:17:45 UTC (rev 39895)
@@ -1,10 +1,11 @@
 Manifest-Version: 1.0
 Bundle-ManifestVersion: 2
-Bundle-Name: Forge Runtime Extensions
+Bundle-Name: %BundleName
 Bundle-SymbolicName: org.jboss.tools.forge.runtime.ext
 Bundle-Version: 1.0.0.qualifier
 Bundle-RequiredExecutionEnvironment: JavaSE-1.6
 Eclipse-BundleShape: dir
-Bundle-Vendor: JBoss by Red Hat
+Bundle-Vendor: %BundleProvider
+Bundle-Localization: plugin
 Bundle-ClassPath: bin/
 Require-Bundle: org.jboss.tools.forge.runtime;bundle-version="1.0.0"

Added: trunk/forge/plugins/org.jboss.tools.forge.runtime.ext/plugin.properties
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime.ext/plugin.properties	                        (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime.ext/plugin.properties	2012-03-28 15:17:45 UTC (rev 39895)
@@ -0,0 +1,2 @@
+BundleProvider=JBoss by Red Hat
+BundleName=Forge Runtime Extensions
\ No newline at end of file

Modified: trunk/forge/plugins/org.jboss.tools.forge.ui/META-INF/MANIFEST.MF
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.ui/META-INF/MANIFEST.MF	2012-03-28 15:17:22 UTC (rev 39894)
+++ trunk/forge/plugins/org.jboss.tools.forge.ui/META-INF/MANIFEST.MF	2012-03-28 15:17:45 UTC (rev 39895)
@@ -1,6 +1,6 @@
 Manifest-Version: 1.0
 Bundle-ManifestVersion: 2
-Bundle-Name: Forge Tools
+Bundle-Name: %BundleName
 Bundle-SymbolicName: org.jboss.tools.forge.ui;singleton:=true
 Bundle-Version: 1.0.0.qualifier
 Require-Bundle: org.eclipse.ui,
@@ -28,4 +28,5 @@
 Bundle-Activator: org.jboss.tools.forge.ui.ForgeUIPlugin
 Bundle-ClassPath: .
 Export-Package: org.jboss.tools.forge.ui.console
-Bundle-Vendor: JBoss by Red Hat
+Bundle-Vendor: %BundleProvider
+Bundle-Localization: plugin

Added: trunk/forge/plugins/org.jboss.tools.forge.ui/plugin.properties
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.ui/plugin.properties	                        (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.ui/plugin.properties	2012-03-28 15:17:45 UTC (rev 39895)
@@ -0,0 +1,2 @@
+BundleProvider=JBoss by Red Hat
+BundleName=Forge Tools
\ No newline at end of file



More information about the jbosstools-commits mailing list