JBoss Tools SVN: r6452 - trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/views.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2008-02-20 04:06:54 -0500 (Wed, 20 Feb 2008)
New Revision: 6452
Modified:
trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/views/AbstractSeamContentProvider.java
Log:
try {
...
} catch (Exception ex) {
...
}
has been changed to catch CoreException
Modified: trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/views/AbstractSeamContentProvider.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/views/AbstractSeamContentProvider.java 2008-02-20 09:05:07 UTC (rev 6451)
+++ trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/views/AbstractSeamContentProvider.java 2008-02-20 09:06:54 UTC (rev 6452)
@@ -241,9 +241,12 @@
public void resourceChanged(IResourceChangeEvent event) {
try {
- if(event.getDelta()==null) refresh(null);
- else event.getDelta().accept(visitor);
- } catch (Exception e) {
+ if (event.getDelta() == null) {
+ refresh(null);
+ } else {
+ event.getDelta().accept(visitor);
+ }
+ } catch (CoreException e) {
SeamCorePlugin.getPluginLog().logError(e);
}
}
18 years, 1 month
JBoss Tools SVN: r6451 - in trunk/documentation/qa/docs/test-plan: en and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2008-02-20 04:05:07 -0500 (Wed, 20 Feb 2008)
New Revision: 6451
Added:
trunk/documentation/qa/docs/test-plan/.project
trunk/documentation/qa/docs/test-plan/readme.txt
trunk/documentation/qa/docs/test-plan/test-plan-clean.launch
trunk/documentation/qa/docs/test-plan/test-plan-compile.launch
Removed:
trunk/documentation/qa/docs/test-plan/build.xml
Modified:
trunk/documentation/qa/docs/test-plan/en/Book_Info.xml
trunk/documentation/qa/docs/test-plan/pom.xml
Log:
switch test-plan template to maven
Added: trunk/documentation/qa/docs/test-plan/.project
===================================================================
--- trunk/documentation/qa/docs/test-plan/.project (rev 0)
+++ trunk/documentation/qa/docs/test-plan/.project 2008-02-20 09:05:07 UTC (rev 6451)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>test-plan</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.maven.ide.eclipse.maven2Builder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.maven.ide.eclipse.maven2Nature</nature>
+ </natures>
+</projectDescription>
Property changes on: trunk/documentation/qa/docs/test-plan/.project
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Deleted: trunk/documentation/qa/docs/test-plan/build.xml
===================================================================
--- trunk/documentation/qa/docs/test-plan/build.xml 2008-02-20 08:56:49 UTC (rev 6450)
+++ trunk/documentation/qa/docs/test-plan/build.xml 2008-02-20 09:05:07 UTC (rev 6451)
@@ -1,22 +0,0 @@
-<project name="UseCases" default="all.doc" basedir=".">
-
- <!-- Set the following property to generate the doco in the output folder -->
- <property name="build.dir" value="${basedir}/../build"/>
-
- <property name="pdf.name" value="jbide.testplan.1.0.pdf" />
- <import file="../resources/support.xml" />
-
- <target name="all.doc" depends="clean">
- <antcall target="lang.all">
- <param name="lang" value="en"/>
- </antcall>
- </target>
-
- <!-- Use this alternate target to enable uptodate checking, i.e.
- don't generate docs if nothing has changed
- <target name="all.doc">
- <antcall target="lang.all.run"><param name="lang" value="en"/></antcall>
- </target>
- -->
-
-</project>
Modified: trunk/documentation/qa/docs/test-plan/en/Book_Info.xml
===================================================================
--- trunk/documentation/qa/docs/test-plan/en/Book_Info.xml 2008-02-20 08:56:49 UTC (rev 6450)
+++ trunk/documentation/qa/docs/test-plan/en/Book_Info.xml 2008-02-20 09:05:07 UTC (rev 6451)
@@ -3,6 +3,6 @@
<title>JBoss Tools Test Plan</title>
<copyright>
<year>2007</year>
- <holder>Red Hat</holder>
+ <holder>JBoss, Inc.</holder>
</copyright>
</bookinfo>
\ No newline at end of file
Modified: trunk/documentation/qa/docs/test-plan/pom.xml
===================================================================
--- trunk/documentation/qa/docs/test-plan/pom.xml 2008-02-20 08:56:49 UTC (rev 6450)
+++ trunk/documentation/qa/docs/test-plan/pom.xml 2008-02-20 09:05:07 UTC (rev 6451)
@@ -1,19 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
-
- <modelVersion>4.0.0</modelVersion>
-
- <parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>documentation</artifactId>
- <version>1.0</version>
- </parent>
-
- <groupId>org.jboss.tools</groupId>
- <artifactId>getting-started-guide-${translation}</artifactId>
- <version>1.0-SNAPSHOT</version>
- <packaging>jdocbook</packaging>
- <name>Getting_Started_Guide_(${translation})</name>
-
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <parent>
+ <artifactId>documentation</artifactId>
+ <groupId>org.jboss.tools</groupId>
+ <version>1.0</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>jboss-tools-test-plan-${translation}</artifactId>
+ <packaging>jdocbook</packaging>
+ <name>JBossTools-Test-Plan-(${translation})</name>
+ <version>1.0-SNAPSHOT</version>
</project>
+
Added: trunk/documentation/qa/docs/test-plan/readme.txt
===================================================================
Property changes on: trunk/documentation/qa/docs/test-plan/readme.txt
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Added: trunk/documentation/qa/docs/test-plan/test-plan-clean.launch
===================================================================
--- trunk/documentation/qa/docs/test-plan/test-plan-clean.launch (rev 0)
+++ trunk/documentation/qa/docs/test-plan/test-plan-clean.launch 2008-02-20 09:05:07 UTC (rev 6451)
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<launchConfiguration type="org.maven.ide.eclipse.Maven2LaunchConfigurationType">
+<stringAttribute key="M2_GOALS" value="clean"/>
+<stringAttribute key="M2_PROFILES" value=""/>
+<listAttribute key="M2_PROPERTIES"/>
+<stringAttribute key="bad_container_name" value="/test-plan/c"/>
+<stringAttribute key="org.eclipse.debug.core.ATTR_REFRESH_SCOPE" value="${working_set:<?xml version="1.0" encoding="UTF-8"?> <launchConfigurationWorkingSet editPageId="org.eclipse.ui.resourceWorkingSetPage" factoryID="org.eclipse.ui.internal.WorkingSetFactory" label="working set" name="working set"> <item factoryID="org.eclipse.ui.internal.model.ResourceFactory" path="/test-plan" type="4"/> </launchConfigurationWorkingSet>}"/>
+<stringAttribute key="org.eclipse.jdt.launching.JRE_CONTAINER" value="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/java-1.5.0-sun-1.5.0.13"/>
+<stringAttribute key="org.eclipse.jdt.launching.WORKING_DIRECTORY" value="${workspace_loc:/test-plan}"/>
+</launchConfiguration>
Property changes on: trunk/documentation/qa/docs/test-plan/test-plan-clean.launch
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Added: trunk/documentation/qa/docs/test-plan/test-plan-compile.launch
===================================================================
--- trunk/documentation/qa/docs/test-plan/test-plan-compile.launch (rev 0)
+++ trunk/documentation/qa/docs/test-plan/test-plan-compile.launch 2008-02-20 09:05:07 UTC (rev 6451)
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<launchConfiguration type="org.maven.ide.eclipse.Maven2LaunchConfigurationType">
+<stringAttribute key="M2_GOALS" value="compile"/>
+<stringAttribute key="M2_PROFILES" value=""/>
+<listAttribute key="M2_PROPERTIES"/>
+<stringAttribute key="bad_container_name" value="/test-plan-"/>
+<stringAttribute key="org.eclipse.debug.core.ATTR_REFRESH_SCOPE" value="${working_set:<?xml version="1.0" encoding="UTF-8"?> <launchConfigurationWorkingSet editPageId="org.eclipse.ui.resourceWorkingSetPage" factoryID="org.eclipse.ui.internal.WorkingSetFactory" label="working set" name="working set"> <item factoryID="org.eclipse.ui.internal.model.ResourceFactory" path="/test-plan" type="4"/> </launchConfigurationWorkingSet>}"/>
+<stringAttribute key="org.eclipse.jdt.launching.JRE_CONTAINER" value="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/java-1.5.0-sun-1.5.0.13"/>
+<stringAttribute key="org.eclipse.jdt.launching.WORKING_DIRECTORY" value="${workspace_loc:/test-plan}"/>
+</launchConfiguration>
Property changes on: trunk/documentation/qa/docs/test-plan/test-plan-compile.launch
___________________________________________________________________
Name: svn:mime-type
+ text/plain
18 years, 1 month
JBoss Tools SVN: r6450 - trunk/jsf/features/org.jboss.tools.jsf.feature.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2008-02-20 03:56:49 -0500 (Wed, 20 Feb 2008)
New Revision: 6450
Modified:
trunk/jsf/features/org.jboss.tools.jsf.feature/feature.xml
Log:
JBIDE-1687
including plug-ins with templates for adf, jsf and myfaces in build
Modified: trunk/jsf/features/org.jboss.tools.jsf.feature/feature.xml
===================================================================
--- trunk/jsf/features/org.jboss.tools.jsf.feature/feature.xml 2008-02-20 07:44:24 UTC (rev 6449)
+++ trunk/jsf/features/org.jboss.tools.jsf.feature/feature.xml 2008-02-20 08:56:49 UTC (rev 6450)
@@ -280,4 +280,24 @@
version="0.0.0"
unpack="false"/>
+ <plugin
+ id="org.jboss.tools.jsf.vpe.adf"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"/>
+
+ <plugin
+ id="org.jboss.tools.jsf.vpe.jsf"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
+ <plugin
+ id="org.jboss.tools.jsf.vpe.myfaces"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
</feature>
18 years, 1 month
JBoss Tools SVN: r6449 - trunk/jsf/features/org.jboss.tools.richfaces.feature.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2008-02-20 02:44:24 -0500 (Wed, 20 Feb 2008)
New Revision: 6449
Modified:
trunk/jsf/features/org.jboss.tools.richfaces.feature/feature.xml
Log:
JBIDE-1687
including plug-ins with templates for adf, jsf and myfaces in build
Modified: trunk/jsf/features/org.jboss.tools.richfaces.feature/feature.xml
===================================================================
--- trunk/jsf/features/org.jboss.tools.richfaces.feature/feature.xml 2008-02-19 22:42:16 UTC (rev 6448)
+++ trunk/jsf/features/org.jboss.tools.richfaces.feature/feature.xml 2008-02-20 07:44:24 UTC (rev 6449)
@@ -447,4 +447,24 @@
install-size="0"
version="0.0.0"/>
+ <plugin
+ id="org.jboss.tools.jsf.vpe.adf"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"/>
+
+ <plugin
+ id="org.jboss.tools.jsf.vpe.jsf"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
+ <plugin
+ id="org.jboss.tools.jsf.vpe.myfaces"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
</feature>
18 years, 1 month
JBoss Tools SVN: r6448 - trunk/documentation/qa/docs/test-plan.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2008-02-19 17:42:16 -0500 (Tue, 19 Feb 2008)
New Revision: 6448
Added:
trunk/documentation/qa/docs/test-plan/pom.xml
Log:
Copied: trunk/documentation/qa/docs/test-plan/pom.xml (from rev 6447, trunk/documentation/guides/userguide/GettingStartedGuide/pom.xml)
===================================================================
--- trunk/documentation/qa/docs/test-plan/pom.xml (rev 0)
+++ trunk/documentation/qa/docs/test-plan/pom.xml 2008-02-19 22:42:16 UTC (rev 6448)
@@ -0,0 +1,19 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>documentation</artifactId>
+ <version>1.0</version>
+ </parent>
+
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>getting-started-guide-${translation}</artifactId>
+ <version>1.0-SNAPSHOT</version>
+ <packaging>jdocbook</packaging>
+ <name>Getting_Started_Guide_(${translation})</name>
+
+</project>
18 years, 1 month
JBoss Tools SVN: r6447 - trunk/documentation/qa/docs/test-plan.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2008-02-19 17:41:26 -0500 (Tue, 19 Feb 2008)
New Revision: 6447
Added:
trunk/documentation/qa/docs/test-plan/build.xml
Log:
test plan moved to new location
Copied: trunk/documentation/qa/docs/test-plan/build.xml (from rev 6446, trunk/documentation/qa/jbide-testplan/build.xml)
===================================================================
--- trunk/documentation/qa/docs/test-plan/build.xml (rev 0)
+++ trunk/documentation/qa/docs/test-plan/build.xml 2008-02-19 22:41:26 UTC (rev 6447)
@@ -0,0 +1,22 @@
+<project name="UseCases" default="all.doc" basedir=".">
+
+ <!-- Set the following property to generate the doco in the output folder -->
+ <property name="build.dir" value="${basedir}/../build"/>
+
+ <property name="pdf.name" value="jbide.testplan.1.0.pdf" />
+ <import file="../resources/support.xml" />
+
+ <target name="all.doc" depends="clean">
+ <antcall target="lang.all">
+ <param name="lang" value="en"/>
+ </antcall>
+ </target>
+
+ <!-- Use this alternate target to enable uptodate checking, i.e.
+ don't generate docs if nothing has changed
+ <target name="all.doc">
+ <antcall target="lang.all.run"><param name="lang" value="en"/></antcall>
+ </target>
+ -->
+
+</project>
18 years, 1 month
JBoss Tools SVN: r6446 - trunk/documentation/qa/docs/test-plan.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2008-02-19 17:41:22 -0500 (Tue, 19 Feb 2008)
New Revision: 6446
Added:
trunk/documentation/qa/docs/test-plan/en/
Log:
test plan moved to new location
Copied: trunk/documentation/qa/docs/test-plan/en (from rev 6445, trunk/documentation/qa/jbide-testplan/en)
18 years, 1 month