JBoss Tools SVN: r16092 - in trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker: META-INF and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2009-06-19 17:06:13 -0400 (Fri, 19 Jun 2009)
New Revision: 16092
Modified:
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/META-INF/MANIFEST.MF
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/build.properties
Log:
JBDS-747 drop nested jar
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/META-INF/MANIFEST.MF
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/META-INF/MANIFEST.MF 2009-06-19 21:05:45 UTC (rev 16091)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/META-INF/MANIFEST.MF 2009-06-19 21:06:13 UTC (rev 16092)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.jboss.ide.eclipse.freemarker;singleton:=true
-Bundle-Version: 1.0.3
+Bundle-Version: 1.1.0.qualifier
Bundle-Activator: org.jboss.ide.eclipse.freemarker.Plugin
Bundle-Localization: plugin
Require-Bundle: org.eclipse.ui,
@@ -14,13 +14,12 @@
org.apache.ant,
org.eclipse.ui.views,
org.eclipse.ui.ide,
- org.junit,
org.eclipse.ui.console,
org.eclipse.debug.ui,
org.eclipse.jdt.core,
org.eclipse.jdt.ui
Eclipse-AutoStart: true
-Bundle-ClassPath: freemarker-ide.jar,
+Bundle-ClassPath: .,
freemarker-2.3.8.jar
Bundle-Vendor: %providerName
Export-Package: freemarker.core,
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/build.properties
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/build.properties 2009-06-19 21:05:45 UTC (rev 16091)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/build.properties 2009-06-19 21:06:13 UTC (rev 16092)
@@ -1,23 +1,15 @@
-source.freemarker-ide.jar = src/
-output.freemarker-ide.jar = bin/
-bin.includes = plugin.xml,\
+bin.includes = plugin.*,\
freemarker-ide.jar,\
META-INF/,\
.,\
icons/,\
- plugin.properties,\
License.txt,\
freemarker-2.3.8.jar,\
- about.html,\
- about.ini,\
- about.mappings,\
- about.properties,\
+ about.*,\
jboss_about.png
src.includes = src/,\
- plugin.xml,\
- plugin.properties,\
+ plugin.*,\
icons/,\
META-INF/,\
License.txt,\
freemarker-2.3.8.jar
-jars.compile.order = freemarker-ide.jar
15 years, 6 months
JBoss Tools SVN: r16091 - in trunk/seam: plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core and 4 other directories.
by jbosstools-commits@lists.jboss.org
Author: akazakov
Date: 2009-06-19 17:05:45 -0400 (Fri, 19 Jun 2009)
New Revision: 16091
Added:
trunk/seam/tests/org.jboss.tools.seam.core.test/projects/SeamWebWarTestProject/WebContent/testElRevalidation.xhtml
trunk/seam/tests/org.jboss.tools.seam.core.test/projects/SeamWebWarTestProject/src/action/org/domain/SeamWebWarTestProject/entity/TestElRevalidation.java
trunk/seam/tests/org.jboss.tools.seam.core.test/projects/SeamWebWarTestProject/src/action/org/domain/SeamWebWarTestProject/entity/TestElRevalidation.new
trunk/seam/tests/org.jboss.tools.seam.core.test/projects/SeamWebWarTestProject/src/action/org/domain/SeamWebWarTestProject/entity/TestElRevalidation.original
Modified:
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/core/SeamPreferences.java
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/SeamPreferenceInitializer.java
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/validation/SeamELValidator.java
trunk/seam/tests/org.jboss.tools.seam.core.test/src/org/jboss/tools/seam/core/test/SeamValidatorsTest.java
Log:
https://jira.jboss.org/jira/browse/JBIDE-4512 Fixed
Modified: trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/core/SeamPreferences.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/core/SeamPreferences.java 2009-06-19 21:05:09 UTC (rev 16090)
+++ trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/core/SeamPreferences.java 2009-06-19 21:05:45 UTC (rev 16091)
@@ -117,6 +117,8 @@
public static final String UNKNOWN_EL_VARIABLE_NAME = createSeverityOption("unknownElVariableName"); //$NON-NLS-1$
// Check "var" attributes.
public static final String CHECK_VARS = createSeverityOption("checkVars"); //$NON-NLS-1$
+ // Re-validate unresolved ELs.
+ public static final String RE_VALIDATE_UNRESOLVED_EL = createSeverityOption("revalidateUnresolvedEl"); //$NON-NLS-1$
// Mark EL Variable property name which we can't resolve.
public static final String UNKNOWN_EL_VARIABLE_PROPERTY_NAME = createSeverityOption("unknownElVariablePropertyName"); //$NON-NLS-1$
// If Expression use property of component and this property has only setter(getter) without getter(setter) then mark it.
Modified: trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/SeamPreferenceInitializer.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/SeamPreferenceInitializer.java 2009-06-19 21:05:09 UTC (rev 16090)
+++ trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/SeamPreferenceInitializer.java 2009-06-19 21:05:45 UTC (rev 16091)
@@ -39,6 +39,7 @@
defaultPreferences.put(SeamPreferences.EL_SYNTAX_ERROR, SeamPreferences.WARNING);
defaultPreferences.put(SeamPreferences.INVALID_XML_VERSION, SeamPreferences.WARNING);
defaultPreferences.put(SeamPreferences.CHECK_VARS, SeamPreferences.ENABLE);
+ defaultPreferences.put(SeamPreferences.RE_VALIDATE_UNRESOLVED_EL, SeamPreferences.ENABLE);
//JBIDE-2958 temporary until JBIDE-2957 solved //TODO solve JBIDE-2957
defaultPreferences.put(SeamPreferences.UNKNOWN_COMPONENT_CLASS_NAME_GUESS, SeamPreferences.WARNING);
Modified: trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/validation/SeamELValidator.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/validation/SeamELValidator.java 2009-06-19 21:05:09 UTC (rev 16090)
+++ trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/validation/SeamELValidator.java 2009-06-19 21:05:45 UTC (rev 16091)
@@ -55,6 +55,7 @@
import org.jboss.tools.common.el.core.model.ELInstance;
import org.jboss.tools.common.el.core.model.ELInvocationExpression;
import org.jboss.tools.common.el.core.model.ELModel;
+import org.jboss.tools.common.el.core.model.ELPropertyInvocation;
import org.jboss.tools.common.el.core.parser.ELParser;
import org.jboss.tools.common.el.core.parser.ELParserUtil;
import org.jboss.tools.common.el.core.parser.SyntaxError;
@@ -92,6 +93,7 @@
private IProject currentProject;
private IResource[] currentSources;
private IContainer webRootFolder;
+ private boolean revalidateUnresolvedELs = false;
public SeamELValidator(SeamValidatorManager validatorManager,
SeamContextValidationHelper coreHelper, IReporter reporter,
@@ -113,6 +115,7 @@
* @see org.jboss.tools.seam.internal.core.validation.ISeamValidator#validate(java.util.Set)
*/
public IStatus validate(Set<IFile> changedFiles) throws ValidationException {
+ initRevalidationFlag();
IWorkspaceRoot wsRoot = ResourcesPlugin.getWorkspace().getRoot();
Set<IPath> files = validationContext.getElResourcesForValidation(changedFiles);
validationContext.removeLinkedElResources(files);
@@ -131,11 +134,13 @@
}
if(containsJavaOrComponentsXml) {
- Set<IPath> unnamedResources = validationContext.getUnnamedElResources();
- for (IPath path : unnamedResources) {
- IFile file = wsRoot.getFile(path);
- if(file.exists()) {
- filesToValidate.add(file);
+ if(revalidateUnresolvedELs) {
+ Set<IPath> unnamedResources = validationContext.getUnnamedElResources();
+ for (IPath path : unnamedResources) {
+ IFile file = wsRoot.getFile(path);
+ if(file.exists()) {
+ filesToValidate.add(file);
+ }
}
}
}
@@ -148,11 +153,17 @@
return OK_STATUS;
}
+ private void initRevalidationFlag() {
+ String revalidateUnresolvedEls = SeamPreferences.getProjectPreference(project, SeamPreferences.RE_VALIDATE_UNRESOLVED_EL);
+ revalidateUnresolvedELs = SeamPreferences.ENABLE.equals(revalidateUnresolvedEls);
+ }
+
/*
* (non-Javadoc)
* @see org.jboss.tools.seam.internal.core.validation.ISeamValidator#validateAll()
*/
public IStatus validateAll() throws ValidationException {
+ initRevalidationFlag();
validationContext.clearElResourceLinks();
Set<IFile> files = validationContext.getRegisteredFiles();
for (IFile file : files) {
@@ -338,7 +349,6 @@
// 2) create other preference
addError(SYNTAX_ERROR_MESSAGE_ID, SeamPreferences.EL_SYNTAX_ERROR, new String[]{"" + error.getProblem()}, 1, offset + error.getPosition(), file);
}
-
}
List<ELInstance> is = model.getInstances();
for (ELInstance i : is) {
@@ -375,8 +385,14 @@
engine.resolveELOperand(file, operandToken, true, varListForCurentValidatedNode, elVarSearcher);
if(status.isError()) {
+ if(revalidateUnresolvedELs) {
+ Set<String> names = findVariableNames(operandToken);
+ for (String name : names) {
+ validationContext.addLinkedElResource(name, file.getFullPath());
+ }
+ }
// Save resources with unknown variables names
- validationContext.addUnnamedElResource(file.getFullPath());
+// validationContext.addUnnamedElResource(file.getFullPath());
}
// Save links between resource and used variables names
@@ -429,4 +445,17 @@
}
}
-}
+ private Set<String> findVariableNames(ELInvocationExpression invocationExpression){
+ Set<String> names = new HashSet<String>();
+ while(invocationExpression != null) {
+ if(invocationExpression instanceof ELPropertyInvocation) {
+ String name = ((ELPropertyInvocation)invocationExpression).getQualifiedName();
+ if(name != null) {
+ names.add(name);
+ }
+ }
+ invocationExpression = invocationExpression.getLeft();
+ }
+ return names;
+ }
+}
\ No newline at end of file
Added: trunk/seam/tests/org.jboss.tools.seam.core.test/projects/SeamWebWarTestProject/WebContent/testElRevalidation.xhtml
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam.core.test/projects/SeamWebWarTestProject/WebContent/testElRevalidation.xhtml (rev 0)
+++ trunk/seam/tests/org.jboss.tools.seam.core.test/projects/SeamWebWarTestProject/WebContent/testElRevalidation.xhtml 2009-06-19 21:05:45 UTC (rev 16091)
@@ -0,0 +1,8 @@
+<!DOCTYPE composition PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+ xmlns:ui="http://java.sun.com/jsf/facelets">
+<ui:define name="body">
+ #{testElRevalidation}
+ </ui:define>
+</ui:composition>
\ No newline at end of file
Property changes on: trunk/seam/tests/org.jboss.tools.seam.core.test/projects/SeamWebWarTestProject/WebContent/testElRevalidation.xhtml
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Added: trunk/seam/tests/org.jboss.tools.seam.core.test/projects/SeamWebWarTestProject/src/action/org/domain/SeamWebWarTestProject/entity/TestElRevalidation.java
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam.core.test/projects/SeamWebWarTestProject/src/action/org/domain/SeamWebWarTestProject/entity/TestElRevalidation.java (rev 0)
+++ trunk/seam/tests/org.jboss.tools.seam.core.test/projects/SeamWebWarTestProject/src/action/org/domain/SeamWebWarTestProject/entity/TestElRevalidation.java 2009-06-19 21:05:45 UTC (rev 16091)
@@ -0,0 +1,7 @@
+package org.domain.SeamWebWarTestProject.entity;
+
+import org.jboss.seam.annotations.Name;
+
+@Name("testElRevalidation")
+public class TestElRevalidation {
+}
\ No newline at end of file
Property changes on: trunk/seam/tests/org.jboss.tools.seam.core.test/projects/SeamWebWarTestProject/src/action/org/domain/SeamWebWarTestProject/entity/TestElRevalidation.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Added: trunk/seam/tests/org.jboss.tools.seam.core.test/projects/SeamWebWarTestProject/src/action/org/domain/SeamWebWarTestProject/entity/TestElRevalidation.new
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam.core.test/projects/SeamWebWarTestProject/src/action/org/domain/SeamWebWarTestProject/entity/TestElRevalidation.new (rev 0)
+++ trunk/seam/tests/org.jboss.tools.seam.core.test/projects/SeamWebWarTestProject/src/action/org/domain/SeamWebWarTestProject/entity/TestElRevalidation.new 2009-06-19 21:05:45 UTC (rev 16091)
@@ -0,0 +1,7 @@
+package org.domain.SeamWebWarTestProject.entity;
+
+import org.jboss.seam.annotations.Name;
+
+@Name("testElRevalidationNew")
+public class TestElRevalidation {
+}
\ No newline at end of file
Added: trunk/seam/tests/org.jboss.tools.seam.core.test/projects/SeamWebWarTestProject/src/action/org/domain/SeamWebWarTestProject/entity/TestElRevalidation.original
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam.core.test/projects/SeamWebWarTestProject/src/action/org/domain/SeamWebWarTestProject/entity/TestElRevalidation.original (rev 0)
+++ trunk/seam/tests/org.jboss.tools.seam.core.test/projects/SeamWebWarTestProject/src/action/org/domain/SeamWebWarTestProject/entity/TestElRevalidation.original 2009-06-19 21:05:45 UTC (rev 16091)
@@ -0,0 +1,7 @@
+package org.domain.SeamWebWarTestProject.entity;
+
+import org.jboss.seam.annotations.Name;
+
+@Name("testElRevalidation")
+public class TestElRevalidation {
+}
\ No newline at end of file
Modified: trunk/seam/tests/org.jboss.tools.seam.core.test/src/org/jboss/tools/seam/core/test/SeamValidatorsTest.java
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam.core.test/src/org/jboss/tools/seam/core/test/SeamValidatorsTest.java 2009-06-19 21:05:09 UTC (rev 16090)
+++ trunk/seam/tests/org.jboss.tools.seam.core.test/src/org/jboss/tools/seam/core/test/SeamValidatorsTest.java 2009-06-19 21:05:45 UTC (rev 16091)
@@ -833,7 +833,7 @@
// See https://jira.jboss.org/jira/browse/JBIDE-4393
public void testDuplicateComponents() {
- JobUtils.waitForIdle();
+ refreshProject(project);
IFile duplicateJavaComponentFile = project.getFile("src/action/org/domain/SeamWebWarTestProject/session/DuplicateComponent.java");
IFile componentsXmlFile = project.getFile("WebContent/WEB-INF/components.xml");
@@ -843,7 +843,7 @@
}catch(Exception ex){
JUnitUtils.fail("Error in changing 'components.xml' content to 'duplicateComponents.test'", ex);
}
- JobUtils.waitForIdle();
+ refreshProject(project);
Integer[] lineNumbers = getMarkersNumbersOfLine(duplicateJavaComponentFile, SEAM_MARKER_FILTER);
assertEquals("There should be the only one error marker in DuplicateComponent.java.", 1, lineNumbers.length);
assertEquals("Problem marker has wrong line number", 5, lineNumbers[0].intValue());
@@ -854,6 +854,54 @@
assertTrue("Problem marker was not found on 9 line", findLine(lineNumbers, 9));
}
+ // See https://jira.jboss.org/jira/browse/JBIDE-4515
+ public void testRevalidationUnresolvedELs() {
+ refreshProject(project);
+ SeamCorePlugin.getDefault().getPreferenceStore().setValue(SeamPreferences.RE_VALIDATE_UNRESOLVED_EL, SeamPreferences.ENABLE);
+
+ IFile componentFile = project.getFile("src/action/org/domain/SeamWebWarTestProject/entity/TestElRevalidation.java");
+ IFile newComponentFile = project.getFile("src/action/org/domain/SeamWebWarTestProject/entity/TestElRevalidation.new");
+ IFile originalComponentFile = project.getFile("src/action/org/domain/SeamWebWarTestProject/entity/TestElRevalidation.original");
+ IFile xhtmlFile = project.getFile("WebContent/testElRevalidation.xhtml");
+
+ try {
+ componentFile.setContents(newComponentFile.getContents(), true, false, null);
+ } catch(Exception ex) {
+ JUnitUtils.fail("Error in changing 'TestElRevalidation.new' content to 'TestElRevalidation.java'", ex);
+ }
+ refreshProject(project);
+
+ int n = getMarkersNumber(xhtmlFile, SEAM_MARKER_FILTER);
+ assertEquals("There should be an unresolved EL in testElRevalidation.xhtml.", 1, n);
+
+ // We have to change the java file twice to clean all relations between xhtml and java.
+ SeamCorePlugin.getDefault().getPreferenceStore().setValue(SeamPreferences.RE_VALIDATE_UNRESOLVED_EL, SeamPreferences.DISABLE);
+ try {
+ componentFile.setContents(originalComponentFile.getContents(), true, false, null);
+ } catch(Exception ex) {
+ JUnitUtils.fail("Error in changing 'TestElRevalidation.original' content to 'TestElRevalidation.java'", ex);
+ }
+ refreshProject(project);
+ try {
+ componentFile.setContents(newComponentFile.getContents(), true, false, null);
+ } catch(Exception ex) {
+ JUnitUtils.fail("Error in changing 'TestElRevalidation.new' content to 'TestElRevalidation.java'", ex);
+ }
+ // then we can check if validator was not invoked.
+ refreshProject(project);
+ try {
+ componentFile.setContents(originalComponentFile.getContents(), true, false, null);
+ } catch(Exception ex) {
+ JUnitUtils.fail("Error in changing 'TestElRevalidation.original' content to 'TestElRevalidation.java'", ex);
+ }
+ refreshProject(project);
+
+ n = getMarkersNumber(xhtmlFile, SEAM_MARKER_FILTER);
+ assertEquals("There should be an unresolved EL in testElRevalidation.xhtml.", 1, n);
+
+ SeamCorePlugin.getDefault().getPreferenceStore().setValue(SeamPreferences.RE_VALIDATE_UNRESOLVED_EL, SeamPreferences.ENABLE);
+ }
+
private static boolean findLine(Integer[] lines, int number) {
for (int i = 0; i < lines.length; i++) {
if(lines[i]==number) {
15 years, 6 months
JBoss Tools SVN: r16090 - trunk/freemarker/features/org.jboss.ide.eclipse.freemarker.feature.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2009-06-19 17:05:09 -0400 (Fri, 19 Jun 2009)
New Revision: 16090
Modified:
trunk/freemarker/features/org.jboss.ide.eclipse.freemarker.feature/build.properties
Log:
include translations
Modified: trunk/freemarker/features/org.jboss.ide.eclipse.freemarker.feature/build.properties
===================================================================
--- trunk/freemarker/features/org.jboss.ide.eclipse.freemarker.feature/build.properties 2009-06-19 21:04:22 UTC (rev 16089)
+++ trunk/freemarker/features/org.jboss.ide.eclipse.freemarker.feature/build.properties 2009-06-19 21:05:09 UTC (rev 16090)
@@ -1,3 +1,2 @@
-bin.includes = feature.xml,\
- feature.properties,\
+bin.includes = feature*.*,\
license.html
15 years, 6 months
JBoss Tools SVN: r16089 - in trunk/freemarker: plugins/org.jboss.ide.eclipse.freemarker and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2009-06-19 17:04:22 -0400 (Fri, 19 Jun 2009)
New Revision: 16089
Modified:
trunk/freemarker/features/org.jboss.ide.eclipse.freemarker.feature/feature.properties
trunk/freemarker/features/org.jboss.ide.eclipse.freemarker.feature/feature_ja.properties
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/about.properties
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/about_ja.properties
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/plugin.properties
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/plugin_ja.properties
Log:
https://jira.jboss.org/jira/browse/JBIDE-4488 switch to "JBoss by Red Hat" and update (c) to 2009 as appropriate
Modified: trunk/freemarker/features/org.jboss.ide.eclipse.freemarker.feature/feature.properties
===================================================================
--- trunk/freemarker/features/org.jboss.ide.eclipse.freemarker.feature/feature.properties 2009-06-19 21:03:37 UTC (rev 16088)
+++ trunk/freemarker/features/org.jboss.ide.eclipse.freemarker.feature/feature.properties 2009-06-19 21:04:22 UTC (rev 16089)
@@ -1,12 +1,12 @@
###############################################################################
-# Copyright (c) 2008 JBoss, a division of Red Hat and others.
+# Copyright (c) 2008-2009 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, a division of Red Hat - Initial implementation.
+# JBoss by Red Hat - Initial implementation.
##############################################################################
# feature.properties
# contains externalized strings for feature.xml
@@ -18,7 +18,7 @@
featureName=FreeMarker IDE
# "providerName" property - name of the company that provides the feature
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
# "updateSiteName" property - label for the update site
updateSiteName=JBossTools Update Site
@@ -29,8 +29,8 @@
description=FreeMarkerIDE provides editor for FreeMarker templates
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2008 JBoss, a division of 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, a division of Red Hat - Initial implementation.\n
+copyright=Copyright (c) 2008-2009 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.\n
############### end of copyright property ####################################
# "licenseURL" property - URL of the "Feature License"
Modified: trunk/freemarker/features/org.jboss.ide.eclipse.freemarker.feature/feature_ja.properties
===================================================================
--- trunk/freemarker/features/org.jboss.ide.eclipse.freemarker.feature/feature_ja.properties 2009-06-19 21:03:37 UTC (rev 16088)
+++ trunk/freemarker/features/org.jboss.ide.eclipse.freemarker.feature/feature_ja.properties 2009-06-19 21:04:22 UTC (rev 16089)
@@ -1,8 +1,8 @@
featureName=FreeMarker IDE
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
updateSiteName=JBossTools Update Site
devUpdateSiteName=JBossTools Development Update Site
description=FreeMarker IDE \u306F FreeMarker \u30C6\u30F3\u30D7\u30EC\u30FC\u30C8\u306E\u30A8\u30C7\u30A3\u30BF\u30FC\u3092\u63D0\u4F9B\u3057\u307E\u3059
-copyright=Copyright (c) 2008 JBoss, a division of 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.0which accompanies this distribution, and is available athttp//www.eclipse.org/legal/epl-v10.htmlContributorsJBoss, a division of Red Hat - Initial implementation.
+copyright=Copyright (c) 2008-2009 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.0which accompanies this distribution, and is available athttp//www.eclipse.org/legal/epl-v10.htmlContributorsJBoss by Red Hat - Initial implementation.
licenseURL=license.html
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/about.properties
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/about.properties 2009-06-19 21:03:37 UTC (rev 16088)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/about.properties 2009-06-19 21:04:22 UTC (rev 16089)
@@ -1,2 +1,2 @@
-blurb=FreeMarker IDE\n\nVersion\: {featureVersion}\n\n(c) Copyright JBoss, a division of Red Hat, contributors and others 2004 - 2009. All rights reserved.\nVisit http\://jboss.org/tools
+blurb=FreeMarker IDE\n\nVersion\: {featureVersion}\n\n(c) Copyright JBoss by Red Hat, contributors and others 2004 - 2009. All rights reserved.\nVisit http\://jboss.org/tools
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/about_ja.properties
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/about_ja.properties 2009-06-19 21:03:37 UTC (rev 16088)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/about_ja.properties 2009-06-19 21:04:22 UTC (rev 16089)
@@ -1 +1 @@
-blurb=FreeMarker IDE\n\nVersion\: {featureVersion}\n\n(c) Copyright JBoss, a division of Red Hat, contributors and others 2004 - 2009. All rights reserved.\nVisit http\://jboss.org/tools
+blurb=FreeMarker IDE\n\nVersion\: {featureVersion}\n\n(c) Copyright JBoss by Red Hat, contributors and others 2004 - 2009. All rights reserved.\nVisit http\://jboss.org/tools
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/plugin.properties
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/plugin.properties 2009-06-19 21:03:37 UTC (rev 16088)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/plugin.properties 2009-06-19 21:04:22 UTC (rev 16089)
@@ -1,4 +1,4 @@
pluginName = FreeMarker IDE
-providerName = JBoss, a division of Red Hat
+providerName = JBoss by Red Hat
PreferencePage_FreeMarkerEditor=FreeMarker Editor
PropertyPage_FreeMarkerContext=FreeMarker Context
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/plugin_ja.properties
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/plugin_ja.properties 2009-06-19 21:03:37 UTC (rev 16088)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/plugin_ja.properties 2009-06-19 21:04:22 UTC (rev 16089)
@@ -1,4 +1,4 @@
pluginName=FreeMarker IDE
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
PreferencePage_FreeMarkerEditor=FreeMarker \u30A8\u30C7\u30A3\u30BF\u30FC
PropertyPage_FreeMarkerContext=FreeMarker \u30B3\u30F3\u30C6\u30AD\u30B9\u30C8
15 years, 6 months
JBoss Tools SVN: r16088 - in trunk: documentation/guides/Exadel-migration/en and 2 other directories.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2009-06-19 17:03:37 -0400 (Fri, 19 Jun 2009)
New Revision: 16088
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.core/plugin_ja.properties
trunk/documentation/guides/Exadel-migration/en/master.xml
trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/com/jboss/tools/eclipse.xsl
trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/com/jboss/tools/pdf-diff.xsl
trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/com/jboss/tools/pdf.xsl
trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/com/jboss/tools/xhtml-release-nomarker.xsl
trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/com/jboss/tools/xhtml-release.xsl
trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/com/jboss/tools/xhtml-single-release-nomarker.xsl
trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/com/jboss/tools/xhtml-single-release.xsl
trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/tools/eclipse.xsl
trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/tools/pdf-diff.xsl
trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/tools/pdf.xsl
trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/tools/xhtml-release-nomarker.xsl
trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/tools/xhtml-release.xsl
trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/tools/xhtml-single-release-nomarker.xsl
trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/tools/xhtml-single-release.xsl
Log:
https://jira.jboss.org/jira/browse/JBIDE-4488 switch to "JBoss by Red Hat" and update (c) to 2009 as appropriate
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.core/plugin_ja.properties
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.core/plugin_ja.properties 2009-06-19 20:56:50 UTC (rev 16087)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.core/plugin_ja.properties 2009-06-19 21:03:37 UTC (rev 16088)
@@ -18,5 +18,5 @@
jboss.eap.version.43.runtime.name=JBoss Enterprise Application Platform 4.3 Runtime
deploy.runtime.name=JBoss Deploy-Only Runtime
deploy.runtime.description=\u3053\u306E\u30E9\u30F3\u30BF\u30A4\u30E0\u306F\u7279\u5B9A\u306E\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u30FB\u30BF\u30A4\u30D7\u3092\u30C7\u30D7\u30ED\u30A4\u3059\u308B\u305F\u3081\u306B\u30C7\u30D7\u30ED\u30A4\u306E\u307F\u3092\u8A31\u53EF\u3059\u308B\u30B5\u30FC\u30D0\u30FC\u3092\u63D0\u4F9B\u3057\u307E\u3059\u3002
-Bundle-Vendor.0=JBoss, a division of Red Hat
+Bundle-Vendor.0=JBoss by Red Hat
Bundle-Name.0=JBoss AS \u30B3\u30A2\u30FB\u30D7\u30E9\u30B0\u30A4\u30F3
Modified: trunk/documentation/guides/Exadel-migration/en/master.xml
===================================================================
--- trunk/documentation/guides/Exadel-migration/en/master.xml 2009-06-19 20:56:50 UTC (rev 16087)
+++ trunk/documentation/guides/Exadel-migration/en/master.xml 2009-06-19 21:03:37 UTC (rev 16088)
@@ -30,7 +30,7 @@
<copyright>
<year>2007</year>
<year>2009</year>
- <holder>JBoss, a division of Red Hat</holder>
+ <holder>JBoss by Red Hat</holder>
</copyright>
<releaseinfo>
Version: 2.0.1.GA
Modified: trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/com/jboss/tools/eclipse.xsl
===================================================================
--- trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/com/jboss/tools/eclipse.xsl 2009-06-19 20:56:50 UTC (rev 16087)
+++ trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/com/jboss/tools/eclipse.xsl 2009-06-19 21:03:37 UTC (rev 16088)
@@ -1,7 +1,7 @@
<?xml version='1.0'?>
<!--
- Copyright 2008 JBoss, a division of Red Hat
+ Copyright 2008-2009 JBoss by Red Hat
License: LGPL
Author: Mark Newton <mark.newton(a)jboss.org>
-->
Modified: trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/com/jboss/tools/pdf-diff.xsl
===================================================================
--- trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/com/jboss/tools/pdf-diff.xsl 2009-06-19 20:56:50 UTC (rev 16087)
+++ trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/com/jboss/tools/pdf-diff.xsl 2009-06-19 21:03:37 UTC (rev 16088)
@@ -1,7 +1,7 @@
<?xml version='1.0'?>
<!--
- Copyright 2008 JBoss, a division of Red Hat
+ Copyright 2008-2009 JBoss by Red Hat
License: LGPL
Author: Mark Newton <mark.newton(a)jboss.org>
-->
Modified: trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/com/jboss/tools/pdf.xsl
===================================================================
--- trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/com/jboss/tools/pdf.xsl 2009-06-19 20:56:50 UTC (rev 16087)
+++ trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/com/jboss/tools/pdf.xsl 2009-06-19 21:03:37 UTC (rev 16088)
@@ -1,7 +1,7 @@
<?xml version='1.0'?>
<!--
- Copyright 2008 JBoss, a division of Red Hat
+ Copyright 2008-2009 JBoss by Red Hat
License: LGPL
Author: Mark Newton <mark.newton(a)jboss.org>
-->
Modified: trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/com/jboss/tools/xhtml-release-nomarker.xsl
===================================================================
--- trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/com/jboss/tools/xhtml-release-nomarker.xsl 2009-06-19 20:56:50 UTC (rev 16087)
+++ trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/com/jboss/tools/xhtml-release-nomarker.xsl 2009-06-19 21:03:37 UTC (rev 16088)
@@ -1,7 +1,7 @@
<?xml version='1.0'?>
<!--
- Copyright 2008 JBoss, a division of Red Hat
+ Copyright 2008-2009 JBoss by Red Hat
License: LGPL
Author: Mark Newton <mark.newton(a)jboss.org>
-->
Modified: trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/com/jboss/tools/xhtml-release.xsl
===================================================================
--- trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/com/jboss/tools/xhtml-release.xsl 2009-06-19 20:56:50 UTC (rev 16087)
+++ trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/com/jboss/tools/xhtml-release.xsl 2009-06-19 21:03:37 UTC (rev 16088)
@@ -1,7 +1,7 @@
<?xml version='1.0'?>
<!--
- Copyright 2008 JBoss, a division of Red Hat
+ Copyright 2008-2009 JBoss by Red Hat
License: LGPL
Author: Mark Newton <mark.newton(a)jboss.org>
-->
Modified: trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/com/jboss/tools/xhtml-single-release-nomarker.xsl
===================================================================
--- trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/com/jboss/tools/xhtml-single-release-nomarker.xsl 2009-06-19 20:56:50 UTC (rev 16087)
+++ trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/com/jboss/tools/xhtml-single-release-nomarker.xsl 2009-06-19 21:03:37 UTC (rev 16088)
@@ -1,7 +1,7 @@
<?xml version='1.0'?>
<!--
- Copyright 2008 JBoss, a division of Red Hat
+ Copyright 2008-2009 JBoss by Red Hat
License: LGPL
Author: Mark Newton <mark.newton(a)jboss.org>
-->
Modified: trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/com/jboss/tools/xhtml-single-release.xsl
===================================================================
--- trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/com/jboss/tools/xhtml-single-release.xsl 2009-06-19 20:56:50 UTC (rev 16087)
+++ trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/com/jboss/tools/xhtml-single-release.xsl 2009-06-19 21:03:37 UTC (rev 16088)
@@ -1,7 +1,7 @@
<?xml version='1.0'?>
<!--
- Copyright 2008 JBoss, a division of Red Hat
+ Copyright 2008-2009 JBoss by Red Hat
License: LGPL
Author: Mark Newton <mark.newton(a)jboss.org>
-->
Modified: trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/tools/eclipse.xsl
===================================================================
--- trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/tools/eclipse.xsl 2009-06-19 20:56:50 UTC (rev 16087)
+++ trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/tools/eclipse.xsl 2009-06-19 21:03:37 UTC (rev 16088)
@@ -1,7 +1,7 @@
<?xml version='1.0'?>
<!--
- Copyright 2008 JBoss, a division of Red Hat
+ Copyright 2008-2009 JBoss by Red Hat
License: LGPL
Author: Mark Newton <mark.newton(a)jboss.org>
-->
Modified: trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/tools/pdf-diff.xsl
===================================================================
--- trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/tools/pdf-diff.xsl 2009-06-19 20:56:50 UTC (rev 16087)
+++ trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/tools/pdf-diff.xsl 2009-06-19 21:03:37 UTC (rev 16088)
@@ -1,7 +1,7 @@
<?xml version='1.0'?>
<!--
- Copyright 2008 JBoss, a division of Red Hat
+ Copyright 2008-2009 JBoss by Red Hat
License: LGPL
Author: Mark Newton <mark.newton(a)jboss.org>
-->
Modified: trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/tools/pdf.xsl
===================================================================
--- trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/tools/pdf.xsl 2009-06-19 20:56:50 UTC (rev 16087)
+++ trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/tools/pdf.xsl 2009-06-19 21:03:37 UTC (rev 16088)
@@ -1,7 +1,7 @@
<?xml version='1.0'?>
<!--
- Copyright 2008 JBoss, a division of Red Hat
+ Copyright 2008-2009 JBoss by Red Hat
License: LGPL
Author: Mark Newton <mark.newton(a)jboss.org>
-->
Modified: trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/tools/xhtml-release-nomarker.xsl
===================================================================
--- trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/tools/xhtml-release-nomarker.xsl 2009-06-19 20:56:50 UTC (rev 16087)
+++ trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/tools/xhtml-release-nomarker.xsl 2009-06-19 21:03:37 UTC (rev 16088)
@@ -1,7 +1,7 @@
<?xml version='1.0'?>
<!--
- Copyright 2008 JBoss, a division of Red Hat
+ Copyright 2008-2009 JBoss by Red Hat
License: LGPL
Author: Mark Newton <mark.newton(a)jboss.org>
-->
Modified: trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/tools/xhtml-release.xsl
===================================================================
--- trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/tools/xhtml-release.xsl 2009-06-19 20:56:50 UTC (rev 16087)
+++ trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/tools/xhtml-release.xsl 2009-06-19 21:03:37 UTC (rev 16088)
@@ -1,7 +1,7 @@
<?xml version='1.0'?>
<!--
- Copyright 2008 JBoss, a division of Red Hat
+ Copyright 2008-2009 JBoss by Red Hat
License: LGPL
Author: Mark Newton <mark.newton(a)jboss.org>
-->
Modified: trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/tools/xhtml-single-release-nomarker.xsl
===================================================================
--- trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/tools/xhtml-single-release-nomarker.xsl 2009-06-19 20:56:50 UTC (rev 16087)
+++ trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/tools/xhtml-single-release-nomarker.xsl 2009-06-19 21:03:37 UTC (rev 16088)
@@ -1,7 +1,7 @@
<?xml version='1.0'?>
<!--
- Copyright 2008 JBoss, a division of Red Hat
+ Copyright 2008-2009 JBoss by Red Hat
License: LGPL
Author: Mark Newton <mark.newton(a)jboss.org>
-->
Modified: trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/tools/xhtml-single-release.xsl
===================================================================
--- trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/tools/xhtml-single-release.xsl 2009-06-19 20:56:50 UTC (rev 16087)
+++ trunk/documentation/jbosstools-docbook-xslt/src/main/resources/xslt/org/jboss/tools/xhtml-single-release.xsl 2009-06-19 21:03:37 UTC (rev 16088)
@@ -1,7 +1,7 @@
<?xml version='1.0'?>
<!--
- Copyright 2008 JBoss, a division of Red Hat
+ Copyright 2008-2009 JBoss by Red Hat
License: LGPL
Author: Mark Newton <mark.newton(a)jboss.org>
-->
15 years, 6 months
JBoss Tools SVN: r16087 - in trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker: configuration and 10 other directories.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2009-06-19 16:56:50 -0400 (Fri, 19 Jun 2009)
New Revision: 16087
Modified:
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/Constants.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/ImageManager.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/Plugin.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/configuration/ConfigurationManager.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/configuration/ContextValue.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/configuration/MacroLibrary.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/configuration/ProjectClassLoader.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/dialogs/ContextValueDialog.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/AnnotationHover.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/ColorManager.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/CompletionProcessor.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/Configuration.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/ContentScanner.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/DirectiveScanner.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/DocumentProvider.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/Editor.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/FreemarkerMultiPageEditor.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/MacroHyperlink.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/MacroHyperlinkDetector.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/NonRuleBasedDamagerRepairer.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/PartitionScanner.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/WhitespaceDetector.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/XMLTagScanner.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/actions/AddMacroLibrary.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/rules/DirectiveRule.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/rules/DirectiveRuleEnd.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/rules/GenericDirectiveRule.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/rules/GenericDirectiveRuleEnd.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/rules/InterpolationRule.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/rules/MacroInstanceRule.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/rules/MacroInstanceRuleEnd.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/rules/StringRule.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/rules/StringSubRule.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/rules/XmlRule.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/linetracker/ConsoleLineTracker.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/AbstractDirective.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/AbstractItem.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/AssignmentDirective.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/AssignmentEndDirective.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/CaseDefaultDirective.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/CaseDirective.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/CompletionDirective.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/CompletionInterpolation.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/CompletionMacroInstance.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/ElseIfDirective.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/FtlDirective.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/FunctionDirective.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/FunctionEndDirective.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/GenericDirective.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/GenericNestableDirective.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/GenericNestableEndDirective.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/IfDirective.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/IfElseDirective.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/IfEndDirective.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/Interpolation.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/Item.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/ItemFactory.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/ItemSet.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/LibraryMacroDirective.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/ListDirective.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/ListEndDirective.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/MacroDirective.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/MacroEndDirective.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/MacroEndInstance.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/MacroInstance.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/interpolation/AbstractFragment.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/interpolation/BuiltInFragment.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/interpolation/Fragment.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/interpolation/NameFragment.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/interpolation/NullFragment.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/interpolation/ParameterSet.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/interpolation/ParametersFragment.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/interpolation/StringFragment.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/outline/OutlineContentProvider.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/outline/OutlineLabelProvider.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/outline/OutlinePage.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/preferences/ContextProperties.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/preferences/PreferencePage.java
trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/util/StringUtil.java
Log:
https://jira.jboss.org/jira/browse/JBIDE-4488 switch to "JBoss by Red Hat" and update (c) to 2009 as appropriate
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/Constants.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/Constants.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/Constants.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/ImageManager.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/ImageManager.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/ImageManager.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/Plugin.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/Plugin.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/Plugin.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/configuration/ConfigurationManager.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/configuration/ConfigurationManager.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/configuration/ConfigurationManager.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/configuration/ContextValue.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/configuration/ContextValue.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/configuration/ContextValue.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/configuration/MacroLibrary.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/configuration/MacroLibrary.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/configuration/MacroLibrary.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/configuration/ProjectClassLoader.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/configuration/ProjectClassLoader.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/configuration/ProjectClassLoader.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/dialogs/ContextValueDialog.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/dialogs/ContextValueDialog.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/dialogs/ContextValueDialog.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/AnnotationHover.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/AnnotationHover.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/AnnotationHover.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/ColorManager.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/ColorManager.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/ColorManager.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/CompletionProcessor.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/CompletionProcessor.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/CompletionProcessor.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/Configuration.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/Configuration.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/Configuration.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/ContentScanner.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/ContentScanner.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/ContentScanner.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/DirectiveScanner.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/DirectiveScanner.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/DirectiveScanner.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/DocumentProvider.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/DocumentProvider.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/DocumentProvider.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/Editor.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/Editor.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/Editor.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/FreemarkerMultiPageEditor.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/FreemarkerMultiPageEditor.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/FreemarkerMultiPageEditor.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/MacroHyperlink.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/MacroHyperlink.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/MacroHyperlink.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/MacroHyperlinkDetector.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/MacroHyperlinkDetector.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/MacroHyperlinkDetector.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/NonRuleBasedDamagerRepairer.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/NonRuleBasedDamagerRepairer.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/NonRuleBasedDamagerRepairer.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/PartitionScanner.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/PartitionScanner.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/PartitionScanner.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/WhitespaceDetector.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/WhitespaceDetector.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/WhitespaceDetector.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/XMLTagScanner.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/XMLTagScanner.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/XMLTagScanner.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/actions/AddMacroLibrary.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/actions/AddMacroLibrary.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/actions/AddMacroLibrary.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/rules/DirectiveRule.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/rules/DirectiveRule.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/rules/DirectiveRule.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/rules/DirectiveRuleEnd.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/rules/DirectiveRuleEnd.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/rules/DirectiveRuleEnd.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/rules/GenericDirectiveRule.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/rules/GenericDirectiveRule.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/rules/GenericDirectiveRule.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/rules/GenericDirectiveRuleEnd.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/rules/GenericDirectiveRuleEnd.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/rules/GenericDirectiveRuleEnd.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/rules/InterpolationRule.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/rules/InterpolationRule.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/rules/InterpolationRule.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/rules/MacroInstanceRule.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/rules/MacroInstanceRule.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/rules/MacroInstanceRule.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/rules/MacroInstanceRuleEnd.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/rules/MacroInstanceRuleEnd.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/rules/MacroInstanceRuleEnd.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/rules/StringRule.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/rules/StringRule.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/rules/StringRule.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/rules/StringSubRule.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/rules/StringSubRule.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/rules/StringSubRule.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/rules/XmlRule.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/rules/XmlRule.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/rules/XmlRule.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/linetracker/ConsoleLineTracker.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/linetracker/ConsoleLineTracker.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/linetracker/ConsoleLineTracker.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/AbstractDirective.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/AbstractDirective.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/AbstractDirective.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/AbstractItem.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/AbstractItem.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/AbstractItem.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/AssignmentDirective.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/AssignmentDirective.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/AssignmentDirective.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/AssignmentEndDirective.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/AssignmentEndDirective.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/AssignmentEndDirective.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/CaseDefaultDirective.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/CaseDefaultDirective.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/CaseDefaultDirective.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/CaseDirective.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/CaseDirective.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/CaseDirective.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/CompletionDirective.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/CompletionDirective.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/CompletionDirective.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/CompletionInterpolation.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/CompletionInterpolation.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/CompletionInterpolation.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/CompletionMacroInstance.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/CompletionMacroInstance.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/CompletionMacroInstance.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/ElseIfDirective.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/ElseIfDirective.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/ElseIfDirective.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/FtlDirective.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/FtlDirective.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/FtlDirective.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/FunctionDirective.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/FunctionDirective.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/FunctionDirective.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/FunctionEndDirective.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/FunctionEndDirective.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/FunctionEndDirective.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/GenericDirective.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/GenericDirective.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/GenericDirective.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/GenericNestableDirective.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/GenericNestableDirective.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/GenericNestableDirective.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/GenericNestableEndDirective.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/GenericNestableEndDirective.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/GenericNestableEndDirective.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/IfDirective.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/IfDirective.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/IfDirective.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/IfElseDirective.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/IfElseDirective.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/IfElseDirective.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/IfEndDirective.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/IfEndDirective.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/IfEndDirective.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/Interpolation.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/Interpolation.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/Interpolation.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/Item.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/Item.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/Item.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/ItemFactory.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/ItemFactory.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/ItemFactory.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/ItemSet.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/ItemSet.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/ItemSet.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/LibraryMacroDirective.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/LibraryMacroDirective.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/LibraryMacroDirective.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/ListDirective.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/ListDirective.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/ListDirective.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/ListEndDirective.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/ListEndDirective.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/ListEndDirective.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/MacroDirective.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/MacroDirective.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/MacroDirective.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/MacroEndDirective.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/MacroEndDirective.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/MacroEndDirective.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/MacroEndInstance.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/MacroEndInstance.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/MacroEndInstance.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/MacroInstance.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/MacroInstance.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/MacroInstance.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/interpolation/AbstractFragment.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/interpolation/AbstractFragment.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/interpolation/AbstractFragment.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/interpolation/BuiltInFragment.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/interpolation/BuiltInFragment.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/interpolation/BuiltInFragment.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/interpolation/Fragment.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/interpolation/Fragment.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/interpolation/Fragment.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/interpolation/NameFragment.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/interpolation/NameFragment.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/interpolation/NameFragment.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/interpolation/NullFragment.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/interpolation/NullFragment.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/interpolation/NullFragment.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/interpolation/ParameterSet.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/interpolation/ParameterSet.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/interpolation/ParameterSet.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/interpolation/ParametersFragment.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/interpolation/ParametersFragment.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/interpolation/ParametersFragment.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/interpolation/StringFragment.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/interpolation/StringFragment.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/model/interpolation/StringFragment.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/outline/OutlineContentProvider.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/outline/OutlineContentProvider.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/outline/OutlineContentProvider.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/outline/OutlineLabelProvider.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/outline/OutlineLabelProvider.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/outline/OutlineLabelProvider.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/outline/OutlinePage.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/outline/OutlinePage.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/outline/OutlinePage.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/preferences/ContextProperties.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/preferences/ContextProperties.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/preferences/ContextProperties.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/preferences/PreferencePage.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/preferences/PreferencePage.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/preferences/PreferencePage.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/util/StringUtil.java
===================================================================
--- trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/util/StringUtil.java 2009-06-19 20:51:18 UTC (rev 16086)
+++ trunk/freemarker/plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/util/StringUtil.java 2009-06-19 20:56:50 UTC (rev 16087)
@@ -1,6 +1,6 @@
/*
- * JBoss, a division of Red Hat
- * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+ * JBoss by Red Hat
+ * Copyright 2006-2009, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
15 years, 6 months
JBoss Tools SVN: r16086 - in trunk/hibernatetools: features/org.hibernate.eclipse.feature and 18 other directories.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2009-06-19 16:51:18 -0400 (Fri, 19 Jun 2009)
New Revision: 16086
Modified:
trunk/hibernatetools/docs/reference/en/master.xml
trunk/hibernatetools/features/org.hibernate.eclipse.feature/feature.properties
trunk/hibernatetools/features/org.hibernate.eclipse.test.feature/feature.xml
trunk/hibernatetools/plugins/org.hibernate.eclipse.console/plugin.properties
trunk/hibernatetools/plugins/org.hibernate.eclipse.help/plugin.properties
trunk/hibernatetools/plugins/org.hibernate.eclipse.jdt.apt.ui/plugin.properties
trunk/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/plugin.properties
trunk/hibernatetools/plugins/org.hibernate.eclipse.mapper/plugin.properties
trunk/hibernatetools/plugins/org.hibernate.eclipse/about.properties
trunk/hibernatetools/plugins/org.hibernate.eclipse/plugin.properties
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.hblibs/plugin.properties
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.core/plugin.properties
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/plugin.properties
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.ui.veditor/plugin.properties
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.ui.view/plugin.properties
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml.ui/plugin.properties
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/plugin.properties
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/plugin.properties
trunk/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/plugin.properties
trunk/hibernatetools/tests/org.jboss.tools.hibernate.jpt.core.test/plugin.properties
trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.veditor.test/plugin.properties
Log:
https://jira.jboss.org/jira/browse/JBIDE-4488 switch to "JBoss by Red Hat" and update (c) to 2009 as appropriate
Modified: trunk/hibernatetools/docs/reference/en/master.xml
===================================================================
--- trunk/hibernatetools/docs/reference/en/master.xml 2009-06-19 20:47:22 UTC (rev 16085)
+++ trunk/hibernatetools/docs/reference/en/master.xml 2009-06-19 20:51:18 UTC (rev 16086)
@@ -45,7 +45,7 @@
<copyright>
<year>2007</year>
<year>2009</year>
- <holder>JBoss, a division of Red Hat</holder>
+ <holder>JBoss by Red Hat</holder>
</copyright>
<releaseinfo>
Modified: trunk/hibernatetools/features/org.hibernate.eclipse.feature/feature.properties
===================================================================
--- trunk/hibernatetools/features/org.hibernate.eclipse.feature/feature.properties 2009-06-19 20:47:22 UTC (rev 16085)
+++ trunk/hibernatetools/features/org.hibernate.eclipse.feature/feature.properties 2009-06-19 20:51:18 UTC (rev 16086)
@@ -1,12 +1,12 @@
###############################################################################
-# Copyright (c) 2009 JBoss, a division of Red Hat and others.
+# Copyright (c) 2009 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, a division of Red Hat - Initial implementation.
+# JBoss by Red Hat - Initial implementation.
##############################################################################
# feature.properties
# contains externalized strings for feature.xml
@@ -18,7 +18,7 @@
featureName=Hibernate Tools
# "providerName" property - name of the company that provides the feature
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
# "updateSiteName" property - label for the update site
updateSiteName=JBossTools Update Site
Modified: trunk/hibernatetools/features/org.hibernate.eclipse.test.feature/feature.xml
===================================================================
--- trunk/hibernatetools/features/org.hibernate.eclipse.test.feature/feature.xml 2009-06-19 20:47:22 UTC (rev 16085)
+++ trunk/hibernatetools/features/org.hibernate.eclipse.test.feature/feature.xml 2009-06-19 20:51:18 UTC (rev 16086)
@@ -3,7 +3,7 @@
id="org.hibernate.eclipse.test.feature"
label="Hibernate Tests"
version="3.1.0.beta7"
- provider-name="JBoss, a division of Red Hat">
+ provider-name="JBoss by Red Hat">
<description url="http://www.example.com/description">
hibernate test
Modified: trunk/hibernatetools/plugins/org.hibernate.eclipse/about.properties
===================================================================
--- trunk/hibernatetools/plugins/org.hibernate.eclipse/about.properties 2009-06-19 20:47:22 UTC (rev 16085)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse/about.properties 2009-06-19 20:51:18 UTC (rev 16086)
@@ -1,2 +1,2 @@
-blurb=Hibernate Tools for Eclipse\n\nVersion\: {featureVersion}\n\n(c) Copyright JBoss, a division of Red Hat, contributors and others 2004 - 2009. All rights reserved.\nVisit http\://tools.hibernate.org
+blurb=Hibernate Tools for Eclipse\n\nVersion\: {featureVersion}\n\n(c) Copyright JBoss by Red Hat, contributors and others 2004 - 2009. All rights reserved.\nVisit http\://tools.hibernate.org
Modified: trunk/hibernatetools/plugins/org.hibernate.eclipse/plugin.properties
===================================================================
--- trunk/hibernatetools/plugins/org.hibernate.eclipse/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse/plugin.properties 2009-06-19 20:51:18 UTC (rev 16086)
@@ -1,3 +1,3 @@
#Properties file for org.hibernate.eclipse
-Bundle-Vendor.0 = JBoss, a division of Red Hat
+Bundle-Vendor.0 = JBoss by Red Hat
Bundle-Name.0 = Hibernate Tools
\ No newline at end of file
Modified: trunk/hibernatetools/plugins/org.hibernate.eclipse.console/plugin.properties
===================================================================
--- trunk/hibernatetools/plugins/org.hibernate.eclipse.console/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse.console/plugin.properties 2009-06-19 20:51:18 UTC (rev 16086)
@@ -6,6 +6,6 @@
ViewName_HibernateDynamicSQLPreview=Hibernate Dynamic SQL Preview
ViewName_QueryParameters=Query Parameters
ViewCategory_Hibernate=Hibernate
-Bundle-Vendor.0 = JBoss, a division of Red Hat
+Bundle-Vendor.0 = JBoss by Red Hat
Bundle-Name.0 = Hibernate Console
#NavigatorContent_HibernateKnownConfigs=Hibernate Known Configurations
Modified: trunk/hibernatetools/plugins/org.hibernate.eclipse.help/plugin.properties
===================================================================
--- trunk/hibernatetools/plugins/org.hibernate.eclipse.help/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse.help/plugin.properties 2009-06-19 20:51:18 UTC (rev 16086)
@@ -1,3 +1,3 @@
#Properties file for org.hibernate.eclipse.help
-Bundle-Vendor.0 = JBoss, a division of Red Hat
+Bundle-Vendor.0 = JBoss by Red Hat
Bundle-Name.0 = Hibernate Help
\ No newline at end of file
Modified: trunk/hibernatetools/plugins/org.hibernate.eclipse.jdt.apt.ui/plugin.properties
===================================================================
--- trunk/hibernatetools/plugins/org.hibernate.eclipse.jdt.apt.ui/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse.jdt.apt.ui/plugin.properties 2009-06-19 20:51:18 UTC (rev 16086)
@@ -1,3 +1,3 @@
#Properties file for org.hibernate.eclipse.jdt.apt.ui
-Bundle-Vendor.0 = JBoss, a division of Red Hat
+Bundle-Vendor.0 = JBoss by Red Hat
Bundle-Name.0 = Hibernate APT
\ No newline at end of file
Modified: trunk/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/plugin.properties
===================================================================
--- trunk/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/plugin.properties 2009-06-19 20:51:18 UTC (rev 16086)
@@ -1,5 +1,5 @@
#Properties file for org.hibernate.eclipse.jdt.ui
-Bundle-Vendor.0 = JBoss, a division of Red Hat
+Bundle-Vendor.0 = JBoss by Red Hat
Bundle-Name.0 = Hibernate JDT Integration
Category_GenerateHibernateAnnotations=Generate Hibernate/JPA annotations
Command_GenerateHibernateAnnotations=Generate &Hibernate/JPA annotations...
Modified: trunk/hibernatetools/plugins/org.hibernate.eclipse.mapper/plugin.properties
===================================================================
--- trunk/hibernatetools/plugins/org.hibernate.eclipse.mapper/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse.mapper/plugin.properties 2009-06-19 20:51:18 UTC (rev 16086)
@@ -1,3 +1,3 @@
#Properties file for org.hibernate.eclipse.mapper
-Bundle-Vendor.0 = JBoss, a division of Red Hat
+Bundle-Vendor.0 = JBoss by Red Hat
Bundle-Name.0 = Mapper Plug-in
\ No newline at end of file
Modified: trunk/hibernatetools/plugins/org.jboss.tools.hibernate.hblibs/plugin.properties
===================================================================
--- trunk/hibernatetools/plugins/org.jboss.tools.hibernate.hblibs/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
+++ trunk/hibernatetools/plugins/org.jboss.tools.hibernate.hblibs/plugin.properties 2009-06-19 20:51:18 UTC (rev 16086)
@@ -1,4 +1,4 @@
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
plugin.name.0 = Hibernate Jars
-plugin.provider-name.0 = JBoss, a division of Red Hat
\ No newline at end of file
+plugin.provider-name.0 = JBoss by Red Hat
\ No newline at end of file
Modified: trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.core/plugin.properties
===================================================================
--- trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.core/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
+++ trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.core/plugin.properties 2009-06-19 20:51:18 UTC (rev 16086)
@@ -1,3 +1,3 @@
#Properties file for org.jboss.tools.hibernate.jpt.core
-Bundle-Vendor.0 = JBoss, a division of Red Hat
+Bundle-Vendor.0 = JBoss by Red Hat
Bundle-Name.0 = Hibernate Jdt Core
\ No newline at end of file
Modified: trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/plugin.properties
===================================================================
--- trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
+++ trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/plugin.properties 2009-06-19 20:51:18 UTC (rev 16086)
@@ -1,3 +1,3 @@
#Properties file for org.jboss.tools.hibernate.jpt.ui
-Bundle-Vendor.0 = JBoss, a division of Red Hat
+Bundle-Vendor.0 = JBoss by Red Hat
Bundle-Name.0 = Hibernate Jdt UI
\ No newline at end of file
Modified: trunk/hibernatetools/plugins/org.jboss.tools.hibernate.ui.veditor/plugin.properties
===================================================================
--- trunk/hibernatetools/plugins/org.jboss.tools.hibernate.ui.veditor/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
+++ trunk/hibernatetools/plugins/org.jboss.tools.hibernate.ui.veditor/plugin.properties 2009-06-19 20:51:18 UTC (rev 16086)
@@ -1,2 +1,2 @@
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
pluginName=Visual Editor Plugin
Modified: trunk/hibernatetools/plugins/org.jboss.tools.hibernate.ui.view/plugin.properties
===================================================================
--- trunk/hibernatetools/plugins/org.jboss.tools.hibernate.ui.view/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
+++ trunk/hibernatetools/plugins/org.jboss.tools.hibernate.ui.view/plugin.properties 2009-06-19 20:51:18 UTC (rev 16086)
@@ -11,5 +11,5 @@
org.jboss.tools.hibernate.ui.view.actions.ViewAction.tooltip=Show ORM Explorer
-Bundle-Vendor.0 = JBoss, a division of Red Hat
+Bundle-Vendor.0 = JBoss by Red Hat
Bundle-Name.0 = View Plug-in
\ No newline at end of file
Modified: trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/plugin.properties
===================================================================
--- trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
+++ trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/plugin.properties 2009-06-19 20:51:18 UTC (rev 16086)
@@ -1,2 +1,2 @@
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
pluginName=Hibernate 3.0 XML
Modified: trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml.ui/plugin.properties
===================================================================
--- trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml.ui/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
+++ trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml.ui/plugin.properties 2009-06-19 20:51:18 UTC (rev 16086)
@@ -1,2 +1,2 @@
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
pluginName=Hibernate 3.0 XML UI
Modified: trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/plugin.properties
===================================================================
--- trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
+++ trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/plugin.properties 2009-06-19 20:51:18 UTC (rev 16086)
@@ -1,3 +1,3 @@
#Properties file for org.hibernate.eclipse.console.test
-Bundle-Vendor.0 = JBoss, a division of Red Hat
+Bundle-Vendor.0 = JBoss by Red Hat
Bundle-Name.0 = Hibernate Console Test Plug-in
\ No newline at end of file
Modified: trunk/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/plugin.properties
===================================================================
--- trunk/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
+++ trunk/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/plugin.properties 2009-06-19 20:51:18 UTC (rev 16086)
@@ -1,3 +1,3 @@
#Properties file for org.hibernate.eclipse.jdt.ui.test
-Bundle-Vendor.0 = JBoss, a division of Red Hat
+Bundle-Vendor.0 = JBoss by Red Hat
Bundle-Name.0 = Hibernate Tools JDT integration Test Plug-in
\ No newline at end of file
Modified: trunk/hibernatetools/tests/org.jboss.tools.hibernate.jpt.core.test/plugin.properties
===================================================================
--- trunk/hibernatetools/tests/org.jboss.tools.hibernate.jpt.core.test/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
+++ trunk/hibernatetools/tests/org.jboss.tools.hibernate.jpt.core.test/plugin.properties 2009-06-19 20:51:18 UTC (rev 16086)
@@ -1,3 +1,3 @@
#Properties file for org.jboss.tools.hibernate.jpt.core.test
-Bundle-Vendor.0 = JBoss, a division of Red Hat
+Bundle-Vendor.0 = JBoss by Red Hat
Bundle-Name.0 = Hibernate Tools JPT integration Test Plug-in
\ No newline at end of file
Modified: trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.veditor.test/plugin.properties
===================================================================
--- trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.veditor.test/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
+++ trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.veditor.test/plugin.properties 2009-06-19 20:51:18 UTC (rev 16086)
@@ -1,3 +1,3 @@
#Properties file for org.jboss.tools.hibernate.ui.veditor.test
-Bundle-Vendor.0 = JBoss, a division of Red Hat
+Bundle-Vendor.0 = JBoss by Red Hat
Bundle-Name.0 = Visual Editor Test Plug-in
\ No newline at end of file
15 years, 6 months
JBoss Tools SVN: r16085 - in trunk: jsf/docs/jsf_tools_tutorial/en and 40 other directories.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2009-06-19 16:47:22 -0400 (Fri, 19 Jun 2009)
New Revision: 16085
Modified:
trunk/jsf/docs/jsf_tools_ref_guide/en/master.xml
trunk/jsf/docs/jsf_tools_tutorial/en/master.xml
trunk/jsf/docs/userguide/en/master.xml
trunk/jsf/features/org.jboss.tools.jsf.feature/feature.properties
trunk/jsf/features/org.jboss.tools.jsf.feature/feature_ja.properties
trunk/jsf/features/org.jboss.tools.richfaces.feature/feature.properties
trunk/jsf/features/org.jboss.tools.richfaces.feature/feature_ja.properties
trunk/jsf/plugins/org.jboss.tools.jsf.doc.user/plugin.properties
trunk/jsf/plugins/org.jboss.tools.jsf.doc.user/plugin_ja.properties
trunk/jsf/plugins/org.jboss.tools.jsf.text.ext.facelets/plugin.properties
trunk/jsf/plugins/org.jboss.tools.jsf.text.ext.facelets/plugin_ja.properties
trunk/jsf/plugins/org.jboss.tools.jsf.text.ext.richfaces/plugin.properties
trunk/jsf/plugins/org.jboss.tools.jsf.text.ext.richfaces/plugin_ja.properties
trunk/jsf/plugins/org.jboss.tools.jsf.text.ext/plugin.properties
trunk/jsf/plugins/org.jboss.tools.jsf.text.ext/plugin_ja.properties
trunk/jsf/plugins/org.jboss.tools.jsf.ui/plugin.properties
trunk/jsf/plugins/org.jboss.tools.jsf.ui/plugin_ja.properties
trunk/jsf/plugins/org.jboss.tools.jsf.verification/plugin.properties
trunk/jsf/plugins/org.jboss.tools.jsf.verification/plugin_ja.properties
trunk/jsf/plugins/org.jboss.tools.jsf.vpe.ajax4jsf/plugin.properties
trunk/jsf/plugins/org.jboss.tools.jsf.vpe.ajax4jsf/plugin_ja.properties
trunk/jsf/plugins/org.jboss.tools.jsf.vpe.facelets/plugin.properties
trunk/jsf/plugins/org.jboss.tools.jsf.vpe.facelets/plugin_ja.properties
trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jsf/plugin.properties
trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jsf/plugin_ja.properties
trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jstl/plugin.properties
trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jstl/plugin_ja.properties
trunk/jsf/plugins/org.jboss.tools.jsf.vpe.myfaces/plugin.properties
trunk/jsf/plugins/org.jboss.tools.jsf.vpe.myfaces/plugin_ja.properties
trunk/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/plugin.properties
trunk/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/plugin_ja.properties
trunk/jsf/plugins/org.jboss.tools.jsf.vpe.seam/plugin.properties
trunk/jsf/plugins/org.jboss.tools.jsf.vpe.seam/plugin_ja.properties
trunk/jsf/plugins/org.jboss.tools.jsf/plugin.properties
trunk/jsf/plugins/org.jboss.tools.jsf/plugin_ja.properties
trunk/jsf/tests/org.jboss.tools.jsf.test/plugin.properties
trunk/jsf/tests/org.jboss.tools.jsf.text.ext.test/plugin.properties
trunk/jsf/tests/org.jboss.tools.jsf.ui.test/plugin.properties
trunk/jsf/tests/org.jboss.tools.jsf.verification.test/plugin.properties
trunk/jsf/tests/org.jboss.tools.jsf.vpe.facelets.test/plugin.properties
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/plugin.properties
trunk/jsf/tests/org.jboss.tools.jsf.vpe.myfaces.test/plugin.properties
trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/plugin.properties
trunk/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/plugin.properties
trunk/jst/features/org.jboss.tools.jst.feature/feature.properties
trunk/jst/features/org.jboss.tools.jst.feature/feature_ja.properties
trunk/jst/features/org.jboss.tools.jst.web.tiles.feature/feature.properties
trunk/jst/features/org.jboss.tools.jst.web.tiles.feature/feature_ja.properties
trunk/jst/plugins/org.jboss.tools.jst.firstrun/plugin.properties
trunk/jst/plugins/org.jboss.tools.jst.firstrun/plugin_ja.properties
trunk/jst/plugins/org.jboss.tools.jst.jsp/plugin.properties
trunk/jst/plugins/org.jboss.tools.jst.jsp/plugin_ja.properties
trunk/jst/plugins/org.jboss.tools.jst.web.kb/plugin.properties
trunk/jst/plugins/org.jboss.tools.jst.web.tiles.ui/plugin.properties
trunk/jst/plugins/org.jboss.tools.jst.web.tiles.ui/plugin_ja.properties
trunk/jst/plugins/org.jboss.tools.jst.web.tiles/plugin.properties
trunk/jst/plugins/org.jboss.tools.jst.web.tiles/plugin_ja.properties
trunk/jst/plugins/org.jboss.tools.jst.web.ui/plugin.properties
trunk/jst/plugins/org.jboss.tools.jst.web.ui/plugin_ja.properties
trunk/jst/plugins/org.jboss.tools.jst.web.verification/plugin.properties
trunk/jst/plugins/org.jboss.tools.jst.web.verification/plugin_ja.properties
trunk/jst/plugins/org.jboss.tools.jst.web/plugin.properties
trunk/jst/plugins/org.jboss.tools.jst.web/plugin_ja.properties
trunk/jst/tests/org.jboss.tools.jst.jsp.test/plugin.properties
trunk/jst/tests/org.jboss.tools.jst.web.kb.test/plugin.properties
trunk/jst/tests/org.jboss.tools.jst.web.test/plugin.properties
trunk/jst/tests/org.jboss.tools.jst.web.ui.test/plugin.properties
Log:
https://jira.jboss.org/jira/browse/JBIDE-4488 switch to "JBoss by Red Hat" and update (c) to 2009 as appropriate
Modified: trunk/jsf/docs/jsf_tools_ref_guide/en/master.xml
===================================================================
--- trunk/jsf/docs/jsf_tools_ref_guide/en/master.xml 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jsf/docs/jsf_tools_ref_guide/en/master.xml 2009-06-19 20:47:22 UTC (rev 16085)
@@ -47,7 +47,7 @@
<copyright>
<year>2007</year>
<year>2009</year>
- <holder>JBoss, a division of Red Hat</holder>
+ <holder>JBoss by Red Hat</holder>
</copyright>
<releaseinfo>
Version: 3.1.0.M1
Modified: trunk/jsf/docs/jsf_tools_tutorial/en/master.xml
===================================================================
--- trunk/jsf/docs/jsf_tools_tutorial/en/master.xml 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jsf/docs/jsf_tools_tutorial/en/master.xml 2009-06-19 20:47:22 UTC (rev 16085)
@@ -47,7 +47,7 @@
<copyright>
<year>2007</year>
<year>2009</year>
- <holder>JBoss, a division of Red Hat</holder>
+ <holder>JBoss by Red Hat</holder>
</copyright>
<releaseinfo>
Modified: trunk/jsf/docs/userguide/en/master.xml
===================================================================
--- trunk/jsf/docs/userguide/en/master.xml 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jsf/docs/userguide/en/master.xml 2009-06-19 20:47:22 UTC (rev 16085)
@@ -36,7 +36,7 @@
<copyright>
<year>2007</year>
<year>2009</year>
- <holder>JBoss, a division of Red Hat</holder>
+ <holder>JBoss by Red Hat</holder>
</copyright>
<releaseinfo>
Version: 2.0.1.GA
Modified: trunk/jsf/features/org.jboss.tools.jsf.feature/feature.properties
===================================================================
--- trunk/jsf/features/org.jboss.tools.jsf.feature/feature.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jsf/features/org.jboss.tools.jsf.feature/feature.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,12 +1,12 @@
###############################################################################
-# Copyright (c) 2009 JBoss, a division of Red Hat and others.
+# Copyright (c) 2009 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, a division of Red Hat - Initial implementation.
+# JBoss by Red Hat - Initial implementation.
##############################################################################
# feature.properties
# contains externalized strings for feature.xml
@@ -18,7 +18,7 @@
featureName=JBoss Tools JSF
# "providerName" property - name of the company that provides the feature
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
# "updateSiteName" property - label for the update site
updateSiteName=JBossTools Update Site
Modified: trunk/jsf/features/org.jboss.tools.jsf.feature/feature_ja.properties
===================================================================
--- trunk/jsf/features/org.jboss.tools.jsf.feature/feature_ja.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jsf/features/org.jboss.tools.jsf.feature/feature_ja.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,4 +1,4 @@
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
updateSiteName=JBossTools Update Site
devUpdateSiteName=JBossTools Development Update Site
-copyright=Copyright (c) 2007 Exadel, Inc and Red Hat, Inc.\nDistributed under license by Red Hat, Inc. All rights reserved.\nThis program is made available under the terms of the\nEclipse Public License v1.0 which accompanies this distribution,\nand is available at http\://www.eclipse.org/legal/epl-v10.html\nContributors\:\nExadel, Inc. and Red Hat, Inc. - initial API and implementation
+copyright=Copyright (c) 2007-2009 Exadel, Inc and Red Hat, Inc.\nDistributed under license by Red Hat, Inc. All rights reserved.\nThis program is made available under the terms of the\nEclipse Public License v1.0 which accompanies this distribution,\nand is available at http\://www.eclipse.org/legal/epl-v10.html\nContributors\:\nExadel, Inc. and Red Hat, Inc. - initial API and implementation
Modified: trunk/jsf/features/org.jboss.tools.richfaces.feature/feature.properties
===================================================================
--- trunk/jsf/features/org.jboss.tools.richfaces.feature/feature.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jsf/features/org.jboss.tools.richfaces.feature/feature.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,12 +1,12 @@
###############################################################################
-# Copyright (c) 2009 JBoss, a division of Red Hat and others.
+# Copyright (c) 2009 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, a division of Red Hat - Initial implementation.
+# JBoss by Red Hat - Initial implementation.
##############################################################################
# feature.properties
# contains externalized strings for feature.xml
@@ -18,7 +18,7 @@
featureName=JBoss Tools RichFaces
# "providerName" property - name of the company that provides the feature
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
# "updateSiteName" property - label for the update site
updateSiteName=JBossTools Update Site
Modified: trunk/jsf/features/org.jboss.tools.richfaces.feature/feature_ja.properties
===================================================================
--- trunk/jsf/features/org.jboss.tools.richfaces.feature/feature_ja.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jsf/features/org.jboss.tools.richfaces.feature/feature_ja.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,6 +1,6 @@
featureName=JBoss Tools RichFaces
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
updateSiteName=JBossTools Update Site
devUpdateSiteName=JBossTools Development Update Site
description=\u30D3\u30B8\u30E5\u30A2\u30EB\u7DE8\u96C6
-copyright=Copyright (c) 2007 Exadel, Inc and Red Hat, Inc.\nDistributed under license by Red Hat, Inc. All rights reserved.\nThis program is made available under the terms of the\nEclipse Public License v1.0 which accompanies this distribution,\nand is available at http\://www.eclipse.org/legal/epl-v10.html\nContributors\:\nExadel, Inc. and Red Hat, Inc. - initial API and implementation
+copyright=Copyright (c) 2007-2009 Exadel, Inc and Red Hat, Inc.\nDistributed under license by Red Hat, Inc. All rights reserved.\nThis program is made available under the terms of the\nEclipse Public License v1.0 which accompanies this distribution,\nand is available at http\://www.eclipse.org/legal/epl-v10.html\nContributors\:\nExadel, Inc. and Red Hat, Inc. - initial API and implementation
Modified: trunk/jsf/plugins/org.jboss.tools.jsf/plugin.properties
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf/plugin.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jsf/plugins/org.jboss.tools.jsf/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,4 +1,4 @@
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
pluginName=JBoss Tools JSF
XHTML_Validator.name = XHTML Syntax Validator
Modified: trunk/jsf/plugins/org.jboss.tools.jsf/plugin_ja.properties
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf/plugin_ja.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jsf/plugins/org.jboss.tools.jsf/plugin_ja.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,2 +1,2 @@
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
pluginName=JBoss Tools JSF
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.doc.user/plugin.properties
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.doc.user/plugin.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.doc.user/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,3 +1,3 @@
#Properties file for org.jboss.tools.jsf.doc.user
-Bundle-Vendor.0 = JBoss, a division of Red Hat
+Bundle-Vendor.0 = JBoss by Red Hat
Bundle-Name.0 = JSF and Struts Guide Plug-in
\ No newline at end of file
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.doc.user/plugin_ja.properties
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.doc.user/plugin_ja.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.doc.user/plugin_ja.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1 +1 @@
-Bundle-Vendor.0=JBoss, a division of Red Hat
+Bundle-Vendor.0=JBoss by Red Hat
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.text.ext/plugin.properties
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.text.ext/plugin.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.text.ext/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,3 +1,3 @@
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
Bundle-Name.0 = Jsf Text Editors Extensions
\ No newline at end of file
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.text.ext/plugin_ja.properties
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.text.ext/plugin_ja.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.text.ext/plugin_ja.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,2 +1,2 @@
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
Bundle-Name.0=JSF \u30C6\u30AD\u30B9\u30C8\u30FB\u30A8\u30C7\u30A3\u30BF\u30FC\u62E1\u5F35
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.text.ext.facelets/plugin.properties
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.text.ext.facelets/plugin.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.text.ext.facelets/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,3 +1,3 @@
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
Bundle-Name.0 = Facelets Text Editors Extensions
\ No newline at end of file
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.text.ext.facelets/plugin_ja.properties
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.text.ext.facelets/plugin_ja.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.text.ext.facelets/plugin_ja.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,2 +1,2 @@
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
Bundle-Name.0=Facelets \u30C6\u30AD\u30B9\u30C8\u30FB\u30A8\u30C7\u30A3\u30BF\u30FC\u62E1\u5F35
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.text.ext.richfaces/plugin.properties
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.text.ext.richfaces/plugin.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.text.ext.richfaces/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,3 +1,3 @@
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
Bundle-Name.0 = Richfaces Text Editors Extensions
\ No newline at end of file
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.text.ext.richfaces/plugin_ja.properties
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.text.ext.richfaces/plugin_ja.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.text.ext.richfaces/plugin_ja.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,2 +1,2 @@
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
Bundle-Name.0=Richfaces \u30C6\u30AD\u30B9\u30C8\u30FB\u30A8\u30C7\u30A3\u30BF\u30FC\u62E1\u5F35
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.ui/plugin.properties
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.ui/plugin.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.ui/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,4 +1,4 @@
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
pluginName=JBoss Tools JSF UI
perspective.name=JSF Studio
newProjectWizard.name=JSF Project
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.ui/plugin_ja.properties
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.ui/plugin_ja.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.ui/plugin_ja.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,4 +1,4 @@
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
pluginName=JBoss Tools JSF UI
perspective.name=JSF Studio
newProjectWizard.name=JSF \u30D7\u30ED\u30B8\u30A7\u30AF\u30C8
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.verification/plugin.properties
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.verification/plugin.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.verification/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,2 +1,2 @@
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
Bundle-Name.0 = JSF Verification
\ No newline at end of file
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.verification/plugin_ja.properties
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.verification/plugin_ja.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.verification/plugin_ja.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,2 +1,2 @@
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
Bundle-Name.0=JSF \u691C\u8A3C
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.vpe.ajax4jsf/plugin.properties
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.vpe.ajax4jsf/plugin.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.vpe.ajax4jsf/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,3 +1,3 @@
#Properties file for org.jboss.tools.jsf.vpe.ajax4jsf
-Bundle-Vendor.0 = JBoss, a division of Red Hat
+Bundle-Vendor.0 = JBoss by Red Hat
Bundle-Name.0 = Ajax4jsf VPE Plug-in
\ No newline at end of file
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.vpe.ajax4jsf/plugin_ja.properties
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.vpe.ajax4jsf/plugin_ja.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.vpe.ajax4jsf/plugin_ja.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,2 +1,2 @@
-Bundle-Vendor.0=JBoss, a division of Red Hat
+Bundle-Vendor.0=JBoss by Red Hat
Bundle-Name.0=Ajax4jsf VPE \u30D7\u30E9\u30B0\u30A4\u30F3
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.vpe.facelets/plugin.properties
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.vpe.facelets/plugin.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.vpe.facelets/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,2 +1,2 @@
pluginName=Facelets Plug-in
-providerName=JBoss, a division of Red Hat
\ No newline at end of file
+providerName=JBoss by Red Hat
\ No newline at end of file
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.vpe.facelets/plugin_ja.properties
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.vpe.facelets/plugin_ja.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.vpe.facelets/plugin_ja.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,2 +1,2 @@
pluginName=Facelets \u30D7\u30E9\u30B0\u30A4\u30F3
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jsf/plugin.properties
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jsf/plugin.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jsf/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,2 +1,2 @@
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
pluginName=JSF support for JBoss Visual Page Editor Plug-in
\ No newline at end of file
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jsf/plugin_ja.properties
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jsf/plugin_ja.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jsf/plugin_ja.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,2 +1,2 @@
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
pluginName=JBoss \u30D3\u30B8\u30E5\u30A2\u30EB\u30FB\u30DA\u30FC\u30B8\u30FB\u30A8\u30C7\u30A3\u30BF\u30FC\u30FB\u30D7\u30E9\u30B0\u30A4\u30F3\u306E JSF \u30B5\u30DD\u30FC\u30C8
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jstl/plugin.properties
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jstl/plugin.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jstl/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,2 +1,2 @@
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
pluginName=JSF support for JBoss Visual Page Editor Plug-in
\ No newline at end of file
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jstl/plugin_ja.properties
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jstl/plugin_ja.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jstl/plugin_ja.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,2 +1,2 @@
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
pluginName=JBoss \u30D3\u30B8\u30E5\u30A2\u30EB\u30FB\u30DA\u30FC\u30B8\u30FB\u30A8\u30C7\u30A3\u30BF\u30FC\u30FB\u30D7\u30E9\u30B0\u30A4\u30F3\u306E JSF \u30B5\u30DD\u30FC\u30C8
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.vpe.myfaces/plugin.properties
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.vpe.myfaces/plugin.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.vpe.myfaces/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,3 +1,3 @@
#Properties file for org.jboss.tools.jsf.vpe.myfaces
-Bundle-Vendor.0 = JBoss, a division of Red Hat
+Bundle-Vendor.0 = JBoss by Red Hat
Bundle-Name.0 = MyFaces support for JBoss Visual Page Editor Plug-in
\ No newline at end of file
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.vpe.myfaces/plugin_ja.properties
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.vpe.myfaces/plugin_ja.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.vpe.myfaces/plugin_ja.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,2 +1,2 @@
-Bundle-Vendor.0=JBoss, a division of Red Hat
+Bundle-Vendor.0=JBoss by Red Hat
Bundle-Name.0=JBoss \u30D3\u30B8\u30E5\u30A2\u30EB\u30FB\u30DA\u30FC\u30B8\u30FB\u30A8\u30C7\u30A3\u30BF\u30FC\u30FB\u30D7\u30E9\u30B0\u30A4\u30F3\u306E MyFaces \u30B5\u30DD\u30FC\u30C8
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/plugin.properties
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/plugin.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,3 +1,3 @@
#Properties file for org.jboss.tools.jsf.vpe.richfaces
-Bundle-Vendor.0 = JBoss, a division of Red Hat
+Bundle-Vendor.0 = JBoss by Red Hat
Bundle-Name.0 = Richfaces VPE Support Plug-in
\ No newline at end of file
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/plugin_ja.properties
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/plugin_ja.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/plugin_ja.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,2 +1,2 @@
-Bundle-Vendor.0=JBoss, a division of Red Hat
+Bundle-Vendor.0=JBoss by Red Hat
Bundle-Name.0=Richfaces VPE \u30B5\u30DD\u30FC\u30C8\u30FB\u30D7\u30E9\u30B0\u30A4\u30F3
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.vpe.seam/plugin.properties
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.vpe.seam/plugin.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.vpe.seam/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,3 +1,3 @@
#Properties file for org.jboss.tools.jsf.vpe.seam
-Bundle-Vendor.0 = JBoss, a division of Red Hat
+Bundle-Vendor.0 = JBoss by Red Hat
Bundle-Name.0 = Seam VPE support Plug-in
\ No newline at end of file
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.vpe.seam/plugin_ja.properties
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.vpe.seam/plugin_ja.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.vpe.seam/plugin_ja.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,2 +1,2 @@
-Bundle-Vendor.0=JBoss, a division of Red Hat
+Bundle-Vendor.0=JBoss by Red Hat
Bundle-Name.0=Seam VPE \u30B5\u30DD\u30FC\u30C8\u30FB\u30D7\u30E9\u30B0\u30A4\u30F3
Modified: trunk/jsf/tests/org.jboss.tools.jsf.test/plugin.properties
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.test/plugin.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jsf/tests/org.jboss.tools.jsf.test/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,3 +1,3 @@
#Properties file for org.jboss.tools.jsf.test
-Bundle-Vendor.0 = JBoss, a division of Red Hat
+Bundle-Vendor.0 = JBoss by Red Hat
Bundle-Name.0 = JSF Tests Plug-in
\ No newline at end of file
Modified: trunk/jsf/tests/org.jboss.tools.jsf.text.ext.test/plugin.properties
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.text.ext.test/plugin.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jsf/tests/org.jboss.tools.jsf.text.ext.test/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,3 +1,3 @@
#Properties file for org.jboss.tools.jsf.text.ext.test
-Bundle-Vendor.0 = JBoss, a division of Red Hat
+Bundle-Vendor.0 = JBoss by Red Hat
Bundle-Name.0 = EL Expressions Parcer Tests Plug-in
\ No newline at end of file
Modified: trunk/jsf/tests/org.jboss.tools.jsf.ui.test/plugin.properties
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.ui.test/plugin.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jsf/tests/org.jboss.tools.jsf.ui.test/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,3 +1,3 @@
#Properties file for org.jboss.tools.jsf.ui.test
-Bundle-Vendor.0 = JBoss, a division of Red Hat
+Bundle-Vendor.0 = JBoss by Red Hat
Bundle-Name.0 = JSF UI Test Plug-in
\ No newline at end of file
Modified: trunk/jsf/tests/org.jboss.tools.jsf.verification.test/plugin.properties
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.verification.test/plugin.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jsf/tests/org.jboss.tools.jsf.verification.test/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,3 +1,3 @@
#Properties file for org.jboss.tools.jsf.verification.test
-Bundle-Vendor.0 = JBoss, a division of Red Hat
+Bundle-Vendor.0 = JBoss by Red Hat
Bundle-Name.0 = JSF Verification Tests Plug-in
\ No newline at end of file
Modified: trunk/jsf/tests/org.jboss.tools.jsf.vpe.facelets.test/plugin.properties
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.facelets.test/plugin.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.facelets.test/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,3 +1,3 @@
#Properties file for org.jboss.tools.jsf.vpe.facelets.test
-Bundle-Vendor.0 = JBoss, a division of Red Hat
+Bundle-Vendor.0 = JBoss by Red Hat
Bundle-Name.0 = Test Plug-in
\ No newline at end of file
Modified: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/plugin.properties
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/plugin.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,3 +1,3 @@
#Properties file for org.jboss.tools.jsf.vpe.jsf.test
-Bundle-Vendor.0 = JBoss, a division of Red Hat
+Bundle-Vendor.0 = JBoss by Red Hat
Bundle-Name.0 = Jsf Test Plug-in
\ No newline at end of file
Modified: trunk/jsf/tests/org.jboss.tools.jsf.vpe.myfaces.test/plugin.properties
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.myfaces.test/plugin.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.myfaces.test/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,3 +1,3 @@
#Properties file for org.jboss.tools.jsf.vpe.myfaces.test
-Bundle-Vendor.0 = JBoss, a division of Red Hat
+Bundle-Vendor.0 = JBoss by Red Hat
Bundle-Name.0 = MyFaces Test Plug-in
\ No newline at end of file
Modified: trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/plugin.properties
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/plugin.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,3 +1,3 @@
#Properties file for org.jboss.tools.jsf.vpe.richfaces.test
-Bundle-Vendor.0 = JBoss, a division of Red Hat
+Bundle-Vendor.0 = JBoss by Red Hat
Bundle-Name.0 = Richfaces Test Plug-in
\ No newline at end of file
Modified: trunk/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/plugin.properties
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/plugin.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,3 +1,3 @@
#Properties file for org.jboss.tools.jsf.vpe.seam.test
-Bundle-Vendor.0 = JBoss, a division of Red Hat
+Bundle-Vendor.0 = JBoss by Red Hat
Bundle-Name.0 = Seam Test Plug-in
\ No newline at end of file
Modified: trunk/jst/features/org.jboss.tools.jst.feature/feature.properties
===================================================================
--- trunk/jst/features/org.jboss.tools.jst.feature/feature.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jst/features/org.jboss.tools.jst.feature/feature.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,12 +1,12 @@
###############################################################################
-# Copyright (c) 2009 JBoss, a division of Red Hat and others.
+# Copyright (c) 2009 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, a division of Red Hat - Initial implementation.
+# JBoss by Red Hat - Initial implementation.
##############################################################################
# feature.properties
# contains externalized strings for feature.xml
@@ -18,7 +18,7 @@
featureName=JBoss Tools Java Standard Tools
# "providerName" property - name of the company that provides the feature
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
# "updateSiteName" property - label for the update site
updateSiteName=JBossTools Update Site
Modified: trunk/jst/features/org.jboss.tools.jst.feature/feature_ja.properties
===================================================================
--- trunk/jst/features/org.jboss.tools.jst.feature/feature_ja.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jst/features/org.jboss.tools.jst.feature/feature_ja.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1 +1 @@
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
Modified: trunk/jst/features/org.jboss.tools.jst.web.tiles.feature/feature.properties
===================================================================
--- trunk/jst/features/org.jboss.tools.jst.web.tiles.feature/feature.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jst/features/org.jboss.tools.jst.web.tiles.feature/feature.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,12 +1,12 @@
###############################################################################
-# Copyright (c) 2009 JBoss, a division of Red Hat and others.
+# Copyright (c) 2009 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, a division of Red Hat - Initial implementation.
+# JBoss by Red Hat - Initial implementation.
##############################################################################
# feature.properties
# contains externalized strings for feature.xml
@@ -18,7 +18,7 @@
featureName=JBoss Tools Tiles
# "providerName" property - name of the company that provides the feature
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
# "updateSiteName" property - label for the update site
updateSiteName=JBossTools Update Site
Modified: trunk/jst/features/org.jboss.tools.jst.web.tiles.feature/feature_ja.properties
===================================================================
--- trunk/jst/features/org.jboss.tools.jst.web.tiles.feature/feature_ja.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jst/features/org.jboss.tools.jst.web.tiles.feature/feature_ja.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1 +1 @@
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
Modified: trunk/jst/plugins/org.jboss.tools.jst.firstrun/plugin.properties
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.firstrun/plugin.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jst/plugins/org.jboss.tools.jst.firstrun/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,3 +1,3 @@
#Properties file for org.jboss.tools.jst.firstrun
-Bundle-Vendor.0 = JBoss, a division of Red Hat
+Bundle-Vendor.0 = JBoss by Red Hat
Bundle-Name.0 = JBoss AS Initialization Plug-in
\ No newline at end of file
Modified: trunk/jst/plugins/org.jboss.tools.jst.firstrun/plugin_ja.properties
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.firstrun/plugin_ja.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jst/plugins/org.jboss.tools.jst.firstrun/plugin_ja.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,2 +1,2 @@
-Bundle-Vendor.0=JBoss, a division of Red Hat
+Bundle-Vendor.0=JBoss by Red Hat
Bundle-Name.0=JBoss AS \u521D\u671F\u5316 Plug-in
Modified: trunk/jst/plugins/org.jboss.tools.jst.jsp/plugin.properties
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.jsp/plugin.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jst/plugins/org.jboss.tools.jst.jsp/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,4 +1,4 @@
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
jsp.page.name=JSP Syntax Colors
editors.jsp.name=JBoss Tools JSP Editor
editors.html.name=JBoss Tools HTML Editor
Modified: trunk/jst/plugins/org.jboss.tools.jst.jsp/plugin_ja.properties
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.jsp/plugin_ja.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jst/plugins/org.jboss.tools.jst.jsp/plugin_ja.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,4 +1,4 @@
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
jsp.page.name=JSP \u69CB\u6587\u306E\u8272
editors.jsp.name=JBoss Tools JSP \u30A8\u30C7\u30A3\u30BF\u30FC
editors.html.name=JBoss Tools HTML \u30A8\u30C7\u30A3\u30BF\u30FC
Modified: trunk/jst/plugins/org.jboss.tools.jst.web/plugin.properties
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.web/plugin.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jst/plugins/org.jboss.tools.jst.web/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,4 +1,4 @@
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
# START NON-TRANSLATABLE
Bundle-Name.0 = Web
# END NON-TRANSLATABLE
Modified: trunk/jst/plugins/org.jboss.tools.jst.web/plugin_ja.properties
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.web/plugin_ja.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jst/plugins/org.jboss.tools.jst.web/plugin_ja.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1 +1 @@
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
Modified: trunk/jst/plugins/org.jboss.tools.jst.web.kb/plugin.properties
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.web.kb/plugin.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jst/plugins/org.jboss.tools.jst.web.kb/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,4 +1,4 @@
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
# START NON-TRANSLATABLE
Bundle-Name.0 = Web KB
# END NON-TRANSLATABLE
\ No newline at end of file
Modified: trunk/jst/plugins/org.jboss.tools.jst.web.tiles/plugin.properties
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.web.tiles/plugin.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jst/plugins/org.jboss.tools.jst.web.tiles/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,2 +1,2 @@
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
Bundle-Name.0 = Web Tiles
\ No newline at end of file
Modified: trunk/jst/plugins/org.jboss.tools.jst.web.tiles/plugin_ja.properties
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.web.tiles/plugin_ja.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jst/plugins/org.jboss.tools.jst.web.tiles/plugin_ja.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,2 +1,2 @@
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
Bundle-Name.0=Web Tiles
Modified: trunk/jst/plugins/org.jboss.tools.jst.web.tiles.ui/plugin.properties
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.web.tiles.ui/plugin.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jst/plugins/org.jboss.tools.jst.web.tiles.ui/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,5 +1,5 @@
pluginName=JBoss Tools Tiles
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
editors.tiles.name=JBoss Tools Tiles Editor
new.tiles=Tiles File
new.validation=Validation File
Modified: trunk/jst/plugins/org.jboss.tools.jst.web.tiles.ui/plugin_ja.properties
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.web.tiles.ui/plugin_ja.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jst/plugins/org.jboss.tools.jst.web.tiles.ui/plugin_ja.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,5 +1,5 @@
pluginName=JBoss Tools Tiles
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
editors.tiles.name=JBoss Tools Tiles \u30A8\u30C7\u30A3\u30BF\u30FC
new.tiles=Tiles \u30D5\u30A1\u30A4\u30EB
new.validation=\u691C\u8A3C\u30D5\u30A1\u30A4\u30EB
Modified: trunk/jst/plugins/org.jboss.tools.jst.web.ui/plugin.properties
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.web.ui/plugin.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jst/plugins/org.jboss.tools.jst.web.ui/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,4 +1,4 @@
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
editors.tld12.name=JBoss Tools TLD Editor
editors.web.name=JBoss Tools Web Descriptor Editor
Modified: trunk/jst/plugins/org.jboss.tools.jst.web.ui/plugin_ja.properties
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.web.ui/plugin_ja.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jst/plugins/org.jboss.tools.jst.web.ui/plugin_ja.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,4 +1,4 @@
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
editors.tld12.name=JBoss Tools TLD \u30A8\u30C7\u30A3\u30BF\u30FC
editors.web.name=JBoss Tools Web \u8A18\u8FF0\u5B50\u30A8\u30C7\u30A3\u30BF\u30FC
textProblemName=XML \u554F\u984C
Modified: trunk/jst/plugins/org.jboss.tools.jst.web.verification/plugin.properties
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.web.verification/plugin.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jst/plugins/org.jboss.tools.jst.web.verification/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,2 +1,2 @@
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
Bundle-Name.0 = WEB Verification
\ No newline at end of file
Modified: trunk/jst/plugins/org.jboss.tools.jst.web.verification/plugin_ja.properties
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.web.verification/plugin_ja.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jst/plugins/org.jboss.tools.jst.web.verification/plugin_ja.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,2 +1,2 @@
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
Bundle-Name.0=Web \u691C\u8A3C
Modified: trunk/jst/tests/org.jboss.tools.jst.jsp.test/plugin.properties
===================================================================
--- trunk/jst/tests/org.jboss.tools.jst.jsp.test/plugin.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jst/tests/org.jboss.tools.jst.jsp.test/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,3 +1,3 @@
#Properties file for org.jboss.tools.jst.jsp.test
-Bundle-Vendor.0 = JBoss, a division of Red Hat
+Bundle-Vendor.0 = JBoss by Red Hat
Bundle-Name.0 = Test
\ No newline at end of file
Modified: trunk/jst/tests/org.jboss.tools.jst.web.kb.test/plugin.properties
===================================================================
--- trunk/jst/tests/org.jboss.tools.jst.web.kb.test/plugin.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jst/tests/org.jboss.tools.jst.web.kb.test/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,3 +1,3 @@
#Properties file for org.jboss.tools.jst.web.test
-Bundle-Vendor.0 = JBoss, a division of Red Hat
+Bundle-Vendor.0 = JBoss by Red Hat
Bundle-Name.0 = Tests Plug-in
\ No newline at end of file
Modified: trunk/jst/tests/org.jboss.tools.jst.web.test/plugin.properties
===================================================================
--- trunk/jst/tests/org.jboss.tools.jst.web.test/plugin.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jst/tests/org.jboss.tools.jst.web.test/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,3 +1,3 @@
#Properties file for org.jboss.tools.jst.web.test
-Bundle-Vendor.0 = JBoss, a division of Red Hat
+Bundle-Vendor.0 = JBoss by Red Hat
Bundle-Name.0 = Tests Plug-in
\ No newline at end of file
Modified: trunk/jst/tests/org.jboss.tools.jst.web.ui.test/plugin.properties
===================================================================
--- trunk/jst/tests/org.jboss.tools.jst.web.ui.test/plugin.properties 2009-06-19 18:19:30 UTC (rev 16084)
+++ trunk/jst/tests/org.jboss.tools.jst.web.ui.test/plugin.properties 2009-06-19 20:47:22 UTC (rev 16085)
@@ -1,3 +1,3 @@
#Properties file for org.jboss.tools.jst.web.ui.test
-Bundle-Vendor.0 = JBoss, a division of Red Hat
+Bundle-Vendor.0 = JBoss by Red Hat
Bundle-Name.0 = WEB UI Test Plug-in
\ No newline at end of file
15 years, 6 months
JBoss Tools SVN: r16084 - in trunk/portlet: features/org.jboss.tools.portlet.feature and 6 other directories.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2009-06-19 14:19:30 -0400 (Fri, 19 Jun 2009)
New Revision: 16084
Modified:
trunk/portlet/docs/reference/en/master.xml
trunk/portlet/features/org.jboss.tools.portlet.feature/feature.properties
trunk/portlet/features/org.jboss.tools.portlet.feature/feature_ja.properties
trunk/portlet/plugins/org.jboss.tools.portlet.core/dtdsAndSchemas/jboss-app_2_6.dtd
trunk/portlet/plugins/org.jboss.tools.portlet.core/dtdsAndSchemas/jboss-portlet_2_6.dtd
trunk/portlet/plugins/org.jboss.tools.portlet.core/dtdsAndSchemas/portal-object_2_6.dtd
trunk/portlet/plugins/org.jboss.tools.portlet.core/dtdsAndSchemas/portlet-instances_2_6.dtd
trunk/portlet/plugins/org.jboss.tools.portlet.core/plugin.properties
trunk/portlet/plugins/org.jboss.tools.portlet.core/plugin_ja.properties
trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/IPortletConstants.java
trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/JSFPortlet10LibrariesContainerInitializer.java
trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/Portlet20LibrariesContainerInitializer.java
trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/PortletRuntimeLibrariesContainerInitializer.java
trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/JSFPortletFacetInstallDataModelProvider.java
trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/JSFPortletFacetInstallDelegate.java
trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/JSFPortletFacetUninstallDelegate.java
trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/PortletFacetInstallDataModelProvider.java
trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/PortletFacetInstallDelegate.java
trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/PortletFacetUninstallDelegate.java
trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/SeamPortletFacetInstallDataModelProvider.java
trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/SeamPortletFacetInstallDelegate.java
trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/SeamPortletFacetUninstallDelegate.java
trunk/portlet/plugins/org.jboss.tools.portlet.ui/about.properties
trunk/portlet/plugins/org.jboss.tools.portlet.ui/about_ja.properties
trunk/portlet/plugins/org.jboss.tools.portlet.ui/plugin.properties
trunk/portlet/plugins/org.jboss.tools.portlet.ui/plugin_ja.properties
Log:
https://jira.jboss.org/jira/browse/JBIDE-4488 switch to "JBoss by Red Hat" and update (c) to 2009 as appropriate
Modified: trunk/portlet/docs/reference/en/master.xml
===================================================================
--- trunk/portlet/docs/reference/en/master.xml 2009-06-19 18:05:07 UTC (rev 16083)
+++ trunk/portlet/docs/reference/en/master.xml 2009-06-19 18:19:30 UTC (rev 16084)
@@ -45,7 +45,7 @@
<copyright>
<year>2008</year>
<year>2009</year>
- <holder>JBoss, a division of Red Hat</holder>
+ <holder>JBoss by Red Hat</holder>
</copyright>
<releaseinfo>
Version: 1.1.0.M1
Modified: trunk/portlet/features/org.jboss.tools.portlet.feature/feature.properties
===================================================================
--- trunk/portlet/features/org.jboss.tools.portlet.feature/feature.properties 2009-06-19 18:05:07 UTC (rev 16083)
+++ trunk/portlet/features/org.jboss.tools.portlet.feature/feature.properties 2009-06-19 18:19:30 UTC (rev 16084)
@@ -1,12 +1,12 @@
###############################################################################
-# Copyright (c) 2008 JBoss, a division of Red Hat and others.
+# Copyright (c) 2008-2009 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, a division of Red Hat - Initial implementation.
+# JBoss by Red Hat - Initial implementation.
##############################################################################
# feature.properties
# contains externalized strings for feature.xml
@@ -18,7 +18,7 @@
featureName=JBoss Portlet
# "providerName" property - name of the company that provides the feature
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
# "updateSiteName" property - label for the update site
updateSiteName=JBossTools Update Site
@@ -27,8 +27,8 @@
description=JBoss Portlet
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2008 JBoss, a division of 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, a division of Red Hat - Initial implementation.\n
+copyright=Copyright (c) 2008-2009 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.\n
############### end of copyright property ####################################
# "licenseURL" property - URL of the "Feature License"
Modified: trunk/portlet/features/org.jboss.tools.portlet.feature/feature_ja.properties
===================================================================
--- trunk/portlet/features/org.jboss.tools.portlet.feature/feature_ja.properties 2009-06-19 18:05:07 UTC (rev 16083)
+++ trunk/portlet/features/org.jboss.tools.portlet.feature/feature_ja.properties 2009-06-19 18:19:30 UTC (rev 16084)
@@ -1,7 +1,7 @@
featureName=JBoss \u30DD\u30FC\u30C8\u30EC\u30C3\u30C8
-providerName=JBoss, a division of Red Hat
+providerName=JBoss by Red Hat
updateSiteName=JBossTools Update Site
description=JBoss \u30DD\u30FC\u30C8\u30EC\u30C3\u30C8
-copyright=Copyright (c) 2008 JBoss, a division of 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.0which accompanies this distribution, and is available athttp//www.eclipse.org/legal/epl-v10.htmlContributorsJBoss, a division of Red Hat - Initial implementation.
+copyright=Copyright (c) 2008-2009 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.0which accompanies this distribution, and is available athttp//www.eclipse.org/legal/epl-v10.htmlContributorsJBoss by Red Hat - Initial implementation.
licenseURL=license.html
Modified: trunk/portlet/plugins/org.jboss.tools.portlet.core/dtdsAndSchemas/jboss-app_2_6.dtd
===================================================================
--- trunk/portlet/plugins/org.jboss.tools.portlet.core/dtdsAndSchemas/jboss-app_2_6.dtd 2009-06-19 18:05:07 UTC (rev 16083)
+++ trunk/portlet/plugins/org.jboss.tools.portlet.core/dtdsAndSchemas/jboss-app_2_6.dtd 2009-06-19 18:19:30 UTC (rev 16084)
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ~ JBoss, a division of Red Hat ~
- ~ Copyright 2006, Red Hat Middleware, LLC, and individual ~
+ ~ JBoss by Red Hat ~
+ ~ Copyright 2006-2009, Red Hat Middleware, LLC, and individual ~
~ contributors as indicated by the @authors tag. See the ~
~ copyright.txt in the distribution for a full listing of ~
~ individual contributors. ~
Modified: trunk/portlet/plugins/org.jboss.tools.portlet.core/dtdsAndSchemas/jboss-portlet_2_6.dtd
===================================================================
--- trunk/portlet/plugins/org.jboss.tools.portlet.core/dtdsAndSchemas/jboss-portlet_2_6.dtd 2009-06-19 18:05:07 UTC (rev 16083)
+++ trunk/portlet/plugins/org.jboss.tools.portlet.core/dtdsAndSchemas/jboss-portlet_2_6.dtd 2009-06-19 18:19:30 UTC (rev 16084)
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ~ JBoss, a division of Red Hat ~
- ~ Copyright 2006, Red Hat Middleware, LLC, and individual ~
+ ~ JBoss by Red Hat ~
+ ~ Copyright 2006-2009, Red Hat Middleware, LLC, and individual ~
~ contributors as indicated by the @authors tag. See the ~
~ copyright.txt in the distribution for a full listing of ~
~ individual contributors. ~
Modified: trunk/portlet/plugins/org.jboss.tools.portlet.core/dtdsAndSchemas/portal-object_2_6.dtd
===================================================================
--- trunk/portlet/plugins/org.jboss.tools.portlet.core/dtdsAndSchemas/portal-object_2_6.dtd 2009-06-19 18:05:07 UTC (rev 16083)
+++ trunk/portlet/plugins/org.jboss.tools.portlet.core/dtdsAndSchemas/portal-object_2_6.dtd 2009-06-19 18:19:30 UTC (rev 16084)
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ~ JBoss, a division of Red Hat ~
- ~ Copyright 2006, Red Hat Middleware, LLC, and individual ~
+ ~ JBoss by Red Hat ~
+ ~ Copyright 2006-2009, Red Hat Middleware, LLC, and individual ~
~ contributors as indicated by the @authors tag. See the ~
~ copyright.txt in the distribution for a full listing of ~
~ individual contributors. ~
Modified: trunk/portlet/plugins/org.jboss.tools.portlet.core/dtdsAndSchemas/portlet-instances_2_6.dtd
===================================================================
--- trunk/portlet/plugins/org.jboss.tools.portlet.core/dtdsAndSchemas/portlet-instances_2_6.dtd 2009-06-19 18:05:07 UTC (rev 16083)
+++ trunk/portlet/plugins/org.jboss.tools.portlet.core/dtdsAndSchemas/portlet-instances_2_6.dtd 2009-06-19 18:19:30 UTC (rev 16084)
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ~ JBoss, a division of Red Hat ~
+ ~ JBoss by Red Hat ~
~ Copyright 2006, Red Hat Middleware, LLC, and individual ~
~ contributors as indicated by the @authors tag. See the ~
~ copyright.txt in the distribution for a full listing of ~
Modified: trunk/portlet/plugins/org.jboss.tools.portlet.core/plugin.properties
===================================================================
--- trunk/portlet/plugins/org.jboss.tools.portlet.core/plugin.properties 2009-06-19 18:05:07 UTC (rev 16083)
+++ trunk/portlet/plugins/org.jboss.tools.portlet.core/plugin.properties 2009-06-19 18:19:30 UTC (rev 16084)
@@ -1,3 +1,3 @@
#Properties file for org.jboss.tools.portlet.core
-BundleVendor = JBoss, a division of Red Hat
+BundleVendor = JBoss by Red Hat
BundleName = Portlet Core Plug-in
\ No newline at end of file
Modified: trunk/portlet/plugins/org.jboss.tools.portlet.core/plugin_ja.properties
===================================================================
--- trunk/portlet/plugins/org.jboss.tools.portlet.core/plugin_ja.properties 2009-06-19 18:05:07 UTC (rev 16083)
+++ trunk/portlet/plugins/org.jboss.tools.portlet.core/plugin_ja.properties 2009-06-19 18:19:30 UTC (rev 16084)
@@ -1,2 +1,2 @@
-BundleVendor=JBoss, a division of Red Hat
+BundleVendor=JBoss by Red Hat
BundleName=\u30DD\u30FC\u30C8\u30EC\u30C3\u30C8\u30FB\u30B3\u30A2\u30FB\u30D7\u30E9\u30B0\u30A4\u30F3
Modified: trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/IPortletConstants.java
===================================================================
--- trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/IPortletConstants.java 2009-06-19 18:05:07 UTC (rev 16083)
+++ trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/IPortletConstants.java 2009-06-19 18:19:30 UTC (rev 16084)
@@ -1,12 +1,12 @@
/*************************************************************************************
- * Copyright (c) 2008 JBoss, a division of Red Hat and others.
+ * Copyright (c) 2008-2009 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, a division of Red Hat - Initial implementation.
+ * JBoss by Red Hat - Initial implementation.
************************************************************************************/
package org.jboss.tools.portlet.core;
Modified: trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/JSFPortlet10LibrariesContainerInitializer.java
===================================================================
--- trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/JSFPortlet10LibrariesContainerInitializer.java 2009-06-19 18:05:07 UTC (rev 16083)
+++ trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/JSFPortlet10LibrariesContainerInitializer.java 2009-06-19 18:19:30 UTC (rev 16084)
@@ -1,12 +1,12 @@
/*************************************************************************************
- * Copyright (c) 2008 JBoss, a division of Red Hat and others.
+ * Copyright (c) 2008-2009 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, a division of Red Hat - Initial implementation.
+ * JBoss by Red Hat - Initial implementation.
************************************************************************************/
package org.jboss.tools.portlet.core.internal;
Modified: trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/Portlet20LibrariesContainerInitializer.java
===================================================================
--- trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/Portlet20LibrariesContainerInitializer.java 2009-06-19 18:05:07 UTC (rev 16083)
+++ trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/Portlet20LibrariesContainerInitializer.java 2009-06-19 18:19:30 UTC (rev 16084)
@@ -1,12 +1,12 @@
/*************************************************************************************
- * Copyright (c) 2008 JBoss, a division of Red Hat and others.
+ * Copyright (c) 2008-2009 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, a division of Red Hat - Initial implementation.
+ * JBoss by Red Hat - Initial implementation.
************************************************************************************/
package org.jboss.tools.portlet.core.internal;
Modified: trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/PortletRuntimeLibrariesContainerInitializer.java
===================================================================
--- trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/PortletRuntimeLibrariesContainerInitializer.java 2009-06-19 18:05:07 UTC (rev 16083)
+++ trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/PortletRuntimeLibrariesContainerInitializer.java 2009-06-19 18:19:30 UTC (rev 16084)
@@ -1,12 +1,12 @@
/*************************************************************************************
- * Copyright (c) 2008 JBoss, a division of Red Hat and others.
+ * Copyright (c) 2008-2009 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, a division of Red Hat - Initial implementation.
+ * JBoss by Red Hat - Initial implementation.
************************************************************************************/
package org.jboss.tools.portlet.core.internal;
Modified: trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/JSFPortletFacetInstallDataModelProvider.java
===================================================================
--- trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/JSFPortletFacetInstallDataModelProvider.java 2009-06-19 18:05:07 UTC (rev 16083)
+++ trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/JSFPortletFacetInstallDataModelProvider.java 2009-06-19 18:19:30 UTC (rev 16084)
@@ -1,12 +1,12 @@
/*************************************************************************************
- * Copyright (c) 2008 JBoss, a division of Red Hat and others.
+ * Copyright (c) 2008-2009 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, a division of Red Hat - Initial implementation.
+ * JBoss by Red Hat - Initial implementation.
************************************************************************************/
package org.jboss.tools.portlet.core.internal.project.facet;
Modified: trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/JSFPortletFacetInstallDelegate.java
===================================================================
--- trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/JSFPortletFacetInstallDelegate.java 2009-06-19 18:05:07 UTC (rev 16083)
+++ trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/JSFPortletFacetInstallDelegate.java 2009-06-19 18:19:30 UTC (rev 16084)
@@ -1,12 +1,12 @@
/*************************************************************************************
- * Copyright (c) 2008 JBoss, a division of Red Hat and others.
+ * Copyright (c) 2008-2009 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, a division of Red Hat - Initial implementation.
+ * JBoss by Red Hat - Initial implementation.
************************************************************************************/
package org.jboss.tools.portlet.core.internal.project.facet;
Modified: trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/JSFPortletFacetUninstallDelegate.java
===================================================================
--- trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/JSFPortletFacetUninstallDelegate.java 2009-06-19 18:05:07 UTC (rev 16083)
+++ trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/JSFPortletFacetUninstallDelegate.java 2009-06-19 18:19:30 UTC (rev 16084)
@@ -1,12 +1,12 @@
/*************************************************************************************
- * Copyright (c) 2008 JBoss, a division of Red Hat and others.
+ * Copyright (c) 2008-2009 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, a division of Red Hat - Initial implementation.
+ * JBoss by Red Hat - Initial implementation.
************************************************************************************/
package org.jboss.tools.portlet.core.internal.project.facet;
Modified: trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/PortletFacetInstallDataModelProvider.java
===================================================================
--- trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/PortletFacetInstallDataModelProvider.java 2009-06-19 18:05:07 UTC (rev 16083)
+++ trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/PortletFacetInstallDataModelProvider.java 2009-06-19 18:19:30 UTC (rev 16084)
@@ -1,12 +1,12 @@
/*************************************************************************************
- * Copyright (c) 2008 JBoss, a division of Red Hat and others.
+ * Copyright (c) 2008-2009 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, a division of Red Hat - Initial implementation.
+ * JBoss by Red Hat - Initial implementation.
************************************************************************************/
package org.jboss.tools.portlet.core.internal.project.facet;
Modified: trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/PortletFacetInstallDelegate.java
===================================================================
--- trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/PortletFacetInstallDelegate.java 2009-06-19 18:05:07 UTC (rev 16083)
+++ trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/PortletFacetInstallDelegate.java 2009-06-19 18:19:30 UTC (rev 16084)
@@ -1,12 +1,12 @@
/*************************************************************************************
- * Copyright (c) 2008 JBoss, a division of Red Hat and others.
+ * Copyright (c) 2008-2009 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, a division of Red Hat - Initial implementation.
+ * JBoss by Red Hat - Initial implementation.
************************************************************************************/
package org.jboss.tools.portlet.core.internal.project.facet;
Modified: trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/PortletFacetUninstallDelegate.java
===================================================================
--- trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/PortletFacetUninstallDelegate.java 2009-06-19 18:05:07 UTC (rev 16083)
+++ trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/PortletFacetUninstallDelegate.java 2009-06-19 18:19:30 UTC (rev 16084)
@@ -1,12 +1,12 @@
/*************************************************************************************
- * Copyright (c) 2008 JBoss, a division of Red Hat and others.
+ * Copyright (c) 2008-2009 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, a division of Red Hat - Initial implementation.
+ * JBoss by Red Hat - Initial implementation.
************************************************************************************/
package org.jboss.tools.portlet.core.internal.project.facet;
Modified: trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/SeamPortletFacetInstallDataModelProvider.java
===================================================================
--- trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/SeamPortletFacetInstallDataModelProvider.java 2009-06-19 18:05:07 UTC (rev 16083)
+++ trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/SeamPortletFacetInstallDataModelProvider.java 2009-06-19 18:19:30 UTC (rev 16084)
@@ -1,12 +1,12 @@
/*************************************************************************************
- * Copyright (c) 2008 JBoss, a division of Red Hat and others.
+ * Copyright (c) 2008-2009 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, a division of Red Hat - Initial implementation.
+ * JBoss by Red Hat - Initial implementation.
************************************************************************************/
package org.jboss.tools.portlet.core.internal.project.facet;
Modified: trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/SeamPortletFacetInstallDelegate.java
===================================================================
--- trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/SeamPortletFacetInstallDelegate.java 2009-06-19 18:05:07 UTC (rev 16083)
+++ trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/SeamPortletFacetInstallDelegate.java 2009-06-19 18:19:30 UTC (rev 16084)
@@ -1,12 +1,12 @@
/*************************************************************************************
- * Copyright (c) 2008 JBoss, a division of Red Hat and others.
+ * Copyright (c) 2008-2009 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, a division of Red Hat - Initial implementation.
+ * JBoss by Red Hat - Initial implementation.
************************************************************************************/
package org.jboss.tools.portlet.core.internal.project.facet;
Modified: trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/SeamPortletFacetUninstallDelegate.java
===================================================================
--- trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/SeamPortletFacetUninstallDelegate.java 2009-06-19 18:05:07 UTC (rev 16083)
+++ trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/SeamPortletFacetUninstallDelegate.java 2009-06-19 18:19:30 UTC (rev 16084)
@@ -1,12 +1,12 @@
/*************************************************************************************
- * Copyright (c) 2008 JBoss, a division of Red Hat and others.
+ * Copyright (c) 2008-2009 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, a division of Red Hat - Initial implementation.
+ * JBoss by Red Hat - Initial implementation.
************************************************************************************/
package org.jboss.tools.portlet.core.internal.project.facet;
Modified: trunk/portlet/plugins/org.jboss.tools.portlet.ui/about.properties
===================================================================
--- trunk/portlet/plugins/org.jboss.tools.portlet.ui/about.properties 2009-06-19 18:05:07 UTC (rev 16083)
+++ trunk/portlet/plugins/org.jboss.tools.portlet.ui/about.properties 2009-06-19 18:19:30 UTC (rev 16084)
@@ -1,2 +1,2 @@
-blurb=JBoss Portlet\n\nVersion\: {featureVersion}\n\n(c) Copyright JBoss, a division of Red Hat, contributors and others 2004 - 2009. All rights reserved.\nVisit http\://jboss.org/tools
+blurb=JBoss Portlet\n\nVersion\: {featureVersion}\n\n(c) Copyright JBoss by Red Hat, contributors and others 2004 - 2009. All rights reserved.\nVisit http\://jboss.org/tools
Modified: trunk/portlet/plugins/org.jboss.tools.portlet.ui/about_ja.properties
===================================================================
--- trunk/portlet/plugins/org.jboss.tools.portlet.ui/about_ja.properties 2009-06-19 18:05:07 UTC (rev 16083)
+++ trunk/portlet/plugins/org.jboss.tools.portlet.ui/about_ja.properties 2009-06-19 18:19:30 UTC (rev 16084)
@@ -1 +1 @@
-blurb=JBoss \u30DD\u30FC\u30C8\u30EC\u30C3\u30C8\n\nVersion\: {featureVersion}\n\n(c) Copyright JBoss, a division of Red Hat, contributors and others 2004 - 2009. All rights reserved.\nVisit http\://jboss.org/tools
+blurb=JBoss \u30DD\u30FC\u30C8\u30EC\u30C3\u30C8\n\nVersion\: {featureVersion}\n\n(c) Copyright JBoss by Red Hat, contributors and others 2004 - 2009. All rights reserved.\nVisit http\://jboss.org/tools
Modified: trunk/portlet/plugins/org.jboss.tools.portlet.ui/plugin.properties
===================================================================
--- trunk/portlet/plugins/org.jboss.tools.portlet.ui/plugin.properties 2009-06-19 18:05:07 UTC (rev 16083)
+++ trunk/portlet/plugins/org.jboss.tools.portlet.ui/plugin.properties 2009-06-19 18:19:30 UTC (rev 16084)
@@ -1,5 +1,5 @@
#Properties file for org.jboss.tools.portlet.ui
-BundleVendor = JBoss, a division of Red Hat
+BundleVendor = JBoss by Red Hat
BundleName = JBoss Portlet
Portlet_category = Portlet
Java_portlet_wizard_name = Java Portlet
Modified: trunk/portlet/plugins/org.jboss.tools.portlet.ui/plugin_ja.properties
===================================================================
--- trunk/portlet/plugins/org.jboss.tools.portlet.ui/plugin_ja.properties 2009-06-19 18:05:07 UTC (rev 16083)
+++ trunk/portlet/plugins/org.jboss.tools.portlet.ui/plugin_ja.properties 2009-06-19 18:19:30 UTC (rev 16084)
@@ -1,4 +1,4 @@
-BundleVendor=JBoss, a division of Red Hat
+BundleVendor=JBoss by Red Hat
BundleName=JBoss \u30DD\u30FC\u30C8\u30EC\u30C3\u30C8
Portlet_category=\u30DD\u30FC\u30C8\u30EC\u30C3\u30C8
Java_portlet_wizard_name=Java \u30DD\u30FC\u30C8\u30EC\u30C3\u30C8
15 years, 6 months
JBoss Tools SVN: r16083 - in trunk: common/plugins/org.jboss.tools.common.text.ext/src/org/jboss/tools/common/text/ext/hyperlink and 5 other directories.
by jbosstools-commits@lists.jboss.org
Author: mareshkau
Date: 2009-06-19 14:05:07 -0400 (Fri, 19 Jun 2009)
New Revision: 16083
Added:
trunk/common/plugins/org.jboss.tools.common.text.ext/src/org/jboss/tools/common/text/ext/hyperlink/TaglibDefinitionFilesHyperlinkPartitioner.java
trunk/common/plugins/org.jboss.tools.common.text.ext/src/org/jboss/tools/common/text/ext/hyperlink/xml/FaceletSourceTagHyperlink.java
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/src/org/jboss/tools/jsf/vpe/jsf/test/jbide/JBIDE4509Test.java
Modified:
trunk/common/plugins/org.jboss.tools.common.text.ext/plugin.xml
trunk/common/plugins/org.jboss.tools.common.text.ext/src/org/jboss/tools/common/text/ext/hyperlink/LinkHyperlink.java
trunk/common/plugins/org.jboss.tools.common.text.ext/src/org/jboss/tools/common/text/ext/hyperlink/xml/XMLTextHyperlinkPartitioner.java
trunk/common/plugins/org.jboss.tools.common.text.ext/src/org/jboss/tools/common/text/ext/hyperlink/xpl/BaseHyperlinkDetector.java
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/META-INF/MANIFEST.MF
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/src/org/jboss/tools/jsf/vpe/jsf/test/JsfAllTests.java
Log:
https://jira.jboss.org/jira/browse/JBIDE-4509
Modified: trunk/common/plugins/org.jboss.tools.common.text.ext/plugin.xml
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.text.ext/plugin.xml 2009-06-19 18:04:07 UTC (rev 16082)
+++ trunk/common/plugins/org.jboss.tools.common.text.ext/plugin.xml 2009-06-19 18:05:07 UTC (rev 16083)
@@ -33,7 +33,7 @@
<partitionType id="org.eclipse.wst.xml.XML_DEFAULT"/>
</contentType>
<contentType id="org.jboss.tools.common.model.ui.xml">
- <partitionType id="org.eclipse.wst.xml.XML_DEFAULT"/>
+ <partitionType id="org.eclipse.wst.xml.XML_DEFAULT"/>
</contentType>
</hyperlinkPartitioner>
@@ -99,7 +99,7 @@
<partitionType id="org.jboss.tools.common.text.ext.xml.XML_ROOT"/>
</contentType>
<contentType id="org.jboss.tools.common.model.ui.xml">
- <partitionType id="org.jboss.tools.common.text.ext.xml.XML_ROOT" />
+ <partitionType id="org.jboss.tools.common.text.ext.xml.XML_ROOT" />
</contentType>
</hyperlinkPartitioner>
@@ -483,7 +483,7 @@
<axis path="/web-app/filter/filter-class/" />
<axis path="/web-app/servlet/servlet-class/" />
<axis path="/web-app/listener/listener-class/" />
- <axis path="/web-app/resource-env-ref/resource-env-ref-type/" />
+ <axis path="/web-app/resource-env-ref/resource-env-ref-type/" />
<!-- Web.xml -->
<!-- TLD Files -->
@@ -636,12 +636,36 @@
</contentType>
</hyperlinkPartitioner>
<!-- End of TLD files hyperlink partitioners -->
+ <!--Maksim Areshkau, partitioner for *.taglib.xml files -->
+ <hyperlinkPartitioner
+ class="org.jboss.tools.common.text.ext.hyperlink.TaglibDefinitionFilesHyperlinkPartitioner"
+ id="org.jboss.tools.common.text.ext.hyperlink.TaglibDefinitionFilesHyperlinkPartitioner">
+ <contentType id="org.jboss.tools.common.model.ui.xml">
+ <partitionType id="org.jboss.tools.common.text.ext.xml.XML_TEXT">
+ <axis path="/facelet-taglib/tag/source">
+ </axis>
+ </partitionType>
+ </contentType>
+ </hyperlinkPartitioner>
+ <!--End of partiotioner for *.taglib.xml files -->
</extension>
<extension
point="org.jboss.tools.common.text.ext.hyperlink"
id="org.jboss.tools.common.text.ext.hyperlink"
name="org.jboss.tools.common.text.ext.hyperlink">
+
+
+ <hyperlink
+ class="org.jboss.tools.common.text.ext.hyperlink.xml.FaceletSourceTagHyperlink"
+ id="org.jboss.tools.common.text.ext.hyperlink.xml.FaceletSourceTagHyperlink">
+ <contenttypeidentifier
+ id="org.jboss.tools.common.model.ui.xml">
+ <partitiontype
+ id="org.jboss.tools.common.text.ext.xml.TAGLIB_XML" >
+ </partitiontype>
+ </contenttypeidentifier>
+ </hyperlink>
<hyperlink
class="org.jboss.tools.common.text.ext.hyperlink.xml.XMLDoctypeHyperlink"
Modified: trunk/common/plugins/org.jboss.tools.common.text.ext/src/org/jboss/tools/common/text/ext/hyperlink/LinkHyperlink.java
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.text.ext/src/org/jboss/tools/common/text/ext/hyperlink/LinkHyperlink.java 2009-06-19 18:04:07 UTC (rev 16082)
+++ trunk/common/plugins/org.jboss.tools.common.text.ext/src/org/jboss/tools/common/text/ext/hyperlink/LinkHyperlink.java 2009-06-19 18:05:07 UTC (rev 16083)
@@ -53,7 +53,7 @@
}
}
- private String getFilePath(IRegion region) {
+ protected String getFilePath(IRegion region) {
try {
return getDocument().get(region.getOffset(), region.getLength());
} catch (BadLocationException x) {
Added: trunk/common/plugins/org.jboss.tools.common.text.ext/src/org/jboss/tools/common/text/ext/hyperlink/TaglibDefinitionFilesHyperlinkPartitioner.java
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.text.ext/src/org/jboss/tools/common/text/ext/hyperlink/TaglibDefinitionFilesHyperlinkPartitioner.java (rev 0)
+++ trunk/common/plugins/org.jboss.tools.common.text.ext/src/org/jboss/tools/common/text/ext/hyperlink/TaglibDefinitionFilesHyperlinkPartitioner.java 2009-06-19 18:05:07 UTC (rev 16083)
@@ -0,0 +1,53 @@
+/*******************************************************************************
+ * Copyright (c) 2007-2009 Red Hat, Inc.
+ * Distributed under license by Red Hat, Inc. All rights reserved.
+ * This program is 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
+ *
+ * Contributor:
+ * Red Hat, Inc. - initial API and implementation
+ ******************************************************************************/
+package org.jboss.tools.common.text.ext.hyperlink;
+
+import org.eclipse.jface.text.IDocument;
+import org.jboss.tools.common.text.ext.hyperlink.xml.XMLTextHyperlinkPartitioner;
+import org.jboss.tools.common.text.ext.util.StructuredModelWrapper;
+import org.jboss.tools.common.text.ext.util.Utils;
+import org.w3c.dom.Document;
+import org.w3c.dom.Node;
+import org.w3c.dom.Text;
+
+/**
+ * @author mareshkau
+ *
+ */
+public class TaglibDefinitionFilesHyperlinkPartitioner extends XMLTextHyperlinkPartitioner {
+
+ public static final String TAGLIB_XML_PARTITION = "org.jboss.tools.common.text.ext.xml.TAGLIB_XML"; //$NON-NLS-1$
+ /* (non-Javadoc)
+ * @see org.jboss.tools.common.text.ext.hyperlink.AbstractHyperlinkPartitioner#parse(org.eclipse.jface.text.IDocument, org.jboss.tools.common.text.ext.hyperlink.IHyperlinkRegion)
+ */
+ /**
+ * @see com.ibm.sse.editor.extensions.hyperlink.IHyperlinkPartitionRecognizer#recognize(org.eclipse.jface.text.IDocument, com.ibm.sse.editor.extensions.hyperlink.IHyperlinkRegion)
+ */
+ @Override
+ public boolean recognize(IDocument document, IHyperlinkRegion region) {
+ StructuredModelWrapper smw = new StructuredModelWrapper();
+ try {
+ smw.init(document);
+ Document xmlDocument = smw.getDocument();
+ if (xmlDocument == null) return false;
+
+ Node n = Utils.findNodeForOffset(xmlDocument, region.getOffset());
+ return (n instanceof Text);
+ } finally {
+ smw.dispose();
+ }
+ }
+
+ @Override
+ protected String getPartitionType() {
+ return TAGLIB_XML_PARTITION;
+ }
+}
Added: trunk/common/plugins/org.jboss.tools.common.text.ext/src/org/jboss/tools/common/text/ext/hyperlink/xml/FaceletSourceTagHyperlink.java
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.text.ext/src/org/jboss/tools/common/text/ext/hyperlink/xml/FaceletSourceTagHyperlink.java (rev 0)
+++ trunk/common/plugins/org.jboss.tools.common.text.ext/src/org/jboss/tools/common/text/ext/hyperlink/xml/FaceletSourceTagHyperlink.java 2009-06-19 18:05:07 UTC (rev 16083)
@@ -0,0 +1,56 @@
+/*******************************************************************************
+ * Copyright (c) 2007-2009 Red Hat, Inc.
+ * Distributed under license by Red Hat, Inc. All rights reserved.
+ * This program is 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
+ *
+ * Contributor:
+ * Red Hat, Inc. - initial API and implementation
+ ******************************************************************************/
+package org.jboss.tools.common.text.ext.hyperlink.xml;
+
+import org.eclipse.jdt.internal.core.JarEntryFile;
+import org.eclipse.jdt.internal.ui.javaeditor.JarEntryEditorInput;
+import org.eclipse.jface.text.IRegion;
+import org.eclipse.ui.IEditorPart;
+import org.eclipse.ui.IWorkbenchPage;
+import org.eclipse.ui.PlatformUI;
+import org.jboss.tools.common.text.ext.hyperlink.LinkHyperlink;
+
+/**
+ * @author mareshkau
+ *
+ */
+public class FaceletSourceTagHyperlink extends LinkHyperlink{
+
+
+ @Override
+ protected void doHyperlink(IRegion region) {
+ IWorkbenchPage page = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage();
+ IEditorPart editorPart = page.getActiveEditor();
+ // if we open taglib definition in jar file
+ if( editorPart.getEditorInput() instanceof JarEntryEditorInput) {
+ String fileToOpenName =getFilePath(region);
+ if(fileToOpenName!=null) {
+ JarEntryEditorInput currentEditorInput = (JarEntryEditorInput) editorPart.getEditorInput();
+ //remove whitespaces and first '/'
+ fileToOpenName = fileToOpenName.trim();
+ if(fileToOpenName.indexOf('/')==0) {
+ fileToOpenName=fileToOpenName.substring(1);
+ }
+ JarEntryFile fileToOpen = new JarEntryFile(fileToOpenName);
+ fileToOpen.setParent(((JarEntryFile)currentEditorInput.getStorage()).getPackageFragmentRoot());
+ JarEntryEditorInput editorInputToOpenEditor= new JarEntryEditorInput(fileToOpen);
+ IEditorPart openedEditor = openFileInEditor(editorInputToOpenEditor,
+ fileToOpen.getName());
+ if(openedEditor==null) {
+ openFileFailed();
+ }
+ }
+ } else {
+ super.doHyperlink(region);
+ }
+ }
+
+}
Modified: trunk/common/plugins/org.jboss.tools.common.text.ext/src/org/jboss/tools/common/text/ext/hyperlink/xml/XMLTextHyperlinkPartitioner.java
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.text.ext/src/org/jboss/tools/common/text/ext/hyperlink/xml/XMLTextHyperlinkPartitioner.java 2009-06-19 18:04:07 UTC (rev 16082)
+++ trunk/common/plugins/org.jboss.tools.common.text.ext/src/org/jboss/tools/common/text/ext/hyperlink/xml/XMLTextHyperlinkPartitioner.java 2009-06-19 18:05:07 UTC (rev 16083)
@@ -27,11 +27,12 @@
*
*/
public class XMLTextHyperlinkPartitioner extends AbstractHyperlinkPartitioner implements IHyperlinkPartitionRecognizer {
- public static final String XML_TEXT_PARTITION = "org.jboss.tools.common.text.ext.xml.XML_TEXT";
+ public static final String XML_TEXT_PARTITION = "org.jboss.tools.common.text.ext.xml.XML_TEXT"; //$NON-NLS-1$
/**
* @see com.ibm.sse.editor.hyperlink.AbstractHyperlinkPartitioner#parse(org.eclipse.jface.text.IDocument, com.ibm.sse.editor.extensions.hyperlink.IHyperlinkRegion)
*/
+ @Override
protected IHyperlinkRegion parse(IDocument document, IHyperlinkRegion superRegion) {
StructuredModelWrapper smw = new StructuredModelWrapper();
try {
@@ -44,7 +45,7 @@
String axis = getAxis(document, superRegion);
String contentType = superRegion.getContentType();
- String type = XML_TEXT_PARTITION;
+ String type = getPartitionType();
int start = Utils.getValueStart(n);
int end = Utils.getValueEnd(n);
if(start < 0 || end < start) return null;
@@ -74,5 +75,9 @@
smw.dispose();
}
}
+
+ protected String getPartitionType() {
+ return XML_TEXT_PARTITION;
+ }
}
Modified: trunk/common/plugins/org.jboss.tools.common.text.ext/src/org/jboss/tools/common/text/ext/hyperlink/xpl/BaseHyperlinkDetector.java
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.text.ext/src/org/jboss/tools/common/text/ext/hyperlink/xpl/BaseHyperlinkDetector.java 2009-06-19 18:04:07 UTC (rev 16082)
+++ trunk/common/plugins/org.jboss.tools.common.text.ext/src/org/jboss/tools/common/text/ext/hyperlink/xpl/BaseHyperlinkDetector.java 2009-06-19 18:05:07 UTC (rev 16083)
@@ -23,6 +23,7 @@
import org.eclipse.wst.sse.core.internal.provisional.IModelManager;
import org.eclipse.wst.sse.core.internal.provisional.IStructuredModel;
import org.eclipse.wst.sse.core.internal.provisional.StructuredModelManager;
+import org.eclipse.wst.sse.ui.internal.StructuredTextViewer;
import org.jboss.tools.common.text.ext.hyperlink.AbstractHyperlink;
import org.jboss.tools.common.text.ext.hyperlink.HyperlinkBuilder;
import org.jboss.tools.common.text.ext.hyperlink.HyperlinkDetector;
@@ -59,7 +60,6 @@
*/
public IHyperlink[] getHyperlinks(ITextViewer textViewer, IRegion region, String contentType, String partitionType) {
ArrayList hyperlinks = new ArrayList();
-
// determine the current partition
if (textViewer != null && textViewer.getDocument() != null) {
// query HyperlinkBuilder and get the list of open ons for the
Modified: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/META-INF/MANIFEST.MF 2009-06-19 18:04:07 UTC (rev 16082)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/META-INF/MANIFEST.MF 2009-06-19 18:05:07 UTC (rev 16083)
@@ -25,7 +25,9 @@
org.jboss.tools.vpe.resref;bundle-version="2.0.0",
org.jboss.tools.common.el.ui;bundle-version="1.0.0",
org.jboss.tools.common.el.core;bundle-version="2.0.0",
- org.jboss.tools.common.model.ui;bundle-version="2.0.0"
+ org.jboss.tools.common.model.ui;bundle-version="2.0.0",
+ org.eclipse.wst.xml.ui;bundle-version="1.1.0",
+ org.eclipse.jdt.ui;bundle-version="3.5.0"
Bundle-ClassPath: jsf-test.jar
Bundle-ActivationPolicy: lazy
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/src/org/jboss/tools/jsf/vpe/jsf/test/JsfAllTests.java
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/src/org/jboss/tools/jsf/vpe/jsf/test/JsfAllTests.java 2009-06-19 18:04:07 UTC (rev 16082)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/src/org/jboss/tools/jsf/vpe/jsf/test/JsfAllTests.java 2009-06-19 18:05:07 UTC (rev 16083)
@@ -60,6 +60,7 @@
import org.jboss.tools.jsf.vpe.jsf.test.jbide.JBIDE4179Test;
import org.jboss.tools.jsf.vpe.jsf.test.jbide.JBIDE4337Test;
import org.jboss.tools.jsf.vpe.jsf.test.jbide.JBIDE4373Test;
+import org.jboss.tools.jsf.vpe.jsf.test.jbide.JBIDE4509Test;
import org.jboss.tools.jsf.vpe.jsf.test.jbide.JBIDE675Test;
import org.jboss.tools.jsf.vpe.jsf.test.jbide.JBIDE788Test;
import org.jboss.tools.jsf.vpe.jsf.test.jbide.JBIDE924Test;
@@ -84,6 +85,7 @@
public static final String IMPORT_PROJECT_NAME = "jsfTest"; //$NON-NLS-1$
public static final String IMPORT_JSF_20_PROJECT_NAME = "jsf2test"; //$NON-NLS-1$
public static final String IMPORT_CUSTOM_FACELETS_PROJECT = "customFaceletsTestProject";//$NON-NLS-1$
+ public static final String IMPORT_JBIDE3247_PROJECT_NAME = "JBIDE3247"; //$NON-NLS-1$
public static Test suite() {
@@ -146,7 +148,7 @@
suite.addTestSuite(JBIDE3969Test.class);
suite.addTestSuite(JBIDE4337Test.class);
suite.addTestSuite(JBIDE4179Test.class);
-
+ suite.addTestSuite(JBIDE4509Test.class);
// $JUnit-END$
// added by Max Areshkau
// add here projects which should be imported for junit tests
@@ -166,6 +168,11 @@
customFaceletsTestProject.setImportProjectPath(JsfTestPlugin.getPluginResourcePath());
projectToImport.add(customFaceletsTestProject);
+ ImportBean jbide3247TestProject = new ImportBean();
+ jbide3247TestProject.setImportProjectName(JsfAllTests.IMPORT_JBIDE3247_PROJECT_NAME);
+ jbide3247TestProject.setImportProjectPath(JsfTestPlugin.getPluginResourcePath());
+ projectToImport.add(jbide3247TestProject);
+
return new VpeTestSetup(suite, projectToImport);
}
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/src/org/jboss/tools/jsf/vpe/jsf/test/jbide/JBIDE4509Test.java
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/src/org/jboss/tools/jsf/vpe/jsf/test/jbide/JBIDE4509Test.java (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/src/org/jboss/tools/jsf/vpe/jsf/test/jbide/JBIDE4509Test.java 2009-06-19 18:05:07 UTC (rev 16083)
@@ -0,0 +1,88 @@
+/*******************************************************************************
+ * Copyright (c) 2007-2009 Red Hat, Inc.
+ * Distributed under license by Red Hat, Inc. All rights reserved.
+ * This program is 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
+ *
+ * Contributor:
+ * Red Hat, Inc. - initial API and implementation
+ ******************************************************************************/
+package org.jboss.tools.jsf.vpe.jsf.test.jbide;
+
+import java.lang.reflect.Method;
+
+import org.eclipse.core.resources.IFile;
+import org.eclipse.core.resources.IProject;
+import org.eclipse.core.resources.ResourcesPlugin;
+import org.eclipse.jface.text.Region;
+import org.eclipse.jface.text.hyperlink.IHyperlink;
+import org.eclipse.jface.text.hyperlink.IHyperlinkDetector;
+import org.eclipse.jface.text.source.SourceViewerConfiguration;
+import org.eclipse.ui.IEditorDescriptor;
+import org.eclipse.ui.IEditorInput;
+import org.eclipse.ui.IEditorPart;
+import org.eclipse.ui.IEditorRegistry;
+import org.eclipse.ui.IWorkbench;
+import org.eclipse.ui.PlatformUI;
+import org.eclipse.ui.editors.text.EditorsUI;
+import org.eclipse.ui.part.FileEditorInput;
+import org.eclipse.ui.part.MultiPageEditorPart;
+import org.eclipse.ui.texteditor.AbstractTextEditor;
+import org.eclipse.wst.sse.ui.StructuredTextEditor;
+import org.jboss.tools.common.text.ext.hyperlink.AbstractHyperlink;
+import org.jboss.tools.jsf.vpe.jsf.test.JsfAllTests;
+import org.jboss.tools.vpe.ui.test.TestUtil;
+import org.jboss.tools.vpe.ui.test.VpeTest;
+
+/**
+ * @author mareshkau
+ *
+ */
+public class JBIDE4509Test extends VpeTest{
+
+ public JBIDE4509Test(String name) {
+ super(name);
+ }
+ //tests openOn from taglib
+ public void testOpenOnTaglibDefinitionFile() throws Throwable {
+ IProject project = ResourcesPlugin.getWorkspace().getRoot().getProject(
+ JsfAllTests.IMPORT_CUSTOM_FACELETS_PROJECT);
+ IFile file = (IFile) project.findMember("WebContent/tags/facelets.taglib.xml"); //$NON-NLS-1$
+ IEditorInput input = new FileEditorInput(file);
+ MultiPageEditorPart editorPart = (MultiPageEditorPart) PlatformUI.getWorkbench().
+ getActiveWorkbenchWindow().
+ getActivePage().
+ openEditor(input,getEditorId(file.getName()));
+ IEditorPart[] editorParts = editorPart.findEditors(input);
+ editorPart.setActiveEditor(editorParts[0]);
+ StructuredTextEditor textEditor = (StructuredTextEditor) editorParts[0];
+
+ int openOnPosition = TestUtil.getLinePositionOffcet(textEditor.getTextViewer(),12,17);
+ //hack to get hyperlinks detectors, no other was have been founeded
+ Method method = AbstractTextEditor.class.getDeclaredMethod("getSourceViewerConfiguration"); //$NON-NLS-1$
+ method.setAccessible(true);
+ SourceViewerConfiguration sourceViewerConfiguration = (SourceViewerConfiguration) method.invoke(textEditor);
+ IHyperlinkDetector[] hyperlinkDetectors = sourceViewerConfiguration.getHyperlinkDetectors(textEditor.getTextViewer());
+ for (IHyperlinkDetector iHyperlinkDetector : hyperlinkDetectors) {
+ IHyperlink [] hyperLinks = iHyperlinkDetector.detectHyperlinks(textEditor.getTextViewer(), new Region(openOnPosition,0), false);
+ if(hyperLinks!=null && hyperLinks.length>0 && hyperLinks[0] instanceof AbstractHyperlink) {
+ AbstractHyperlink abstractHyperlink = (AbstractHyperlink) hyperLinks[0];
+ abstractHyperlink.open();
+ break;
+ }
+ }
+ IEditorPart activeEditor = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().getActiveEditor();
+ assertEquals("Active page should be ","paginator.xhtml", activeEditor.getEditorInput().getName()); //$NON-NLS-1$//$NON-NLS-2$
+ }
+
+ private static String getEditorId(String filename) {
+ IWorkbench workbench = PlatformUI.getWorkbench();
+ IEditorRegistry editorRegistry = workbench.getEditorRegistry();
+ IEditorDescriptor descriptor = editorRegistry
+ .getDefaultEditor(filename);
+ if (descriptor != null)
+ return descriptor.getId();
+ return EditorsUI.DEFAULT_TEXT_EDITOR_ID;
+ }
+}
15 years, 6 months