JBoss Tools SVN: r25671 - trunk/build/target-platform.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-10-10 00:40:54 -0400 (Sun, 10 Oct 2010)
New Revision: 25671
Modified:
trunk/build/target-platform/build.xml
Log:
add deltapack to base eclipse against which the p2.director install occurs
Modified: trunk/build/target-platform/build.xml
===================================================================
--- trunk/build/target-platform/build.xml 2010-10-09 20:44:01 UTC (rev 25670)
+++ trunk/build/target-platform/build.xml 2010-10-10 04:40:54 UTC (rev 25671)
@@ -70,15 +70,18 @@
<!-- only meant to work with linux 32- and 64-bit slaves -->
<target name="get.eclipse">
- <property name="eclipse.URL" value="http://www.eclipse.org/downloads/download.php?r=1&file=/eclipse/downl..." />
- <property name="eclipse.version" value="eclipse-SDK-3.6.1" />
+ <!-- NOTE: must use same platform (50M) or SDK (103M - 168M) version as feature version on target platform, or will get install/update conflicts -->
+ <property name="eclipse.URL" value="http://www.eclipse.org/downloads/download.php?r=1&file=/eclipse/downl..." />
+ <property name="eclipse.version" value="M20101006-0936" />
+ <!--<property name="eclipse.URL" value="http://www.eclipse.org/downloads/download.php?r=1&file=/eclipse/downl..." />
+ <property name="eclipse.version" value="eclipse-SDK-3.6.1" /> -->
<if>
<equals arg1="${arch}" arg2="x86" />
<then>
- <property name="eclipse.file" value="${eclipse.version}-linux-gtk.tar.gz" />
+ <property name="eclipse.file" value="eclipse-platform-${eclipse.version}-linux-gtk.tar.gz" />
</then>
<else>
- <property name="eclipse.file" value="${eclipse.version}-linux-gtk-${arch}.tar.gz" />
+ <property name="eclipse.file" value="eclipse-platform-${eclipse.version}-linux-gtk-${arch}.tar.gz" />
</else>
</if>
@@ -91,7 +94,22 @@
</then>
</if>
<untar compression="gzip" dest="${WORKINGDIR}" src="${WORKINGDIR}/${eclipse.file}" overwrite="true" />
+
+ <!-- add 70M delta pack, eg. http://download.eclipse.org/eclipse/downloads/drops/M20101006-0936/downlo... -->
+ <property name="deltapack.file" value="eclipse-${eclipse.version}-delta-pack.zip"/>
+ <if>
+ <not>
+ <available file="${WORKINGDIR}/${deltapack.file}" type="file" />
+ </not>
+ <then>
+ <get src="${eclipse.URL}/${deltapack.file}" dest="${WORKINGDIR}/${deltapack.file}" />
+ </then>
+ </if>
+ <unzip src="${deltapack.file}" dest="${WORKINGDIR}" overwrite="true"/>
+
+ <!-- make eclipse executable -->
<chmod perm="+x" file="${WORKINGDIR}/eclipse/eclipse" />
+
</target>
<target name="gen.p2mirror.script" description="use XSLT to generate a p2.mirror script from .target">
@@ -178,9 +196,8 @@
</echo>
<mkdir dir="${p2.director.install.path}" />
- <chmod perm="ugo+rwx" file="${p2.director.install.path}/eclipse" />
+ <chmod perm="+x" file="${p2.director.install.path}/eclipse" />
<exec executable="${p2.director.install.path}/eclipse" failonerror="true" dir="${p2.director.install.path}" timeout="900000" taskname="p2.dir">
- <!-- deprecated application for Eclipse 3.4: org.eclipse.equinox.p2.director.app.application -->
<arg line=" -application org.eclipse.equinox.p2.director" />
<arg line=" -nosplash" />
<arg line=" --launcher.suppressErrors" />
14 years, 3 months
JBoss Tools SVN: r25670 - branches/jbosstools-3.2.0.Beta1/build/aggregate/site.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-10-09 16:44:01 -0400 (Sat, 09 Oct 2010)
New Revision: 25670
Modified:
branches/jbosstools-3.2.0.Beta1/build/aggregate/site/site.xml
Log:
JBIDE-7292 3 teiid features + bpel now in SOA catg only, no longer in ALL catg.
Modified: branches/jbosstools-3.2.0.Beta1/build/aggregate/site/site.xml
===================================================================
--- branches/jbosstools-3.2.0.Beta1/build/aggregate/site/site.xml 2010-10-09 20:41:57 UTC (rev 25669)
+++ branches/jbosstools-3.2.0.Beta1/build/aggregate/site/site.xml 2010-10-09 20:44:01 UTC (rev 25670)
@@ -156,7 +156,6 @@
</feature>
<feature url="features/org.jboss.tools.bpel.feature_0.0.0.jar" id="org.jboss.tools.bpel.feature" version="0.0.0">
- <category name="AllTools" />
<category name="SOATools" />
</feature>
@@ -269,15 +268,12 @@
</feature>
<feature url="features/org.teiid.datatools.connectivity.feature_0.0.0.jar" id="org.teiid.datatools.connectivity.feature" version="0.0.0">
- <category name="AllTools" />
<category name="DataTools" />
</feature>
<feature url="features/org.teiid.designer.feature_0.0.0.jar" id="org.teiid.designer.feature" version="0.0.0">
- <category name="AllTools" />
<category name="DataTools" />
</feature>
<feature url="features/org.teiid.designer.runtime.feature_0.0.0.jar" id="org.teiid.designer.runtime.feature" version="0.0.0">
- <category name="AllTools" />
<category name="DataTools" />
</feature>
<feature url="features/org.jboss.savara.tools.feature_0.0.0.jar" id="org.jboss.savara.tools.feature" version="0.0.0">
14 years, 3 months
JBoss Tools SVN: r25669 - trunk/build/aggregate/site.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-10-09 16:41:57 -0400 (Sat, 09 Oct 2010)
New Revision: 25669
Modified:
trunk/build/aggregate/site/site.xml
Log:
JBIDE-7292 3 teiid features + bpel now in SOA catg only, no longer in ALL catg.
Modified: trunk/build/aggregate/site/site.xml
===================================================================
--- trunk/build/aggregate/site/site.xml 2010-10-09 18:22:58 UTC (rev 25668)
+++ trunk/build/aggregate/site/site.xml 2010-10-09 20:41:57 UTC (rev 25669)
@@ -156,7 +156,6 @@
</feature>
<feature url="features/org.jboss.tools.bpel.feature_0.0.0.jar" id="org.jboss.tools.bpel.feature" version="0.0.0">
- <category name="AllTools" />
<category name="SOATools" />
</feature>
@@ -269,15 +268,12 @@
</feature>
<feature url="features/org.teiid.datatools.connectivity.feature_0.0.0.jar" id="org.teiid.datatools.connectivity.feature" version="0.0.0">
- <category name="AllTools" />
<category name="DataTools" />
</feature>
<feature url="features/org.teiid.designer.feature_0.0.0.jar" id="org.teiid.designer.feature" version="0.0.0">
- <category name="AllTools" />
<category name="DataTools" />
</feature>
<feature url="features/org.teiid.designer.runtime.feature_0.0.0.jar" id="org.teiid.designer.runtime.feature" version="0.0.0">
- <category name="AllTools" />
<category name="DataTools" />
</feature>
<feature url="features/org.jboss.savara.tools.feature_0.0.0.jar" id="org.jboss.savara.tools.feature" version="0.0.0">
14 years, 3 months
JBoss Tools SVN: r25668 - trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US.
by jbosstools-commits@lists.jboss.org
Author: benlc
Date: 2010-10-09 14:22:58 -0400 (Sat, 09 Oct 2010)
New Revision: 25668
Modified:
trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/JBoss_Tools_Reference_Guide_Template.xml
Log:
'removed link sets xi:include from Book_Name.xml'
Modified: trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/JBoss_Tools_Reference_Guide_Template.xml
===================================================================
--- trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/JBoss_Tools_Reference_Guide_Template.xml 2010-10-09 18:21:52 UTC (rev 25667)
+++ trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/JBoss_Tools_Reference_Guide_Template.xml 2010-10-09 18:22:58 UTC (rev 25668)
@@ -16,7 +16,6 @@
<xi:include href="reference.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="error_and_warning_messages.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="hints.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <!-- <xi:include href="link_sets.xml" xmlns:xi="http://www.w3.org/2001/XInclude" /> -->
<xi:include href="document_navigation.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="Revision_History.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<index />
14 years, 3 months
JBoss Tools SVN: r25667 - trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US.
by jbosstools-commits@lists.jboss.org
Author: benlc
Date: 2010-10-09 14:21:52 -0400 (Sat, 09 Oct 2010)
New Revision: 25667
Removed:
trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/dialogs_link_sets-link_sets.xml
trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/editors_link_sets-link_sets.xml
trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/faces-config_diagram_view_links-link_sets.xml
trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/faces-config_editor_tree_view_links-link_sets.xml
trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/icons_and_buttons_link_sets-link_sets.xml
trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/link_sets.xml
trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/perspectives_link_sets-link_sets.xml
trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/preferences_pages_link_sets-link_sets.xml
trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/template_one_links-link_sets.xml
trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/template_two_links-link_sets.xml
trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/views_link_sets-link_sets.xml
trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/web_development_perspective_palette_view_links-link_sets.xml
trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/web_projects_view_links-link_sets.xml
trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/wizards_link_sets-link_sets.xml
Log:
'deleting redundant link set files'
Deleted: trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/dialogs_link_sets-link_sets.xml
===================================================================
--- trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/dialogs_link_sets-link_sets.xml 2010-10-09 17:36:24 UTC (rev 25666)
+++ trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/dialogs_link_sets-link_sets.xml 2010-10-09 18:21:52 UTC (rev 25667)
@@ -1,12 +0,0 @@
-<?xml version='1.0' encoding='utf-8' ?>
-<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY % BOOK_ENTITIES SYSTEM "JBoss_Tools_Reference_Guide_Template.ent">
-%BOOK_ENTITIES;
-]>
-<section id="link_sets-dialogs_link_sets">
- <title>Dialogs link sets</title>
- <para>
-
- </para>
- <para>&FEEDBACK-link_sets-dialogs_link_sets;</para>
-</section>
\ No newline at end of file
Deleted: trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/editors_link_sets-link_sets.xml
===================================================================
--- trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/editors_link_sets-link_sets.xml 2010-10-09 17:36:24 UTC (rev 25666)
+++ trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/editors_link_sets-link_sets.xml 2010-10-09 18:21:52 UTC (rev 25667)
@@ -1,15 +0,0 @@
-<?xml version='1.0' encoding='utf-8' ?>
-<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY % BOOK_ENTITIES SYSTEM "JBoss_Tools_Reference_Guide_Template.ent">
-%BOOK_ENTITIES;
-]>
-<section id="link_sets-editors_link_sets">
- <title>Editors link sets</title>
- <para>
-
- </para>
- <xi:include href="faces-config_editor_tree_view_links-link_sets.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href="faces-config_diagram_view_links-link_sets.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href="template_two_links-link_sets.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-
-</section>
\ No newline at end of file
Deleted: trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/faces-config_diagram_view_links-link_sets.xml
===================================================================
--- trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/faces-config_diagram_view_links-link_sets.xml 2010-10-09 17:36:24 UTC (rev 25666)
+++ trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/faces-config_diagram_view_links-link_sets.xml 2010-10-09 18:21:52 UTC (rev 25667)
@@ -1,135 +0,0 @@
-<?xml version='1.0' encoding='utf-8' ?>
-<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY % BOOK_ENTITIES SYSTEM "JBoss_Tools_Reference_Guide_Template.ent">
-%BOOK_ENTITIES;
-]>
-<section id="link_sets-editors_link_sets-faces-config_diagram_view_links">
- <title>faces-config diagram view links</title>
- <para>
- Links to further information and tasks relating to the faces-config editor diagram view are listed here:
- </para>
-
- <figure id="figure-faces_config_editor_diagram_view_links">
- <title>JSF Tools <filename>faces-config-*.xml</filename> editor</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/image-jsf-new_faces_config_02.png" format="PNG"/>
- </imageobject>
- <textobject>
- <para><filename>faces-config-*.xml</filename> editor <guilabel>Diagram</guilabel> view</para>
- </textobject>
- </mediaobject>
- </figure>
- <note><title>***Design Note***</title>
- <para>
- Listed below are the links that link to further tasks or information relating to the "faces-config.xml Diagram View" Editor.
- </para>
- <para>
- * Use the "Placeholder_for_a_link section" as as a reminder that all relevant links haven't been included (or uncommented). You can search for the "placeholder" to ensure all links have been included.
- </para>
- <para>
- This link set relates to icons. Links to concepts may not be relevant. If so, delete them.
- </para>
- </note>
-
- <variablelist>
- <title>Concepts</title>
- <varlistentry>
-
- <term>Select</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Marquee</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Create New Connection</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>View Template</term>
- <listitem>
- <!-- <para><xref linkend="proc-JSF_NewManagedBean"></xref>.</para> -->
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- </variablelist>
- <variablelist>
- <title>Tasks</title>
- <varlistentry>
-
- <term>Select</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Marquee</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Create New Connection</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>View Template</term>
- <listitem>
- <!-- <para><xref linkend="proc-JSF_NewManagedBean"></xref>.</para> -->
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- </variablelist>
- <variablelist>
- <title>Reference</title>
- <varlistentry>
-
- <term>Select</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Marquee</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Create New Connection</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>View Template</term>
- <listitem>
- <!-- <para><xref linkend="proc-JSF_NewManagedBean"></xref>.</para> -->
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- </variablelist>
- <para>&FEEDBACK-link_sets-editors_link_sets-faces-config_diagram_view_links;</para>
-</section>
\ No newline at end of file
Deleted: trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/faces-config_editor_tree_view_links-link_sets.xml
===================================================================
--- trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/faces-config_editor_tree_view_links-link_sets.xml 2010-10-09 17:36:24 UTC (rev 25666)
+++ trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/faces-config_editor_tree_view_links-link_sets.xml 2010-10-09 18:21:52 UTC (rev 25667)
@@ -1,240 +0,0 @@
-<?xml version='1.0' encoding='utf-8' ?>
-<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY % BOOK_ENTITIES SYSTEM "JBoss_Tools_Reference_Guide_Template.ent">
-%BOOK_ENTITIES;
-]>
-<section id="link_sets-editors_link_sets-faces-config_editor_tree_view_links">
- <title>faces-config editor tree view links</title>
- <para>
- Links to further information and tasks relating to the faces-config tree view are listed here:
- </para>
- <note><title>***Design Note***</title>
- <para>
- In this instance, only the relevant part of the image has been displayed. As this image is unique to this section, the image has been named according to the current section: <filename>image-jsf-faces_config_editor_tree_view_links_01.png</filename>.
- </para>
- </note>
-
- <figure id="figure-faces_config_editor_tree_view_links">
- <title>JSF Tools faces-config.xml editor - Tree View - Connection</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/image-jsf-faces_config_editor_tree_view_links_01.png" format="PNG"/>
- </imageobject>
- <textobject>
- <para>The faces-config.xml editor - Tree View - Connection</para>
- </textobject>
- </mediaobject>
- </figure>
- <note><title>***Design Note***</title>
- <para>
- Listed below are the links that link to further tasks or information relating to to the "faces-config.xml Tree View" Editor.
- </para>
- <para>
- * Use the "Placeholder_for_a_link section" as as a reminder that all relevant links haven't been included (or uncommented). You can search for the "placeholder" to ensure all links have been included.
- </para>
- </note>
-
- <variablelist>
- <title>Concepts</title>
- <varlistentry>
- <term>Application</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Components</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Converters</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Managed Beans</term>
- <listitem>
- <!-- <para><xref linkend="proc-JSF_NewManagedBean"></xref>.</para> -->
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Navigational Rules</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Referenced Beans</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Render Kits</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Validators</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Extensions</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- </variablelist>
- <variablelist>
- <title>Tasks</title>
- <varlistentry>
- <term>Application</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Components</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Converters</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Managed Beans</term>
- <listitem>
- <!-- <para><xref linkend="proc-JSF_NewManagedBean"></xref>.</para> -->
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Navigational Rules</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Referenced Beans</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Render Kits</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Validators</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Extensions</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- </variablelist>
-
- <variablelist>
- <title>References</title>
- <varlistentry>
- <term>Application</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Components</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Converters</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Managed Beans</term>
- <listitem>
- <!-- <para><xref linkend="proc-JSF_NewManagedBean"></xref>.</para> -->
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Navigational Rules</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Referenced Beans</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Render Kits</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Validators</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Extensions</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- </variablelist>
- <para>&FEEDBACK-link_sets-editors_link_sets-faces-config_editor_tree_view_links;</para>
-</section>
\ No newline at end of file
Deleted: trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/icons_and_buttons_link_sets-link_sets.xml
===================================================================
--- trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/icons_and_buttons_link_sets-link_sets.xml 2010-10-09 17:36:24 UTC (rev 25666)
+++ trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/icons_and_buttons_link_sets-link_sets.xml 2010-10-09 18:21:52 UTC (rev 25667)
@@ -1,12 +0,0 @@
-<?xml version='1.0' encoding='utf-8' ?>
-<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY % BOOK_ENTITIES SYSTEM "JBoss_Tools_Reference_Guide_Template.ent">
-%BOOK_ENTITIES;
-]>
-<section id="link_sets-icons_and_buttons_link_sets">
- <title>Icons and buttons link sets</title>
- <para>
-
- </para>
- <para>&FEEDBACK-link_sets-icons_and_buttons_link_sets;</para>
-</section>
\ No newline at end of file
Deleted: trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/link_sets.xml
===================================================================
--- trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/link_sets.xml 2010-10-09 17:36:24 UTC (rev 25666)
+++ trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/link_sets.xml 2010-10-09 18:21:52 UTC (rev 25667)
@@ -1,44 +0,0 @@
-<?xml version='1.0' encoding='utf-8' ?>
-<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY % BOOK_ENTITIES SYSTEM "JBoss_Tools_Reference_Guide_Template.ent">
-%BOOK_ENTITIES;
-]>
-<chapter id="link_sets">
- <title>Link Sets</title>
- <note><title>***Design Note***</title>
- <para>
- The link sets are designed to minimise maintenance. Instead of duplicating links (alternate paths) in each procedure, list a link set (paths to tasks) for the wizard ,view or dialog etc. Include a screenshot.
- </para>
- <para>
- A concepts heading and links to concepts can also be included.
- </para>
- </note>
-
- <para>
- The following sections list the links relating to a particular topic or the paths accessible from a single dialog or view.
- </para>
- <note><title>***Design Note***</title>
- <para>
- Note that "links" is included in the title of the destination section (and section id). This is to distinguish the links in the doc from the actual Reference material.
- </para>
- <para>
- Where links are provided to "Tasks" they will either be:
- </para>
- <para>
- 1. Links to the individual tasks from an interface which includes many different options or many paths.
- </para>
- <para>
- 2. Links to further tasks that would naturally follow the resolution of a particular task.
- </para>
- <para>
- A continuation of a task forming a single linear path would be designated as a single link at the end of the relevant procedure and not contained within a linkset.
- </para>
- </note>
- <xi:include href="wizards_link_sets-link_sets.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href="views_link_sets-link_sets.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href="editors_link_sets-link_sets.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href="perspectives_link_sets-link_sets.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href="preferences_pages_link_sets-link_sets.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href="dialogs_link_sets-link_sets.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href="icons_and_buttons_link_sets-link_sets.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-</chapter>
\ No newline at end of file
Deleted: trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/perspectives_link_sets-link_sets.xml
===================================================================
--- trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/perspectives_link_sets-link_sets.xml 2010-10-09 17:36:24 UTC (rev 25666)
+++ trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/perspectives_link_sets-link_sets.xml 2010-10-09 18:21:52 UTC (rev 25667)
@@ -1,12 +0,0 @@
-<?xml version='1.0' encoding='utf-8' ?>
-<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY % BOOK_ENTITIES SYSTEM "JBoss_Tools_Reference_Guide_Template.ent">
-%BOOK_ENTITIES;
-]>
-<section id="link_sets-perspectives_link_sets">
- <title>Perspectives link sets</title>
- <para>
-
- </para>
- <para>&FEEDBACK-link_sets-perspectives_link_sets;</para>
-</section>
\ No newline at end of file
Deleted: trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/preferences_pages_link_sets-link_sets.xml
===================================================================
--- trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/preferences_pages_link_sets-link_sets.xml 2010-10-09 17:36:24 UTC (rev 25666)
+++ trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/preferences_pages_link_sets-link_sets.xml 2010-10-09 18:21:52 UTC (rev 25667)
@@ -1,12 +0,0 @@
-<?xml version='1.0' encoding='utf-8' ?>
-<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY % BOOK_ENTITIES SYSTEM "JBoss_Tools_Reference_Guide_Template.ent">
-%BOOK_ENTITIES;
-]>
-<section id="link_sets-preferences_pages_link_sets">
- <title>Preferences pages link sets</title>
- <para>
-
- </para>
- <para>&FEEDBACK-link_sets-preferences_pages_link_sets;</para>
-</section>
\ No newline at end of file
Deleted: trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/template_one_links-link_sets.xml
===================================================================
--- trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/template_one_links-link_sets.xml 2010-10-09 17:36:24 UTC (rev 25666)
+++ trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/template_one_links-link_sets.xml 2010-10-09 18:21:52 UTC (rev 25667)
@@ -1,73 +0,0 @@
-<?xml version='1.0' encoding='utf-8' ?>
-<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY % BOOK_ENTITIES SYSTEM "JBoss_Tools_Reference_Guide_Template.ent">
-%BOOK_ENTITIES;
-]>
-<section id="link_sets-views_link_sets-template_one_links">
- <title>Template one links</title>
- <para>
- Links to further information and tasks relating to the concept (as mentioned in Template One) are listed here:
- </para>
- <note><title>***Design Note***</title>
- <para>
- Listed below are the links that link to further tasks relating to "The Task" discussed in JSF_TemplateOne
- </para>
- <para>
- * Use the "Placeholder_for_a_link section" as as a reminder that all relevant links haven't been included (or uncommented). You can search for the "placeholder" to ensure all links have been included.
- </para>
- </note>
-
- <variablelist>
- <title>Concepts</title>
- <varlistentry>
- <term>Concept A</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Concept B</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- </variablelist>
- <variablelist>
- <title>Tasks</title>
- <varlistentry>
- <term>Task A</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Task B</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- </variablelist>
-
- <variablelist>
- <title>References</title>
- <varlistentry>
- <term>Reference A</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Reference B</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- </variablelist>
- <para>&FEEDBACK-link_sets-views_link_sets-template_one_links;</para>
-</section>
\ No newline at end of file
Deleted: trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/template_two_links-link_sets.xml
===================================================================
--- trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/template_two_links-link_sets.xml 2010-10-09 17:36:24 UTC (rev 25666)
+++ trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/template_two_links-link_sets.xml 2010-10-09 18:21:52 UTC (rev 25667)
@@ -1,63 +0,0 @@
-<?xml version='1.0' encoding='utf-8' ?>
-<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY % BOOK_ENTITIES SYSTEM "JBoss_Tools_Reference_Guide_Template.ent">
-%BOOK_ENTITIES;
-]>
-<section id="link_sets-editors_link_sets-template_two_links">
- <title>Template two links</title>
- <para>
- Links to further information and tasks relating to the concept (as mentioned in Template Two) are listed here:
- </para>
- <note><title>***Design Note***</title>
- <para>
- Listed below are the links that link to further tasks or information relating to "The Task" discussed in JSF_TemplateTwo.
- </para>
- <para>
- * Use the "Placeholder_for_a_link section" as as a reminder that all relevant links haven't been included (or uncommented). You can search for the "placeholder" to ensure all links have been included.
- </para>
- </note>
- <variablelist>
- <title>Concepts</title>
- <varlistentry>
- <term>Concept A</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Concept B</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- </variablelist>
- <variablelist>
- <title>Tasks</title>
- <varlistentry>
- <term>Task A</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Task B</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- </variablelist>
- <!--
- <listitem>
- <para><xref linkend="proc-JSF_Editor_faces-config"></xref>.</para>
- </listitem>
- <listitem>
- <para><xref linkend="proc-JSF_ProcedureNameOne"></xref>.</para>
- </listitem>
- </itemizedlist>
- -->
- <para>&FEEDBACK-link_sets-editors_link_sets-template_two_links;</para>
-</section>
\ No newline at end of file
Deleted: trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/views_link_sets-link_sets.xml
===================================================================
--- trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/views_link_sets-link_sets.xml 2010-10-09 17:36:24 UTC (rev 25666)
+++ trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/views_link_sets-link_sets.xml 2010-10-09 18:21:52 UTC (rev 25667)
@@ -1,15 +0,0 @@
-<?xml version='1.0' encoding='utf-8' ?>
-<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY % BOOK_ENTITIES SYSTEM "JBoss_Tools_Reference_Guide_Template.ent">
-%BOOK_ENTITIES;
-]>
-<section id="link_sets-views_link_sets">
- <title>Views link sets</title>
- <para>
- The following sections list the links relating to views tasks and concepts.
- </para>
- <xi:include href="web_projects_view_links-link_sets.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href="web_development_perspective_palette_view_links-link_sets.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href="template_one_links-link_sets.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-
-</section>
\ No newline at end of file
Deleted: trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/web_development_perspective_palette_view_links-link_sets.xml
===================================================================
--- trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/web_development_perspective_palette_view_links-link_sets.xml 2010-10-09 17:36:24 UTC (rev 25666)
+++ trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/web_development_perspective_palette_view_links-link_sets.xml 2010-10-09 18:21:52 UTC (rev 25667)
@@ -1,158 +0,0 @@
-<?xml version='1.0' encoding='utf-8' ?>
-<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY % BOOK_ENTITIES SYSTEM "JBoss_Tools_Reference_Guide_Template.ent">
-%BOOK_ENTITIES;
-]>
-<section id="link_sets-views_link_sets-web_development_perspective_palette_view_links">
- <title>Web development perspective palette view links</title>
- <para>
- Links to further information and tasks relating to the Web developments perspective palette view are listed here:
- </para>
- <para>
- Links to the various tasks accessible from the w dialog are listed here:
- </para>
-
- <figure id="figure-link_sets-views_link_sets-web_development_perspective_palette_view_links_01">
- <title>Web Development Perspective - Palette View</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/image-jbt-palette_view_01.png" format="PNG"/>
- </imageobject>
- <textobject>
- <para>Palette View</para>
- </textobject>
- </mediaobject>
- </figure>
- <note><title>***Design Note***</title>
- <para>
- Listed below are the links that link to further tasks or information relating to to the "web development perspective" - palette view.
- </para>
- <para>
- * Use the "Placeholder_for_a_link section" as as a reminder that all relevant links haven't been included (or uncommented). You can search for the "placeholder" to ensure all links have been included.
- </para>
- </note>
-
-
- <variablelist>
- <title>Concepts</title>
- <varlistentry>
- <term>JBoss Ajax4jsf</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>JBoss RichFaces</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>JBoss Seam</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>JBoss HTML</term>
- <listitem>
- <!-- <para><xref linkend="proc-JSF_NewManagedBean"></xref>.</para> -->
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>JBoss Facelets</term>
- <listitem>
- <!-- <para><xref linkend="proc-JSF_NewManagedBean"></xref>.</para> -->
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- </variablelist>
-
- <variablelist>
- <title>References</title>
- <varlistentry>
- <term>JBoss Ajax4jsf</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>JBoss RichFaces</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>JBoss Seam</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>JBoss HTML</term>
- <listitem>
- <!-- <para><xref linkend="proc-JSF_NewManagedBean"></xref>.</para> -->
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>JBoss Facelets</term>
- <listitem>
- <!-- <para><xref linkend="proc-JSF_NewManagedBean"></xref>.</para> -->
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- </variablelist>
- <variablelist>
- <title>Concepts</title>
- <varlistentry>
- <term>JBoss Ajax4jsf</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>JBoss RichFaces</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>JBoss Seam</term>
- <listitem>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>JBoss HTML</term>
- <listitem>
- <!-- <para><xref linkend="proc-JSF_NewManagedBean"></xref>.</para> -->
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>JBoss Facelets</term>
- <listitem>
- <!-- <para><xref linkend="proc-JSF_NewManagedBean"></xref>.</para> -->
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- <para><xref linkend="hints-placeholder_for_a_link"></xref>.</para>
- </listitem>
- </varlistentry>
- </variablelist>
- <para>&FEEDBACK-link_sets-views_link_sets-web_development_perspective_palette_view_links;</para>
-</section>
\ No newline at end of file
Deleted: trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/web_projects_view_links-link_sets.xml
===================================================================
--- trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/web_projects_view_links-link_sets.xml 2010-10-09 17:36:24 UTC (rev 25666)
+++ trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/web_projects_view_links-link_sets.xml 2010-10-09 18:21:52 UTC (rev 25667)
@@ -1,123 +0,0 @@
-<?xml version='1.0' encoding='utf-8' ?>
-<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY % BOOK_ENTITIES SYSTEM "JBoss_Tools_Reference_Guide_Template.ent">
-%BOOK_ENTITIES;
-]>
-<section id="link_sets-views_link_sets-web_projects_view_links">
- <title>Web projects view links</title>
- <note>
- <title>***Design Note***</title>
- <para>
- Note that this is an alternative format where descriptions are included. It would be best not to include such a format as the content will be extensive due to the multitude of options available on some interfaces. Also this is a link set so information shouldn't be placed here.
- </para>
- <para>
- This content has been preserved for now as we need to decide whether to include such descriptions and if so where to place such content within the document.
- </para>
- </note>
- <para>
- Component descriptions and links to further tasks relating to the web projects view are listed here:
- </para>
-
- <figure id="figure-Web_projects_view_links">
- <title>Web Development Perspective - Web Projects View</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/image-jbt-web_projects_view_01.png" format="PNG"/>
- </imageobject>
- <textobject>
- <para>Web Projects View</para>
- </textobject>
- </mediaobject>
- </figure>
- <note><title>***Design Note***</title>
- <para>
- Listed below are the links that link to further tasks or information relating to to the web projects view.
- </para>
- <para>
- * Use the "Placeholder_for_a_link section" as as a reminder that all relevant links haven't been included (or uncommented). You can search for the "placeholder" to ensure all links have been included.
- </para>
- </note>
-
- <variablelist>
- <title>Web Development View - Web Projects </title>
- <varlistentry>
- <term>WebContent</term>
- <listitem>
- <para>
- This option lists the content deployed to the server. The available navigation options include: <!-- Details are available in <xref linkend="sect-Reference_Guide_Template-Hints-Placeholder_for_a_link"></xref> -->
- </para>
- <itemizedlist>
- <listitem>
- <para>
- <guilabel>META-INF</guilabel>: This folder includes the <filename>MANIFEST.MF</filename> file ......
- </para>
- </listitem>
- <listitem>
- <para>
- <guilabel>pages</guilabel>: This folder lists the jsp pages which will be deployed to the server. Clicking on a jsp page renders the page in the jsp files editor <xref linkend="hints-placeholder_for_a_link"></xref>.
- </para>
- </listitem>
- <listitem>
- <para>
- <guilabel>WEB-INF</guilabel>: This folder lists the classes for the project.
- </para>
- </listitem>
- </itemizedlist>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Tag Libraries</term>
- <listitem>
- <para>
- This option lists the tag libraries associated with the project. Clicking on a library file renders the file in the JBoss Tools Tag Library Editor <xref linkend="hints-placeholder_for_a_link"></xref>.
- </para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Resource Bundles</term>
- <listitem>
- <para>
- This option lists the resources associated with the project. Details are available in <xref linkend="hints-placeholder_for_a_link"></xref>
- </para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Configuration</term>
- <listitem>
- <para>
- This option lists the configuration settings (<filename>faces-config.xml</filename>) for the project. Clicking on a config file renders the file in the Faces Config Editor <xref linkend="hints-placeholder_for_a_link"></xref>.
- </para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Beans</term>
- <listitem>
- <para>
- This option lists the Beans defined within the project. Clicking on a Bean file renders the file in a standard Java file editor.
- </para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Tiles</term>
- <listitem>
- <para>
- This option lists the tiles associated with the project. Details are available in <xref linkend="hints-placeholder_for_a_link"></xref>
- </para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>web.xml</term>
- <listitem>
- <para>
- This option lists the web.xml settings and parameters. Clicking on the <guilabel>web.xml</guilabel> label or any sub item, renders the file in the <guilabel>Web XML Editor</guilabel> <xref linkend="proc-jsf-editor_faces-config"></xref>.
- </para>
- </listitem>
- </varlistentry>
- </variablelist>
- <note><title>Design Note</title>
- <para>
- It will be best to omit the descriptions and just link to the Concepts section and Tasks as this is a major documentation task (many descriptions for many views).
- </para>
- </note>
- <para>&FEEDBACK-link_sets-views_link_sets-web_projects_view_links;</para>
-</section>
\ No newline at end of file
Deleted: trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/wizards_link_sets-link_sets.xml
===================================================================
--- trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/wizards_link_sets-link_sets.xml 2010-10-09 17:36:24 UTC (rev 25666)
+++ trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/wizards_link_sets-link_sets.xml 2010-10-09 18:21:52 UTC (rev 25667)
@@ -1,12 +0,0 @@
-<?xml version='1.0' encoding='utf-8' ?>
-<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY % BOOK_ENTITIES SYSTEM "JBoss_Tools_Reference_Guide_Template.ent">
-%BOOK_ENTITIES;
-]>
-<section id="link_sets-wizards_link_sets">
- <title>Wizards link sets</title>
- <para>
-
- </para>
- <para>&FEEDBACK-link_sets-wizards_link_sets;</para>
-</section>
\ No newline at end of file
14 years, 3 months
JBoss Tools SVN: r25666 - trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US.
by jbosstools-commits@lists.jboss.org
Author: benlc
Date: 2010-10-09 13:36:24 -0400 (Sat, 09 Oct 2010)
New Revision: 25666
Modified:
trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/Book_Info.xml
trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/JBoss_Tools_Reference_Guide_Template.xml
trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/custom-document_navigation.xml
trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/document_navigation.xml
trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/managed_beans-document_navigation.xml
trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/template_overview.xml
trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/user_interface_components-document_navigation.xml
Log:
'committing following removal of link in Abstract causing growing nodeset error'
Modified: trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/Book_Info.xml
===================================================================
--- trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/Book_Info.xml 2010-10-09 16:40:25 UTC (rev 25665)
+++ trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/Book_Info.xml 2010-10-09 17:36:24 UTC (rev 25666)
@@ -12,7 +12,7 @@
<pubsnumber>0</pubsnumber>
<abstract>
<para>
- This template has been developed to assist in the generation of JBoss Tools reference material. The design is similar to the DITA format for topic based authoring with modifications detailed in <xref linkend="template_overview"></xref>. Design notes have been included throughout the document to assist developers and writers in contributing to the material. JBoss Tools reference material will be incorporated into Eclipse help and this template is an initial step towards this goal.
+ This template has been developed to assist in the generation of JBoss Tools reference material. The design is similar to the DITA format for topic based authoring with modifications detailed in the Template overview chapter. Design notes have been included throughout the document to assist developers and writers in contributing to the material. JBoss Tools reference material will be incorporated into Eclipse help and this template is an initial step towards this goal.
</para>
</abstract>
<corpauthor>
@@ -32,10 +32,6 @@
</xi:include>
</xi:fallback>
</xi:include>
-
- <!--
- <xi:include href="Common_Content/Legal_Notice.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- -->
- <xi:include href="Author_Group.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href="Author_Group.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
</bookinfo>
Modified: trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/JBoss_Tools_Reference_Guide_Template.xml
===================================================================
--- trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/JBoss_Tools_Reference_Guide_Template.xml 2010-10-09 16:40:25 UTC (rev 25665)
+++ trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/JBoss_Tools_Reference_Guide_Template.xml 2010-10-09 17:36:24 UTC (rev 25666)
@@ -4,19 +4,20 @@
%BOOK_ENTITIES;
]>
<book>
+
<xi:include href="Book_Info.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="Preface.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-<!-- <xi:include href="template_overview.xml" xmlns:xi="http://www.w3.org/2001/XInclude" /> -->
- <!-- <xi:include href="legal_notices.xml" xmlns:xi="http://www.w3.org/2001/XInclude" /> -->
- <!-- <xi:include href="latest_developments.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href="template_overview.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href="legal_notices.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href="latest_developments.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="getting_started.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="concepts.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="tasks.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="reference.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="error_and_warning_messages.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href="hints.xml" xmlns:xi="http://www.w3.org/2001/XInclude" /> -->
+ <xi:include href="hints.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<!-- <xi:include href="link_sets.xml" xmlns:xi="http://www.w3.org/2001/XInclude" /> -->
- <!-- <xi:include href="document_navigation.xml" xmlns:xi="http://www.w3.org/2001/XInclude" /> -->
+ <xi:include href="document_navigation.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="Revision_History.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<index />
</book>
Modified: trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/custom-document_navigation.xml
===================================================================
--- trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/custom-document_navigation.xml 2010-10-09 16:40:25 UTC (rev 25665)
+++ trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/custom-document_navigation.xml 2010-10-09 17:36:24 UTC (rev 25666)
@@ -5,10 +5,43 @@
]>
<section id="document_navigation-user_interface_components-custom">
<title>Custom</title>
-
- <para>
-
- </para>
+ <table id="table-document_navigation-user_interface_components-custom_01" frame='all'>
+ <title>Base user interface components</title>
+ <tgroup cols='3' align='left' colsep='1' rowsep='1'>
+ <colspec colname='c1' colwidth="1*"/>
+ <colspec colname='c2' colwidth="1*"/>
+ <colspec colname='c3' colwidth="1*"/>
+ <thead>
+ <row>
+ <entry>Concepts</entry>
+ <entry>Tasks</entry>
+ <entry>Reference</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry><xref linkend="concepts-user_interface_components-custom"></xref></entry>
+ <entry><xref linkend="hints-placeholder_for_a_link"></xref></entry>
+ <entry><xref linkend="hints-placeholder_for_a_link"></xref></entry>
+ </row>
+ <row>
+ <entry><xref linkend="hints-placeholder_for_a_link"></xref></entry>
+ <entry><xref linkend="hints-placeholder_for_a_link"></xref></entry>
+ <entry><xref linkend="hints-placeholder_for_a_link"></xref></entry>
+ </row>
+ <row>
+ <entry><xref linkend="hints-placeholder_for_a_link"></xref></entry>
+ <entry><xref linkend="hints-placeholder_for_a_link"></xref></entry>
+ <entry><xref linkend="hints-placeholder_for_a_link"></xref></entry>
+ </row>
+ <row>
+ <entry><xref linkend="hints-placeholder_for_a_link"></xref></entry>
+ <entry><xref linkend="hints-placeholder_for_a_link"></xref></entry>
+ <entry><xref linkend="hints-placeholder_for_a_link"></xref></entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
<para>&FEEDBACK-document_navigation-user_interface_components-custom;</para>
-</section>
\ No newline at end of file
+</section>
Modified: trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/document_navigation.xml
===================================================================
--- trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/document_navigation.xml 2010-10-09 16:40:25 UTC (rev 25665)
+++ trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/document_navigation.xml 2010-10-09 17:36:24 UTC (rev 25666)
@@ -19,10 +19,10 @@
The links to the tasks link to the proc-procedure_name id rather than the "task" section id. This way, the links and the procedures can be moved to a new document and still function (the "task" section id might change but the procedure id will remain constant as this is largely based on the dialog title).
</para>
</note>
- <xi:include href="managed_beans-document_navigation.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-<!-- <xi:include href="user_interface_components-document_navigation.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href="managed_beans-document_navigation.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href="user_interface_components-document_navigation.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="state_management-document_navigation.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="ajax_support-document_navigation.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="another_concept-document_navigation.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- -->
-</chapter>
\ No newline at end of file
+
+</chapter>
Modified: trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/managed_beans-document_navigation.xml
===================================================================
--- trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/managed_beans-document_navigation.xml 2010-10-09 16:40:25 UTC (rev 25665)
+++ trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/managed_beans-document_navigation.xml 2010-10-09 17:36:24 UTC (rev 25666)
@@ -23,8 +23,7 @@
</row>
</thead>
<tbody>
- <row>
-
+ <row>
<entry><xref linkend="concepts-managed_beans-managed_beans_and_java_server_faces"></xref></entry>
<entry><xref linkend="proc-jsf-new_managed_bean"></xref></entry>
<entry><xref linkend="hints-placeholder_for_a_link"></xref></entry>
@@ -50,4 +49,4 @@
<para>&FEEDBACK-document_navigation-managed_beans;</para>
-</section>
\ No newline at end of file
+</section>
Modified: trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/template_overview.xml
===================================================================
--- trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/template_overview.xml 2010-10-09 16:40:25 UTC (rev 25665)
+++ trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/template_overview.xml 2010-10-09 17:36:24 UTC (rev 25666)
@@ -29,7 +29,7 @@
</listitem>
<listitem>
<para>
- Identifying related material for the generation of links is simplified when a information is categorised.
+ Identifying related material for the generation of links is simplified when information is categorised.
</para>
</listitem>
<listitem>
Modified: trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/user_interface_components-document_navigation.xml
===================================================================
--- trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/user_interface_components-document_navigation.xml 2010-10-09 16:40:25 UTC (rev 25665)
+++ trunk/documentation/JBoss_Tools_Reference_Guide_Template/en-US/user_interface_components-document_navigation.xml 2010-10-09 17:36:24 UTC (rev 25666)
@@ -9,10 +9,8 @@
</para>
<xi:include href="base-document_navigation.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href="extended-document_navigation.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href="custom-document_navigation.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <!--
+ <xi:include href="extended-document_navigation.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href="custom-document_navigation.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="reusable-document_navigation.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- -->
-</section>
\ No newline at end of file
+</section>
14 years, 3 months
JBoss Tools SVN: r25665 - workspace/examples.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2010-10-09 12:40:25 -0400 (Sat, 09 Oct 2010)
New Revision: 25665
Added:
workspace/examples/project-examples-3.1.xml
Log:
JBIDE-7298 Error Returned Accessing Project Examples
Added: workspace/examples/project-examples-3.1.xml
===================================================================
--- workspace/examples/project-examples-3.1.xml (rev 0)
+++ workspace/examples/project-examples-3.1.xml 2010-10-09 16:40:25 UTC (rev 25665)
@@ -0,0 +1,931 @@
+<projects>
+ <project>
+ <category>Seam</category>
+ <name>registration</name>
+ <included-projects>
+ registration,registration-ejb,registration-ear,registration-test
+ </included-projects>
+ <shortDescription>Seam Registration Example - EAR (including a test project)</shortDescription>
+ <description>This is a trivial example for the Seam tutorial. It requires JBoss EAP 4.3/JBoss AS 4.2.x, Seam 2.0 and TestNG plugin.
+It includes the registration,registration-ejb,registration-ear,registration-test projects.
+</description>
+ <size>31657984</size>
+ <url>
+ http://anonsvn.jboss.org/repos/jbosstools/workspace/snjeza/seam-examples/...
+ </url>
+ <fixes>
+ <fix type="wtpruntime">
+ <property name="allowed-types">org.jboss.ide.eclipse.as.runtime.eap.43, org.jboss.ide.eclipse.as.runtime.42</property>
+ <property name="eclipse-projects">registration,registration-ejb,registration-ear</property>
+ <property name="description">This project example requires the JBoss EAP 4.3 or JBoss AS 4.2.x</property>
+ </fix>
+
+ <fix type="seam">
+ <property name="allowed-versions">2.0.0, 2.0.1, 2.0.2</property>
+ <property name="eclipse-projects">registration</property>
+ <property name="description">This project example requires Seam version 2.0</property>
+ </fix>
+
+ <fix type="plugin">
+ <property name="id">org.testng.eclipse</property>
+ <property name="versions">5.8.0, 5.9.0</property>
+ <property name="description">The TestNG plugin is required if you want to run Seam tests. You can install it using the following update site: http://beust.com/eclipse</property>
+ </fix>
+ </fixes>
+ </project>
+
+ <project>
+ <category>Seam</category>
+ <name>registration2</name>
+ <included-projects>
+ registration,registration-ejb,registration-ear
+ </included-projects>
+ <shortDescription>Seam Registration Example - EAR</shortDescription>
+ <description>This is a trivial example for the Seam tutorial. It requires JBoss EAP 4.3/JBoss AS 4.2.x and Seam 2.0.
+The example creates the registration,registration-ejb,registration-ear projects.
+It includes a tutorial.
+</description>
+ <size>8450048</size>
+ <url>
+ http://anonsvn.jboss.org/repos/jbosstools/workspace/snjeza/seam-examples/...
+ </url>
+ <welcome type="cheatsheets" url="/registration/cheatsheets/registration.xml"/>
+ <fixes>
+ <fix type="wtpruntime">
+ <property name="allowed-types">org.jboss.ide.eclipse.as.runtime.eap.43, org.jboss.ide.eclipse.as.runtime.42</property>
+ <property name="eclipse-projects">registration,registration-ejb,registration-ear</property>
+ <property name="description">This project example requires the JBoss EAP 4.3 or JBoss AS 4.2.x</property>
+ </fix>
+
+ <fix type="seam">
+ <property name="allowed-versions">2.0.0, 2.0.1, 2.0.2</property>
+ <property name="eclipse-projects">registration</property>
+ <property name="description">This project example requires Seam version 2.0</property>
+ </fix>
+ </fixes>
+ </project>
+
+ <project>
+ <category>Seam</category>
+ <name>messages</name>
+ <included-projects>
+ messages,messages-ejb,messages-ear
+ </included-projects>
+ <shortDescription>Seam Messages Example - EAR</shortDescription>
+ <description>This is a simple example of the use of @DataModel for the Seam tutorial. It requires JBoss EAP 4.3/JBoss AS 4.2.x and Seam 2.0.
+The example creates the messages,messages-ejb and messages-ear projects.
+It includes a tutorial.
+</description>
+ <size>7680000</size>
+ <url>
+ http://anonsvn.jboss.org/repos/jbosstools/workspace/snjeza/seam-examples/...
+ </url>
+ <welcome type="cheatsheets" url="/messages/cheatsheets/messages.xml"/>
+ <fixes>
+ <fix type="wtpruntime">
+ <property name="allowed-types">org.jboss.ide.eclipse.as.runtime.eap.43, org.jboss.ide.eclipse.as.runtime.42</property>
+ <property name="eclipse-projects">messages,messages-ejb,messages-ear</property>
+ <property name="description">This project example requires the JBoss EAP 4.3 or JBoss AS 4.2.x</property>
+ </fix>
+
+ <fix type="seam">
+ <property name="allowed-versions">2.0.0, 2.0.1, 2.0.2</property>
+ <property name="eclipse-projects">messages</property>
+ <property name="description">This project example requires Seam version 2.0</property>
+ </fix>
+ </fixes>
+ </project>
+
+ <project>
+ <category>Seam</category>
+ <name>todo</name>
+ <included-projects>
+ todo,todo-ejb,todo-ear
+ </included-projects>
+ <shortDescription>Seam and jBPM: the todo list example - EAR</shortDescription>
+ <description>This is a simple example for the Seam tutorial, demonstrating the
+use of jBPM-based business process management. It requires JBoss EAP 4.3/JBoss AS 4.2.x and Seam 2.0.
+The example creates the todo,todo-ejb and todo-ear projects.
+It includes a tutorial.
+</description>
+ <size>2183168</size>
+ <url>
+ http://anonsvn.jboss.org/repos/jbosstools/workspace/snjeza/seam-examples/...
+ </url>
+ <welcome type="cheatsheets" url="/todo/cheatsheets/todo.xml"/>
+ <fixes>
+ <fix type="wtpruntime">
+ <property name="allowed-types">org.jboss.ide.eclipse.as.runtime.eap.43, org.jboss.ide.eclipse.as.runtime.42</property>
+ <property name="eclipse-projects">todo,todo-ejb,todo-ear</property>
+ <property name="description">This project example requires the JBoss EAP 4.3 or JBoss AS 4.2.x</property>
+ </fix>
+
+ <fix type="seam">
+ <property name="allowed-versions">2.0.0, 2.0.1, 2.0.2</property>
+ <property name="eclipse-projects">todo</property>
+ <property name="description">This project example requires Seam version 2.0</property>
+ </fix>
+ </fixes>
+ </project>
+
+ <project>
+ <category>Seam</category>
+ <name>numberguess</name>
+ <included-projects>
+ numberguess,numberguess-ejb,numberguess-ear
+ </included-projects>
+ <shortDescription>Seam pageflow: the numberguess example - EAR</shortDescription>
+ <description>This is a simple example for the Seam tutorial, demonstrating the use of
+jBPM-based page flow. It requires JBoss EAP 4.3/JBoss AS 4.2.x and Seam 2.0.
+The example creates the numberguess,numberguess-ejb and numberguess-ear projects.
+It includes a tutorial.
+</description>
+ <size>2203648</size>
+ <url>
+ http://anonsvn.jboss.org/repos/jbosstools/workspace/snjeza/seam-examples/...
+ </url>
+ <welcome type="cheatsheets" url="/numberguess/cheatsheets/numberguess.xml"/>
+ <fixes>
+ <fix type="wtpruntime">
+ <property name="allowed-types">org.jboss.ide.eclipse.as.runtime.eap.43, org.jboss.ide.eclipse.as.runtime.42</property>
+ <property name="eclipse-projects">numberguess,numberguess-ejb,numberguess-ear</property>
+ <property name="description">This project example requires the JBoss EAP 4.3 or JBoss AS 4.2.x</property>
+ </fix>
+
+ <fix type="seam">
+ <property name="allowed-versions">2.0.0, 2.0.1, 2.0.2</property>
+ <property name="eclipse-projects">numberguess</property>
+ <property name="description">This project example requires Seam version 2.0</property>
+ </fix>
+ </fixes>
+ </project>
+
+ <project>
+ <category>Seam</category>
+ <name>booking3-mavenized</name>
+ <included-projects>
+ booking,booking-ear,booking-ejb,booking-parent,booking-test
+ </included-projects>
+ <shortDescription>Seam Booking Example - EAR mavenized - Seam 2.1.1.GA</shortDescription>
+ <description>This example demonstrates the use of Seam in a Java EE 5 environment.
+Transaction and persistence context management is handled by the EJB container.
+It includes the booking, booking-ear, booking-ejb, booking-test and booking-parent projects.
+Requires JBoss EAP 4.3/JBoss AS 4.2.x, Seam 2.1, m2eclipse and testng plugins.
+</description>
+ <size>196608</size>
+ <url>
+ http://anonsvn.jboss.org/repos/jbosstools/workspace/snjeza/seam-examples/...
+ </url>
+
+ <fixes>
+ <fix type="wtpruntime">
+ <property name="allowed-types">org.jboss.ide.eclipse.as.runtime.eap.43, org.jboss.ide.eclipse.as.runtime.42</property>
+ <property name="eclipse-projects">booking,booking-ejb,booking-ear</property>
+ <property name="description">This project example requires the JBoss EAP 4.3 or JBoss AS 4.2.x</property>
+ </fix>
+
+ <fix type="seam">
+ <property name="allowed-versions">2.1.0, 2.1.1, 2.1.2</property>
+ <property name="eclipse-projects">booking</property>
+ <property name="description">This project example requires Seam version 2.1</property>
+ </fix>
+ <fix type="plugin">
+ <property name="id">org.testng.eclipse</property>
+ <property name="versions">5.8.0, 5.9.0</property>
+ <property name="description">The TestNG plugin is required if you want to run Seam tests. You can install it using the following update site: http://beust.com/eclipse</property>
+ </fix>
+ <fix type="plugin">
+ <property name="id">org.maven.ide.eclipse.wtp</property>
+ <property name="versions">0.9.9, 0.10.0</property>
+ <property name="description">This project example requires m2eclipse. You can install it using the following update sites: http://m2eclipse.sonatype.org/sites/m2e and http://m2eclipse.sonatype.org/sites/m2e-extras</property>
+ </fix>
+
+ </fixes>
+ </project>
+
+ <project>
+ <category>Seam</category>
+ <name>booking3</name>
+ <included-projects>
+ booking,booking-ear,booking-ejb,booking-test
+ </included-projects>
+ <shortDescription>Seam Booking Example - EAR (including a tutorial)</shortDescription>
+ <description>This example demonstrates the use of Seam in a Java EE 5 environment.
+Transaction and persistence context management is handled by the EJB container.
+The example requires JBoss EAP 4.3/JBoss AS 4.2.x, Seam 2.0 and TestNG plugin.
+It includes the booking, booking-ear,booking-test and booking-ejb projects.
+</description>
+ <size>36036608</size>
+ <url>
+ http://anonsvn.jboss.org/repos/jbosstools/workspace/snjeza/seam-examples/...
+ </url>
+ <welcome type="cheatsheets" url="/booking/cheatsheets/booking.xml"/>
+ <fixes>
+ <fix type="wtpruntime">
+ <property name="allowed-types">org.jboss.ide.eclipse.as.runtime.eap.43, org.jboss.ide.eclipse.as.runtime.42</property>
+ <property name="eclipse-projects">booking,booking-ear,booking-ejb</property>
+ <property name="description">This project example requires the JBoss EAP 4.3 or JBoss AS 4.2.x</property>
+ </fix>
+
+ <fix type="seam">
+ <property name="allowed-versions">2.0.0, 2.0.1, 2.0.2</property>
+ <property name="eclipse-projects">booking</property>
+ <property name="description">This project example requires Seam version 2.0</property>
+ </fix>
+ <fix type="plugin">
+ <property name="id">org.testng.eclipse</property>
+ <property name="versions">5.8.0, 5.9.0</property>
+ <property name="description">The TestNG plugin is required if you want to run Seam tests. You can install it using the following update site: http://beust.com/eclipse</property>
+ </fix>
+ </fixes>
+ </project>
+
+ <project>
+ <category>Seam</category>
+
+ <name>booking2</name>
+ <included-projects>
+ booking,booking-ear,booking-ejb,booking-parent,booking-test
+ </included-projects>
+ <shortDescription>Seam Booking Example - EAR mavenized</shortDescription>
+ <description>This example demonstrates the use of Seam in a Java EE 5 environment.
+Transaction and persistence context management is handled by the EJB container.
+It includes the booking, booking-ear, booking-ejb,booking-test and booking-parent projects.
+Requires JBoss EAP 4.3/JBoss AS 4.2.x, Seam 2.0, m2eclipse and testng plugins.
+</description>
+ <size>203639</size>
+
+ <url>
+ http://anonsvn.jboss.org/repos/jbosstools/workspace/snjeza/seam-examples/...
+ </url>
+ <fixes>
+ <fix type="wtpruntime">
+ <property name="allowed-types">org.jboss.ide.eclipse.as.runtime.eap.43, org.jboss.ide.eclipse.as.runtime.42</property>
+ <property name="eclipse-projects">booking,booking-ejb,booking-ear</property>
+ <property name="description">This project example requires the JBoss EAP 4.3 or JBoss AS 4.2.x</property>
+ </fix>
+
+ <fix type="seam">
+ <property name="allowed-versions">2.0.0, 2.0.1, 2.0.2</property>
+ <property name="eclipse-projects">booking</property>
+ <property name="description">This project example requires Seam version 2.0</property>
+ </fix>
+ <fix type="plugin">
+ <property name="id">org.testng.eclipse</property>
+ <property name="versions">5.8.0, 5.9.0</property>
+ <property name="description">The TestNG plugin is required if you want to run Seam tests. You can install it using the following update site: http://beust.com/eclipse</property>
+ </fix>
+
+ <fix type="plugin">
+ <property name="id">org.maven.ide.eclipse.wtp</property>
+ <property name="versions">0.9.9, 0.10.0</property>
+ <property name="description">This project example requires m2eclipse. You can install it using the following update sites: http://m2eclipse.sonatype.org/sites/m2e and http://m2eclipse.sonatype.org/sites/m2e-extras</property>
+ </fix>
+
+ </fixes>
+ </project>
+
+ <project>
+ <category>Seam</category>
+ <name>booking22</name>
+ <included-projects>
+ booking22,booking22-ear,booking22-ejb,booking22-test
+ </included-projects>
+ <shortDescription>Seam 2.2 Booking Example - EAR (including a tutorial)</shortDescription>
+ <description>This example demonstrates the use of Seam in a Java EE 5 environment.
+Transaction and persistence context management is handled by the EJB container.
+This example has been tested on JBoss EAP 5.0.
+It includes the booking22, booking22-ear,booking22-test and booking22-ejb projects.
+</description>
+ <size>38203392</size>
+ <url>
+ http://anonsvn.jboss.org/repos/jbosstools/workspace/snjeza/seam-examples/...
+ </url>
+ <welcome type="cheatsheets" url="/booking22/cheatsheets/booking.xml"/>
+ <fixes>
+ <fix type="wtpruntime">
+ <property name="allowed-types">org.jboss.ide.eclipse.as.runtime.eap.50</property>
+ <property name="eclipse-projects">booking22,booking22-ejb,booking22-ear</property>
+ <property name="description">This project example requires the JBoss EAP 5.0</property>
+ </fix>
+
+ <fix type="seam">
+ <property name="allowed-versions">2.2.0</property>
+ <property name="eclipse-projects">booking22</property>
+ <property name="description">This project example requires Seam version 2.2.0</property>
+ </fix>
+ <fix type="plugin">
+ <property name="id">org.testng.eclipse</property>
+ <property name="versions">5.8.0, 5.9.0</property>
+ <property name="description">The TestNG plugin is required if you want to run Seam tests. You can install it using the following update site: http://beust.com/eclipse</property>
+ </fix>
+ </fixes>
+ </project>
+
+ <project>
+ <category>Seam</category>
+ <name>photoalbum-mavenized</name>
+ <included-projects>
+ photoalbum-mavenized,photoalbum-mavenized-ear,photoalbum-mavenized-ejb,photoalbum-mavenized-parent
+ </included-projects>
+ <shortDescription>PhotoAlbum - EAR mavenized (RichFaces 3.3.1.GA, Seam 2.2.0.GA)</shortDescription>
+ <description>This example demonstrates the use of RichFaces components. It includes the photoalbum-mavenized,photoalbum-mavenized-ear,photoalbum-mavenized-ejb and photoalbum-mavenized-parent projects.
+The example requires Seam 2.2,JBoss EAP 4.3/JBoss EAP 5.0/JBoss AS 4.2.x/JBoss AS 5.x and m2eclipse.
+ </description>
+ <size>16441344</size>
+ <url>
+ http://anonsvn.jboss.org/repos/jbosstools/workspace/snjeza/seam-examples/...
+ </url>
+ <fixes>
+ <fix type="wtpruntime">
+ <property name="allowed-types">org.jboss.ide.eclipse.as.runtime.eap.50, org.jboss.ide.eclipse.as.runtime.eap.43, org.jboss.ide.eclipse.as.runtime.51, org.jboss.ide.eclipse.as.runtime.50, org.jboss.ide.eclipse.as.runtime.42</property>
+ <property name="eclipse-projects">photoalbum-mavenized,photoalbum-mavenized-ear,photoalbum-mavenized-ejb</property>
+ <property name="description">This project example requires the JBoss EAP 4.3/JBoss EAP 5.0/JBoss AS 4.2.x/JBoss AS 5.x</property>
+ </fix>
+
+ <fix type="seam">
+ <property name="allowed-versions">2.2.0</property>
+ <property name="eclipse-projects">photoalbum-mavenized</property>
+ <property name="description">This project example requires Seam version 2.2.0</property>
+ </fix>
+ <fix type="plugin">
+ <property name="id">org.maven.ide.eclipse.wtp</property>
+ <property name="versions">0.9.9, 0.10.0</property>
+ <property name="description">This project example requires m2eclipse. You can install it using the following update sites: http://m2eclipse.sonatype.org/sites/m2e and http://m2eclipse.sonatype.org/sites/m2e-extras</property>
+ </fix>
+ </fixes>
+ </project>
+
+ <project>
+ <category>Seam</category>
+ <name>photoalbum</name>
+ <included-projects>
+ photoalbum,photoalbum-ear,photoalbum-ejb
+ </included-projects>
+ <shortDescription>PhotoAlbum - EAR (RichFaces 3.3.1.GA, Seam 2.2.0.GA)</shortDescription>
+ <description>This example demonstrates the use of RichFaces components. It includes the photoalbum,photoalbum-ear and photoalbum-ejb projects.
+The example requires Seam 2.2 and JBoss EAP 4.3/JBoss EAP 5.0/JBoss AS 4.2.x/JBoss AS 5.x.
+ </description>
+ <size>25833472</size>
+ <url>
+ http://anonsvn.jboss.org/repos/jbosstools/workspace/snjeza/seam-examples/...
+ </url>
+ <fixes>
+ <fix type="wtpruntime">
+ <property name="allowed-types">org.jboss.ide.eclipse.as.runtime.eap.50, org.jboss.ide.eclipse.as.runtime.eap.43, org.jboss.ide.eclipse.as.runtime.51, org.jboss.ide.eclipse.as.runtime.50, org.jboss.ide.eclipse.as.runtime.42</property>
+ <property name="eclipse-projects">photoalbum,photoalbum-ear,photoalbum-ejb</property>
+ <property name="description">This project example requires JBoss EAP 4.3/JBoss EAP 5.0/JBoss AS 4.2.x/JBoss AS 5.x</property>
+ </fix>
+
+ <fix type="seam">
+ <property name="allowed-versions">2.2.0</property>
+ <property name="eclipse-projects">photoalbum</property>
+ <property name="description">This project example requires Seam version 2.2.0</property>
+ </fix>
+ </fixes>
+ </project>
+
+ <project>
+ <category>Seam</category>
+
+ <name>dvdstore22</name>
+ <included-projects>
+ dvdstore22,dvdstore22-ear,dvdstore22-ejb,dvdstore22-test
+ </included-projects>
+ <shortDescription>Seam 2.2 DVD Store Example - EAR (including a test project)</shortDescription>
+ <description>This example demonstrates the use of Seam with jBPM pageflow and business process management. It includes the dvdstore22,dvdstore22-ear,dvdstore22-test and dvdstore22-ejb projects.
+ </description>
+ <size>35225600</size>
+
+ <url>
+ http://anonsvn.jboss.org/repos/jbosstools/workspace/snjeza/seam-examples/...
+ </url>
+ <fixes>
+ <fix type="wtpruntime">
+ <property name="allowed-types">org.jboss.ide.eclipse.as.runtime.eap.50</property>
+ <property name="eclipse-projects">dvdstore22,dvdstore22-ejb,dvdstore22-ear</property>
+ <property name="description">This project example requires the JBoss EAP 5.0</property>
+ </fix>
+
+ <fix type="seam">
+ <property name="allowed-versions">2.2.0</property>
+ <property name="eclipse-projects">dvdstore22</property>
+ <property name="description">This project example requires Seam version 2.2.0</property>
+ </fix>
+ <fix type="plugin">
+ <property name="id">org.testng.eclipse</property>
+ <property name="versions">5.8.0, 5.9.0</property>
+ <property name="description">The TestNG plugin is required if you want to run Seam tests. You can install it using the following update site: http://beust.com/eclipse</property>
+ </fix>
+ </fixes>
+ </project>
+
+ <project>
+ <category>RESTEasy</category>
+ <name>simple</name>
+ <included-projects>
+ simple
+ </included-projects>
+
+ <shortDescription>RESTEasy Simple Example</shortDescription>
+ <description>This project is a simple example showing usage of @Path, @GET, PUT, POST, and @PathParam. It uses pure streaming output and includes the 'simple' project.
+Requires m2eclipse and JBoss EAP 4.3/JBoss EAP 5.0/JBoss AS 4.2.x/JBoss AS 5.x.
+ </description>
+ <size>16939</size>
+ <url>
+ http://anonsvn.jboss.org/repos/jbosstools/workspace/snjeza/resteasy-examp...
+ </url>
+ <fixes>
+ <fix type="wtpruntime">
+ <property name="allowed-types">org.jboss.ide.eclipse.as.runtime.eap.50, org.jboss.ide.eclipse.as.runtime.eap.43, org.jboss.ide.eclipse.as.runtime.51, org.jboss.ide.eclipse.as.runtime.50, org.jboss.ide.eclipse.as.runtime.42</property>
+ <property name="eclipse-projects">simple</property>
+ <property name="description">This project example requires JBoss EAP 4.3/JBoss EAP 5.0/JBoss AS 4.2.x/JBoss AS 5.x</property>
+ </fix>
+ <fix type="plugin">
+ <property name="id">org.maven.ide.eclipse.wtp</property>
+ <property name="versions">0.10.0</property>
+ <property name="description">This project example requires m2eclipse. You can install it using the following update sites: http://m2eclipse.sonatype.org/sites/m2e and http://m2eclipse.sonatype.org/sites/m2e-extras</property>
+ </fix>
+ </fixes>
+ </project>
+
+ <project>
+ <category>Portlet</category>
+ <name>testjsfportlet</name>
+ <shortDescription>JBoss JSF Portlet Example</shortDescription>
+
+ <description>This example demonstrates the use of JBoss JSF Portlet. It runs on JBoss EPP 4.3 or JBoss Portal 2.7.x.</description>
+ <size>4000000</size>
+ <url>
+ http://anonsvn.jboss.org/repos/jbosstools/workspace/snjeza/portlet-exampl...
+ </url>
+ <fixes>
+ <fix type="wtpruntime">
+ <property name="allowed-types">org.jboss.ide.eclipse.as.runtime.eap.43, org.jboss.ide.eclipse.as.runtime.42</property>
+ <property name="eclipse-projects">testjsfportlet</property>
+ <property name="description">This project example requires the JBoss EPP 4.3 or JBoss Portal 2.7.x</property>
+ </fix>
+
+ </fixes>
+ </project>
+
+ <project>
+ <category>Portlet</category>
+
+ <name>testseamportlet</name>
+ <shortDescription>JBoss Seam Portlet Example</shortDescription>
+ <description>This example demonstrates the use of JBoss Seam Portlet. It runs on JBoss EPP 4.3/JBoss Portal 2.7.x and Seam 2.0.</description>
+ <size>10000000</size>
+ <url>
+ http://anonsvn.jboss.org/repos/jbosstools/workspace/snjeza/portlet-exampl...
+ </url>
+ <fixes>
+ <fix type="wtpruntime">
+ <property name="allowed-types">org.jboss.ide.eclipse.as.runtime.eap.43, org.jboss.ide.eclipse.as.runtime.42</property>
+ <property name="eclipse-projects">testseamportlet</property>
+ <property name="description">This project example requires the JBoss EPP 4.3 or JBoss Portal 2.7.x</property>
+ </fix>
+ <fix type="seam">
+ <property name="allowed-versions">2.0.0, 2.0.1, 2.0.2</property>
+ <property name="eclipse-projects">testseamportlet</property>
+ <property name="description">This project example requires Seam version 2.0</property>
+ </fix>
+ </fixes>
+ </project>
+
+ <project>
+ <category>ESB for SOA-P 5.0</category>
+ <name>helloworld</name>
+ <included-projects> helloworld,helloworld_testclient </included-projects>
+ <shortDescription>JBoss ESB HelloWorld Example - ESB</shortDescription>
+ <description>NOTE: Before import this example, please make sure that there is a runtime named "jboss-soa-p.5.0 Runtime" in the workspace.
+ This example is to prove that the ESB is is properly configured and happy.
+As well as to demonstrate the needed minimal files to make a basic ESB component execute.</description>
+ <size>1101025</size>
+ <url>
+ http://anonsvn.jboss.org/repos/jbosstools/workspace/Denny/esb-example-soa...
+ </url>
+ <fixes>
+ <fix type="wtpruntime">
+ <property name="allowed-types">org.jboss.ide.eclipse.as.runtime.eap.50</property>
+ <property name="eclipse-projects">helloworld</property>
+ <property name="required-components">esb</property>
+ <property name="description">This project example requires the JBoss SOA-P 5.0 and the runtime name should be "jboss-soa-p.5.0 Runtime"</property>
+ </fix>
+ </fixes>
+ </project>
+
+ <project>
+ <category>ESB for SOA-P 5.0</category>
+ <name>helloworld_action</name>
+ <included-projects>helloworld_action,helloworld_action_client </included-projects>
+ <shortDescription>JBoss ESB HelloWorld Action Example - ESB</shortDescription>
+ <description>NOTE: Before import this example, please make sure that there is a runtime named "jboss-soa-p.5.0 Runtime" in the workspace.
+ This sample is to demonstrate the use of multiple action invocations from a single configuration. You can use
+ a single Action class and make multiple method calls or use multiple Action
+ classes.</description>
+ <size>26261</size>
+ <url>
+ http://anonsvn.jboss.org/repos/jbosstools/workspace/Denny/esb-example-soa...
+ </url>
+ <fixes>
+ <fix type="wtpruntime">
+ <property name="allowed-types">org.jboss.ide.eclipse.as.runtime.eap.50</property>
+ <property name="eclipse-projects">helloworld_action</property>
+ <property name="required-components">esb</property>
+ <property name="description">This project example requires the JBoss SOA-P 5.0 and the runtime name should be "jboss-soa-p.5.0 Runtime"</property>
+ </fix>
+ </fixes>
+ </project>
+
+ <project>
+ <category>ESB for SOA-P 5.0</category>
+ <name>helloworld_file_action</name>
+ <included-projects>helloworld_file_action,helloworld_file_action_client</included-projects>
+ <shortDescription>JBoss ESB HelloWorld File Action Example - ESB</shortDescription>
+ <description>NOTE: Before import this example, please make sure that there is a runtime named "jboss-soa-p.5.0 Runtime" in the workspace.
+ This is a basic example of using the File gateway feature of the JBoss ESB.
+ Files that are found in a particular directory with a particular extension
+ are sent to a JMS queue with actions for processing. Before deploy the project, please change some properties according to the readme.txt file.</description>
+ <size>16505</size>
+ <url>
+ http://anonsvn.jboss.org/repos/jbosstools/workspace/Denny/esb-example-soa...
+ </url>
+ <fixes>
+ <fix type="wtpruntime">
+ <property name="allowed-types">org.jboss.ide.eclipse.as.runtime.eap.50</property>
+ <property name="eclipse-projects">helloworld_file_action</property>
+ <property name="required-components">esb</property>
+ <property name="description">This project example requires the JBoss SOA-P 5.0 and the runtime name should be "jboss-soa-p.5.0 Runtime"</property>
+ </fix>
+ </fixes>
+ </project>
+
+ <project>
+ <category>ESB for SOA-P 5.0</category>
+ <name>webservice_consumer1</name>
+ <included-projects>webservice_consumer1,webservice_consumer1_client</included-projects>
+ <shortDescription>JBoss ESB Web Service consumer1 Example</shortDescription>
+ <description>NOTE: Before import this example, please make sure that there is a runtime named "jboss-soa-p.5.0 Runtime" in the workspace.
+ This example demonstrates how to consume a 181 Web Service in an ESB action.
+ This ESB will make a webservice request that requires a single "toWhom" string parameter.
+ The webservice will return a greeting response. The ESB simply dislays the response on the
+ console.</description>
+ <size>1120499</size>
+ <url>
+ http://anonsvn.jboss.org/repos/jbosstools/workspace/Denny/esb-example-soa...
+ </url>
+ <fixes>
+ <fix type="wtpruntime">
+ <property name="allowed-types">org.jboss.ide.eclipse.as.runtime.eap.50</property>
+ <property name="eclipse-projects">webservice_consumer1</property>
+ <property name="required-components">esb</property>
+ <property name="description">This project example requires the JBoss SOA-P 5.0 and the runtime name should be "jboss-soa-p.5.0 Runtime"</property>
+ </fix>
+ </fixes>
+ </project>
+
+
+ <project>
+ <category>ESB for SOA-P 5.0</category>
+ <name>webservice_producer</name>
+ <included-projects>webservice_producer,webservice_producer_client</included-projects>
+ <shortDescription>JBoss ESB Web Service producer Example</shortDescription>
+ <description>NOTE: Before import this example, please make sure that there is a runtime named "jboss-soa-p.5.0 Runtime" in the workspace.
+ This sample demonstrates how to deploy a JSR181 Webservice endpoint on
+ JBossESB using the SOAPProcessor action.</description>
+ <size>55269</size>
+ <url>
+ http://anonsvn.jboss.org/repos/jbosstools/workspace/Denny/esb-example-soa...
+ </url>
+ <fixes>
+ <fix type="wtpruntime">
+ <property name="allowed-types">org.jboss.ide.eclipse.as.runtime.eap.50</property>
+ <property name="eclipse-projects">webservice_producer</property>
+ <property name="required-components">esb</property>
+ <property name="description">This project example requires the JBoss SOA-P 5.0 and the runtime name should be "jboss-soa-p.5.0 Runtime"</property>
+ </fix>
+ </fixes>
+ </project>
+
+
+ <project>
+ <category>ESB for SOA-P 5.0</category>
+ <name>transform_CSV2XML</name>
+ <included-projects>transform_CSV2XML,transform_CSV2XML_client</included-projects>
+ <shortDescription>JBoss ESB Smooks CSV->XML Example</shortDescription>
+ <description>NOTE: Before import this example, please make sure that there is a runtime named "jboss-soa-p.5.0 Runtime" in the workspace.
+ This sample demonstrates how to transform a comma separated value (CSV) file to an xml.
+ The tranformation is done by configuring Smooks and performing two transformation, one
+ transformation from CSV to an intermediate xml format, and a second transformation from
+ the intermediate xml format to the target xml.</description>
+ <size>19434</size>
+ <url>
+ http://anonsvn.jboss.org/repos/jbosstools/workspace/Denny/esb-example-soa...
+ </url>
+ <fixes>
+ <fix type="wtpruntime">
+ <property name="allowed-types">org.jboss.ide.eclipse.as.runtime.eap.50</property>
+ <property name="eclipse-projects">transform_CSV2XML</property>
+ <property name="required-components">esb</property>
+ <property name="description">This project example requires the JBoss SOA-P 5.0 and the runtime name should be "jboss-soa-p.5.0 Runtime"</property>
+ </fix>
+ </fixes>
+ </project>
+
+ <project>
+ <category>ESB for SOA-P 5.0</category>
+ <name>transform_XML2POJO</name>
+ <included-projects>transform_XML2POJO,transform_XML2POJO_client</included-projects>
+ <shortDescription>JBoss ESB Smooks XML->POJO Example</shortDescription>
+ <description>NOTE: Before import this example, please make sure that there is a runtime named "jboss-soa-p.5.0 Runtime" in the workspace.
+ The purpose of the simple_transformation sample is to illustrate the
+use of Smooks performing a simple transformation by converting a XML file into
+Java POJOs.</description>
+ <size>40936</size>
+ <url>
+ http://anonsvn.jboss.org/repos/jbosstools/workspace/Denny/esb-example-soa...
+ </url>
+ <fixes>
+ <fix type="wtpruntime">
+ <property name="allowed-types">org.jboss.ide.eclipse.as.runtime.eap.50</property>
+ <property name="eclipse-projects">transform_XML2POJO</property>
+ <property name="required-components">esb</property>
+ <property name="description">This project example requires the JBoss SOA-P 5.0 and the runtime name should be "jboss-soa-p.5.0 Runtime"</property>
+ </fix>
+ </fixes>
+ </project>
+
+ <project>
+ <category>ESB for SOA-P 5.0</category>
+ <name>transform_XML2XML_date_manipulation</name>
+ <included-projects>transform_XML2XML_date_manipulation,transform_XML2XML_date_manipulation_client</included-projects>
+ <shortDescription>JBoss ESB Smooks XML->XML date-manipulation Example</shortDescription>
+ <description>NOTE: Before import this example, please make sure that there is a runtime named "jboss-soa-p.5.0 Runtime" in the workspace.
+ This is another simple sample of how to manually define and apply a Message
+ Transformation within JBoss ESB.
+
+ This sample is an extension of the "transformation_XML2XML_simple"
+ Quickstart, demonstrating how JBoss ESB Transformations can simplify your
+ XSLT transformations by combining the power of XSLT with Java. In this
+ Quickstart, we use Java to perform the ugly string manipulation on the
+ SampleOrder date field (see OrderDate.java) and use XSLT for what it's good at
+ i.e. Templating. Again, the transformed SampleOrder.xml message is just
+ printed to the Java console (message before and after).</description>
+ <size>22071</size>
+ <url>
+ http://anonsvn.jboss.org/repos/jbosstools/workspace/Denny/esb-example-soa...
+ </url>
+ <fixes>
+ <fix type="wtpruntime">
+ <property name="allowed-types">org.jboss.ide.eclipse.as.runtime.eap.50</property>
+ <property name="eclipse-projects">transform_XML2XML_date_manipulation</property>
+ <property name="required-components">esb</property>
+ <property name="description">This project example requires the JBoss SOA-P 5.0 and the runtime name should be "jboss-soa-p.5.0 Runtime"</property>
+ </fix>
+ </fixes>
+ </project>
+
+ <project>
+ <category>ESB for SOA-P 5.0</category>
+ <name>transform_XML2XML_simple</name>
+ <included-projects>transform_XML2XML_simple,transform_XML2XML_simple_client</included-projects>
+ <shortDescription>JBoss ESB Smooks XML->XML Example</shortDescription>
+ <description>NOTE: Before import this example, please make sure that there is a runtime named "jboss-soa-p.5.0 Runtime" in the workspace.
+ This is a very basic sample of how to manually define and apply a Message
+ Transformation within JBoss ESB. It applies a very simple XSLT to a
+ SampleOrder.xml message and prints the before and after XML to the console.</description>
+ <size>19224</size>
+ <url>
+ http://anonsvn.jboss.org/repos/jbosstools/workspace/Denny/esb-example-soa...
+ </url>
+ <fixes>
+ <fix type="wtpruntime">
+ <property name="allowed-types">org.jboss.ide.eclipse.as.runtime.eap.50</property>
+ <property name="eclipse-projects">transform_XML2XML_simple</property>
+ <property name="required-components">esb</property>
+ <property name="description">This project example requires the JBoss SOA-P 5.0 and the runtime name should be "jboss-soa-p.5.0 Runtime"</property>
+ </fix>
+ </fixes>
+ </project>
+
+ <project>
+ <category>ESB for SOA-P 4.3</category>
+ <name>helloworld</name>
+ <included-projects> helloworld,helloworld_testclient </included-projects>
+ <shortDescription>JBoss ESB HelloWorld Example - ESB</shortDescription>
+ <description>NOTE: Before import this example, please make sure that there is a runtime named "jboss-soa-p.4.3.0 Runtime" in the workspace.
+ This example is to prove that the ESB is is properly configured and happy.
+As well as to demonstrate the needed minimal files to make a basic ESB component execute.</description>
+ <size>1087454</size>
+
+ <url>
+ http://anonsvn.jboss.org/repos/jbosstools/workspace/Denny/esb-example/hel...
+ </url>
+ <fixes>
+ <fix type="wtpruntime">
+ <property name="allowed-types">org.jboss.ide.eclipse.as.runtime.eap.43</property>
+ <property name="eclipse-projects">helloworld</property>
+ <property name="required-components">esb</property>
+ <property name="description">This project example requires the JBoss SOA-P 4.3.0 and the runtime name should be "jboss-soa-p.4.3.0 Runtime"</property>
+ </fix>
+ </fixes>
+ </project>
+
+ <project>
+ <category>ESB for SOA-P 4.3</category>
+ <name>helloworld_action</name>
+ <included-projects>helloworld_action,helloworld_action_client </included-projects>
+ <shortDescription>JBoss ESB HelloWorld Action Example - ESB</shortDescription>
+ <description>NOTE: Before import this example, please make sure that there is a runtime named "jboss-soa-p.4.3.0 Runtime" in the workspace.
+ This example is to demonstrate the use of multiple action invocations from a single configuration. You can use a single Action class and make multiple method calls or use multiple Action
+ classes.</description>
+ <size>24456</size>
+ <url>
+ http://anonsvn.jboss.org/repos/jbosstools/workspace/Denny/esb-example/hel...
+ </url>
+ <fixes>
+ <fix type="wtpruntime">
+ <property name="allowed-types">org.jboss.ide.eclipse.as.runtime.eap.43</property>
+ <property name="eclipse-projects">helloworld_action</property>
+ <property name="required-components">esb</property>
+ <property name="description">This project example requires the JBoss SOA-P 4.3.0 and the runtime name should be "jboss-soa-p.4.3.0 Runtime"</property>
+ </fix>
+ </fixes>
+
+ </project>
+
+ <project>
+ <category>ESB for SOA-P 4.3</category>
+ <name>helloworld_file_action</name>
+ <included-projects>helloworld_file_action,helloworld_file_action_client </included-projects>
+ <shortDescription>JBoss ESB HelloWorld File Action Example - ESB</shortDescription>
+
+ <description>NOTE: Before import this example, please make sure that there is a runtime named "jboss-soa-p.4.3.0 Runtime" in the workspace.
+ This is a basic example of using the File gateway feature of the JBoss ESB.
+ Files that are found in a particular directory with a particular extension
+ are sent to a JMS queue with actions for processing. Before deploy the project, please change some properties according to the readme.txt file.</description>
+ <size>15140</size>
+ <url>
+ http://anonsvn.jboss.org/repos/jbosstools/workspace/Denny/esb-example/hel...
+ </url>
+ <fixes>
+ <fix type="wtpruntime">
+ <property name="allowed-types">org.jboss.ide.eclipse.as.runtime.eap.43</property>
+ <property name="eclipse-projects">helloworld_file_action</property>
+ <property name="required-components">esb</property>
+ <property name="description">This project example requires the JBoss SOA-P 4.3.0 and the runtime name should be "jboss-soa-p.4.3.0 Runtime"</property>
+ </fix>
+ </fixes>
+ </project>
+
+ <project>
+ <category>ESB for SOA-P 4.3</category>
+ <name>webservice_consumer1</name>
+ <included-projects>webservice_consumer1,webservice_consumer1_client </included-projects>
+ <shortDescription>JBoss ESB Web Service consumer1 Example</shortDescription>
+ <description>NOTE: Before import this example, please make sure that there is a runtime named "jboss-soa-p.4.3.0 Runtime" in the workspace.
+ This example demonstrates how to consume a 181 Web Service in an ESB action.
+ This ESB will make a webservice request that requires a single "toWhom" string parameter.
+ The webservice will return a greeting response. The ESB simply displays the response on the console.
+ </description>
+ <size>1094434</size>
+
+ <url>
+ http://anonsvn.jboss.org/repos/jbosstools/workspace/Denny/esb-example/web...
+ </url>
+ <fixes>
+ <fix type="wtpruntime">
+ <property name="allowed-types">org.jboss.ide.eclipse.as.runtime.eap.43</property>
+ <property name="eclipse-projects">webservice_consumer1</property>
+ <property name="required-components">esb</property>
+ <property name="description">This project example requires the JBoss SOA-P 4.3.0 and the runtime name should be "jboss-soa-p.4.3.0 Runtime"</property>
+ </fix>
+ </fixes>
+ </project>
+
+ <project>
+ <category>ESB for SOA-P 4.3</category>
+ <name>webservice_producer</name>
+ <included-projects>webservice_producer,webservice_producer_client </included-projects>
+ <shortDescription>JBoss ESB Web Service producer Example</shortDescription>
+ <description>NOTE: Before import this example, please make sure that there is a runtime named "jboss-soa-p.4.3.0 Runtime" in the workspace.
+ This sample demonstrates how to deploy a JSR181 Webservice endpoint on
+ JBossESB using the SOAPProcessor action.</description>
+ <size>52601</size>
+ <url>
+ http://anonsvn.jboss.org/repos/jbosstools/workspace/Denny/esb-example/web...
+ </url>
+ <fixes>
+ <fix type="wtpruntime">
+ <property name="allowed-types">org.jboss.ide.eclipse.as.runtime.eap.43</property>
+ <property name="eclipse-projects">webservice_producer</property>
+ <property name="required-components">esb</property>
+ <property name="description">This project example requires the JBoss SOA-P 4.3.0 and the runtime name should be "jboss-soa-p.4.3.0 Runtime"</property>
+ </fix>
+ </fixes>
+
+ </project>
+
+ <project>
+ <category>ESB for SOA-P 4.3</category>
+ <name>transform_CSV2XML</name>
+ <included-projects>transform_CSV2XML,transform_CSV2XML_client </included-projects>
+ <shortDescription>JBoss ESB Smooks CSV->XML Example</shortDescription>
+ <description>NOTE: Before import this example, please make sure that there is a runtime named "jboss-soa-p.4.3.0 Runtime" in the workspace.
+ This sample demonstrates how to transform a comma separated value (CSV) file to an xml.
+ The tranformation is done by configuring Smooks and performing two transformation, one transformation from CSV to an intermediate xml format, and a second transformation from the intermediate xml format to the target xml.</description>
+ <size>18354</size>
+ <url>
+ http://anonsvn.jboss.org/repos/jbosstools/workspace/Denny/esb-example/tra...
+ </url>
+ <fixes>
+ <fix type="wtpruntime">
+ <property name="allowed-types">org.jboss.ide.eclipse.as.runtime.eap.43</property>
+ <property name="eclipse-projects">transform_CSV2XML</property>
+ <property name="required-components">esb</property>
+ <property name="description">This project example requires the JBoss SOA-P 4.3.0 and the runtime name should be "jboss-soa-p.4.3.0 Runtime"</property>
+ </fix>
+ </fixes>
+ </project>
+
+ <project>
+ <category>ESB for SOA-P 4.3</category>
+ <name>transform_XML2POJO</name>
+ <included-projects>transform_XML2POJO,transform_XML2POJO_client </included-projects>
+ <shortDescription>JBoss ESB Smooks XML->POJO Example</shortDescription>
+
+ <description>NOTE: Before import this example, please make sure that there is a runtime named "jboss-soa-p.4.3.0 Runtime" in the workspace.
+ The purpose of the simple_transformation sample is to illustrate the
+use of Smooks performing a simple transformation by converting a XML file into
+Java POJOs.</description>
+ <size>33104</size>
+ <url>
+ http://anonsvn.jboss.org/repos/jbosstools/workspace/Denny/esb-example/tra...
+ </url>
+ <fixes>
+ <fix type="wtpruntime">
+ <property name="allowed-types">org.jboss.ide.eclipse.as.runtime.eap.43</property>
+ <property name="eclipse-projects">transform_XML2POJO</property>
+ <property name="required-components">esb</property>
+ <property name="description">This project example requires the JBoss SOA-P 4.3.0 and the runtime name should be "jboss-soa-p.4.3.0 Runtime"</property>
+ </fix>
+ </fixes>
+ </project>
+
+ <project>
+ <category>ESB for SOA-P 4.3</category>
+ <name>transform_XML2XML_date_manipulation</name>
+ <included-projects>transform_XML2XML_date_manipulation,transform_XML2XML_date_manipulation_client </included-projects>
+ <shortDescription>JBoss ESB Smooks XML->XML date-manipulation Example</shortDescription>
+ <description>NOTE: Before import this example, please make sure that there is a runtime named "jboss-soa-p.4.3.0 Runtime" in the workspace.
+ This is another simple sample of how to manually define and apply a Message
+ Transformation within JBoss ESB.
+
+ This sample is an extension of the "transformation_XML2XML_simple"
+ Quickstart, demonstrating how JBoss ESB Transformations can simplify your
+ XSLT transformations by combining the power of XSLT with Java. In this
+ Quickstart, we use Java to perform the ugly string manipulation on the
+ SampleOrder date field (see OrderDate.java) and use XSLT for what it's good at
+ i.e. Templating. Again, the transformed SampleOrder.xml message is just
+ printed to the Java console (message before and after).</description>
+
+ <size>20313</size>
+ <url>
+ http://anonsvn.jboss.org/repos/jbosstools/workspace/Denny/esb-example/tra...
+ </url>
+ <fixes>
+ <fix type="wtpruntime">
+ <property name="allowed-types">org.jboss.ide.eclipse.as.runtime.eap.43</property>
+ <property name="eclipse-projects">transform_XML2XML_date_manipulation</property>
+ <property name="required-components">esb</property>
+ <property name="description">This project example requires the JBoss SOA-P 4.3.0 and the runtime name should be "jboss-soa-p.4.3.0 Runtime"</property>
+ </fix>
+ </fixes>
+ </project>
+
+ <project>
+ <category>ESB for SOA-P 4.3</category>
+ <name>transform_XML2XML_simple</name>
+ <included-projects>transform_XML2XML_simple,transform_XML2XML_simple_client </included-projects>
+ <shortDescription>JBoss ESB Smooks XML->XML Example</shortDescription>
+ <description>NOTE: Before import this example, please make sure that there is a runtime named "jboss-soa-p.4.3.0 Runtime" in the workspace.
+ This is a very basic sample of how to manually define and apply a Message
+ Transformation within JBoss ESB. It applies a very simple XSLT to a
+ SampleOrder.xml message and prints the before and after XML to the console.</description>
+ <size>18168</size>
+
+ <url>
+ http://anonsvn.jboss.org/repos/jbosstools/workspace/Denny/esb-example/tra...
+ </url>
+ <fixes>
+ <fix type="wtpruntime">
+ <property name="allowed-types">org.jboss.ide.eclipse.as.runtime.eap.43</property>
+ <property name="eclipse-projects">transform_XML2XML_simple</property>
+ <property name="required-components">esb</property>
+ <property name="description">This project example requires the JBoss SOA-P 4.3.0 and the runtime name should be "jboss-soa-p.4.3.0 Runtime"</property>
+ </fix>
+ </fixes>
+ </project>
+
+</projects>
14 years, 3 months
JBoss Tools SVN: r25664 - trunk/ws/docs/Web_Service_Test_View/JBoss_Web_Services_User_Guide/en-US.
by jbosstools-commits@lists.jboss.org
Author: benlc
Date: 2010-10-09 09:43:09 -0400 (Sat, 09 Oct 2010)
New Revision: 25664
Modified:
trunk/ws/docs/Web_Service_Test_View/JBoss_Web_Services_User_Guide/en-US/Chapter.xml
Log:
'Testing commit access'
Modified: trunk/ws/docs/Web_Service_Test_View/JBoss_Web_Services_User_Guide/en-US/Chapter.xml
===================================================================
--- trunk/ws/docs/Web_Service_Test_View/JBoss_Web_Services_User_Guide/en-US/Chapter.xml 2010-10-09 08:25:18 UTC (rev 25663)
+++ trunk/ws/docs/Web_Service_Test_View/JBoss_Web_Services_User_Guide/en-US/Chapter.xml 2010-10-09 13:43:09 UTC (rev 25664)
@@ -6,7 +6,7 @@
<chapter id="chap-JBoss_Web_Services_User_Guide-Test_Chapter">
<title>Test Chapter</title>
<para>
- This is a test paragraph
+ This is a test paragraph.
</para>
<section id="sect-JBoss_Web_Services_User_Guide-Test_Chapter-Test_Section_1">
<title>Test Section 1</title>
14 years, 3 months
JBoss Tools SVN: r25663 - trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime.
by jbosstools-commits@lists.jboss.org
Author: Grid.Qian
Date: 2010-10-09 04:25:18 -0400 (Sat, 09 Oct 2010)
New Revision: 25663
Removed:
trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/pom.xml
Log:
JBIDE-6588: del the pom.xml because don't build sucessful in my workspace
Deleted: trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/pom.xml
===================================================================
--- trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/pom.xml 2010-10-09 08:09:15 UTC (rev 25662)
+++ trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/pom.xml 2010-10-09 08:25:18 UTC (rev 25663)
@@ -1,13 +0,0 @@
-<project
-xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>org.jboss.tools.parent.pom</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
- <groupId>org.jboss.tools.bpel.plugins</groupId>
- <artifactId>org.eclipse.bpel.apache.ode.runtime</artifactId>
- <version>0.6.0-SNAPSHOT</version>
- <packaging>eclipse-plugin</packaging>
-</project>
14 years, 3 months
JBoss Tools SVN: r25662 - in trunk/bpel/plugins: org.eclipse.bpel.apache.ode.runtime and 11 other directories.
by jbosstools-commits@lists.jboss.org
Author: Grid.Qian
Date: 2010-10-09 04:09:15 -0400 (Sat, 09 Oct 2010)
New Revision: 25662
Added:
trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/
trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/.classpath
trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/.project
trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/META-INF/
trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/META-INF/MANIFEST.MF
trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/bin/
trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/build.properties
trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/definition/
trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/definition/ode.xml
trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/icons/
trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/icons/obj16/
trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/icons/obj16/ode.gif
trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/plugin.properties
trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/plugin.xml
trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/pom.xml
trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/src/
trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/src/org/
trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/src/org/eclipse/
trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/src/org/eclipse/bpel/
trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/src/org/eclipse/bpel/apache/
trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/src/org/eclipse/bpel/apache/ode/
trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/src/org/eclipse/bpel/apache/ode/runtime/
trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/src/org/eclipse/bpel/apache/ode/runtime/GenericBPELPublisher.java
trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/src/org/eclipse/bpel/apache/ode/runtime/OdeBPELPublisher.java
trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/src/org/eclipse/bpel/apache/ode/runtime/OdePlugin.java
Log:
JBIDE-6588: add ode.runtime plugin into code base
Added: trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/.classpath
===================================================================
--- trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/.classpath (rev 0)
+++ trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/.classpath 2010-10-09 08:09:15 UTC (rev 25662)
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+ <classpathentry kind="src" path="src"/>
+ <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/>
+ <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
+ <classpathentry kind="output" path="bin"/>
+</classpath>
Added: trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/.project
===================================================================
--- trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/.project (rev 0)
+++ trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/.project 2010-10-09 08:09:15 UTC (rev 25662)
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.eclipse.bpel.apache.ode.runtime</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.jdt.core.javabuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>org.eclipse.pde.ManifestBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>org.eclipse.pde.SchemaBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.pde.PluginNature</nature>
+ <nature>org.eclipse.jdt.core.javanature</nature>
+ </natures>
+</projectDescription>
Added: trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/META-INF/MANIFEST.MF
===================================================================
--- trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/META-INF/MANIFEST.MF (rev 0)
+++ trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/META-INF/MANIFEST.MF 2010-10-09 08:09:15 UTC (rev 25662)
@@ -0,0 +1,31 @@
+Manifest-Version: 1.0
+Bundle-ManifestVersion: 2
+Bundle-Name: %pluginName
+Bundle-SymbolicName: org.eclipse.bpel.apache.ode.runtime;singleton:=true
+Bundle-Version: 0.6.0.qualifier
+Bundle-Vendor: %providerName
+Bundle-Localization: plugin
+Require-Bundle: org.eclipse.ui;bundle-version="[3.4.0,4.0.0)",
+ org.eclipse.core.resources;bundle-version="[3.4.0,4.0.0)",
+ org.eclipse.wst.server.core;bundle-version="[1.1.0,2.0.0)",
+ org.eclipse.emf.ecore;bundle-version="[2.4.0,3.0.0)",
+ org.eclipse.jst.server.generic.core;bundle-version="[1.0.305,2.0.0)",
+ org.eclipse.wst.wsdl;bundle-version="[1.1.200,2.0.0)",
+ org.eclipse.bpel.model;bundle-version="0.5.0",
+ org.eclipse.jem.util;bundle-version="[2.0.100,3.0.0)",
+ org.eclipse.core.runtime;bundle-version="[3.4.0,4.0.0)",
+ org.jboss.tools.bpel.runtimes;bundle-version="0.4.0",
+ org.eclipse.jst.server.generic.ui;bundle-version="[1.0.305,2.0.0)",
+ org.eclipse.emf.ecore.xmi;bundle-version="[2.4.0,3.0.0)",
+ org.eclipse.bpel.ui;bundle-version="0.5.0",
+ org.apache.xerces;bundle-version="[2.9.0,3.0.0)",
+ org.eclipse.xsd;bundle-version="[2.4.0,3.0.0)",
+ org.eclipse.jst.server.ui;bundle-version="[1.0.303,2.0.0)",
+ org.eclipse.jst.common.project.facet.core;bundle-version="[1.3.0,2.0.0)",
+ org.eclipse.jst.server.core;bundle-version="[1.1.0,2.0.0)",
+ javax.wsdl;bundle-version="[1.5.0,1.6.0)",
+ org.eclipse.bpel.apache.ode.deploy.model;bundle-version="0.5.0"
+Bundle-Activator: org.eclipse.bpel.apache.ode.runtime.OdePlugin
+Export-Package: org.eclipse.bpel.apache.ode.runtime
+Bundle-ActivationPolicy: lazy
+Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Added: trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/build.properties
===================================================================
--- trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/build.properties (rev 0)
+++ trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/build.properties 2010-10-09 08:09:15 UTC (rev 25662)
@@ -0,0 +1,9 @@
+source.. = src/
+output.. = bin/
+bin.includes = META-INF/,\
+ .,\
+ plugin.xml,\
+ bin/,\
+ definition/,\
+ icons/,\
+ plugin.properties
Added: trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/definition/ode.xml
===================================================================
--- trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/definition/ode.xml (rev 0)
+++ trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/definition/ode.xml 2010-10-09 08:09:15 UTC (rev 25662)
@@ -0,0 +1,64 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<tns:ServerRuntime
+ xmlns:tns="http://eclipse.org/jst/server/generic/ServerTypeDefinition"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://eclipse.org/jst/server/generic/ServerTypeDefinition ServerTypeDefinitionSchema.xsd "
+ name="Apache ODE" version="v1.x">
+ <property id="ode.home"
+ label="%odeHome"
+ type="directory"
+ context="runtime"
+ default="/your_ode_root/" />
+ <property id="tomcat.home"
+ label="%tomcatHome"
+ type="directory"
+ context="runtime"
+ default="/your_tomcat_root/" />
+
+ <property id="port"
+ label="%port"
+ type="string"
+ context="runtime"
+ default="8080" />
+
+ <port>
+ <no>${port}</no>
+ <name>Http</name>
+ <protocol>http</protocol>
+ </port>
+
+ <module>
+ <type>jbt.bpel.module</type>
+ <publishDir>${ode.home}/WEB-INF/processes</publishDir>
+ <publisherReference>org.eclipse.bpel.apache.ode.runtime.publisher</publisherReference>
+ </module>
+
+ <project>
+ <classpathReference>ode.project</classpathReference>
+ </project>
+
+ <start>
+ <mainClass>org.apache.catalina.startup.Bootstrap</mainClass>
+ <workingDirectory>${tomcat.home}</workingDirectory>
+ <programArguments>start</programArguments>
+ <vmParameters>-Dcatalina.home="${tomcat.home}" -Djava.endorsed.dirs="${tomcat.home}\common\endorsed"</vmParameters>
+ <classpathReference>tomcat</classpathReference>
+ </start>
+
+ <stop>
+ <mainClass>org.apache.catalina.startup.Bootstrap</mainClass>
+ <workingDirectory>${tomcat.home}</workingDirectory>
+ <programArguments>stop</programArguments>
+ <vmParameters>-Dcatalina.home="${tomcat.home}" -Djava.endorsed.dirs="${tomcat.home}\common\endorsed"</vmParameters>
+ <classpathReference>tomcat</classpathReference>
+ </stop>
+
+ <classpath id="ode">
+ <archive path="${ode.home}/WEB-INF/lib" />
+ </classpath>
+
+ <classpath id="tomcat">
+ <archive path="${tomcat.home}/bin/bootstrap.jar" />
+ </classpath>
+
+</tns:ServerRuntime>
\ No newline at end of file
Added: trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/icons/obj16/ode.gif
===================================================================
(Binary files differ)
Property changes on: trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/icons/obj16/ode.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/plugin.properties
===================================================================
--- trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/plugin.properties (rev 0)
+++ trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/plugin.properties 2010-10-09 08:09:15 UTC (rev 25662)
@@ -0,0 +1,5 @@
+pluginName = Apache ODE Runtime Adapter
+providerName = JBoss by Red Hat
+odeHome = ODE's home directory:
+tomcatHome = Tomcat's home directory:
+port = Port:
\ No newline at end of file
Added: trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/plugin.xml
===================================================================
--- trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/plugin.xml (rev 0)
+++ trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/plugin.xml 2010-10-09 08:09:15 UTC (rev 25662)
@@ -0,0 +1,114 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?eclipse version="3.2"?>
+<plugin>
+ <extension point="org.eclipse.wst.server.core.runtimeTypes">
+ <runtimeType
+ id="org.eclipse.bpel.apache.ode.runtime.rt"
+ name="Apache Ode 1.x Runtime"
+ description="Apache's BPEL 2.0 execution engine - Runtime"
+ vendor="Apache"
+ version="1.0"
+ class="org.eclipse.jst.server.generic.core.internal.GenericServerRuntime">
+ <moduleType
+ types="jbt.bpel.module"
+ versions="1.1, 2.0"/>
+ </runtimeType>
+ </extension>
+ <extension point="org.eclipse.wst.server.core.serverTypes">
+ <serverType
+ runtime="true"
+ class="org.eclipse.jst.server.generic.core.internal.GenericServer"
+ id="org.eclipse.bpel.apache.ode.runtime.st"
+ initialState="stopped"
+ supportsRemoteHosts="true"
+ runtimeTypeId="org.eclipse.bpel.apache.ode.runtime.rt"
+ description="Apache's BPEL 2.0 execution engine - Server"
+ launchConfigId="org.eclipse.jst.server.generic.core.launchConfigurationType"
+ behaviourClass="org.eclipse.jst.server.generic.core.internal.GenericServerBehaviour"
+ name="Ode v1.x Server"
+ hasConfiguration="false"
+ startTimeout="480000"
+ stopTimeout="60000"
+ launchModes="run, debug"
+ startBeforePublish="true">
+ </serverType>
+ </extension>
+ <extension point="org.eclipse.wst.server.ui.serverImages">
+ <image
+ id="org.eclipse.jst.server.generic.image"
+ icon="icons/obj16/ode.gif"
+ typeIds="org.eclipse.bpel.apache.ode.runtime.rt"/>
+ <image
+ id="org.eclipse.jst.server.generic.image"
+ icon="icons/obj16/ode.gif"
+ typeIds="org.eclipse.bpel.apache.ode.runtime.st"/>
+ </extension>
+
+ <extension point="org.eclipse.jst.server.generic.core.genericpublisher">
+ <genericpublisher
+ class="org.eclipse.bpel.apache.ode.runtime.OdeBPELPublisher"
+ id="org.eclipse.bpel.apache.ode.runtime.publisher"/>
+ </extension>
+ <extension point="org.eclipse.wst.common.project.facet.core.runtimes">
+ <runtime-component-type
+ id="org.eclipse.bpel.apache.ode.runtime.rt"/>
+
+ <runtime-component-version
+ type="org.eclipse.bpel.apache.ode.runtime.rt"
+ version="2.0"/>
+
+ <adapter>
+ <runtime-component
+ id="org.eclipse.bpel.apache.ode.runtime.rt"/>
+ <factory
+ class="org.eclipse.jst.server.core.internal.RuntimeClasspathProvider$Factory"/>
+ <type
+ class="org.eclipse.jst.common.project.facet.core.IClasspathProvider"/>
+ </adapter>
+
+ <supported>
+ <runtime-component
+ id="org.eclipse.bpel.apache.ode.runtime.rt"
+ version="2.0"/>
+ <facet
+ id="jbt.bpel.facet.core"
+ version="2.0"/>
+ </supported>
+ </extension>
+ <extension point="org.eclipse.wst.common.project.facet.ui.images">
+ <image
+ runtime-component-type="org.eclipse.bpel.apache.ode.runtime.rt"
+ path="icons/obj16/ode.gif"/>
+ </extension>
+
+
+ <extension point="org.eclipse.wst.common.project.facet.core.runtimes">
+ <adapter>
+ <runtime-component id="org.eclipse.bpel.apache.ode.runtime.rt"/>
+ <factory class="org.eclipse.jst.server.ui.internal.RuntimeLabelProvider$Factory"/>
+ <type class="org.eclipse.wst.common.project.facet.ui.IRuntimeComponentLabelProvider"/>
+ </adapter>
+ </extension>
+
+ <extension point="org.eclipse.jst.server.core.runtimeFacetMappings">
+ <runtimeFacetMapping
+ runtimeTypeId="org.eclipse.bpel.apache.ode.runtime.rt"
+ runtime-component="org.eclipse.bpel.apache.ode.runtime.rt"
+ version="2.0"/>
+ </extension>
+ <extension point="org.eclipse.jst.server.generic.core.serverdefinition">
+ <serverdefinition id="org.eclipse.bpel.apache.ode.runtime.rt" definitionfile="definition/ode.xml">
+ </serverdefinition>
+ </extension>
+ <extension point="org.eclipse.wst.server.ui.wizardFragments">
+ <fragment
+ id="org.eclipse.jst.server.generic.runtime"
+ typeIds="org.eclipse.bpel.apache.ode.runtime.rt"
+ class="org.eclipse.jst.server.generic.ui.internal.GenericServerRuntimeWizardFragment"/>
+ <fragment
+ id="org.eclipse.jst.server.generic.server"
+ typeIds="org.eclipse.bpel.apache.ode.runtime.st"
+ class="org.eclipse.jst.server.generic.ui.internal.GenericServerWizardFragment"/>
+ </extension>
+
+</plugin>
Added: trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/pom.xml
===================================================================
--- trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/pom.xml (rev 0)
+++ trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/pom.xml 2010-10-09 08:09:15 UTC (rev 25662)
@@ -0,0 +1,13 @@
+<project
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.parent.pom</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools.bpel.plugins</groupId>
+ <artifactId>org.eclipse.bpel.apache.ode.runtime</artifactId>
+ <version>0.6.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>
Added: trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/src/org/eclipse/bpel/apache/ode/runtime/GenericBPELPublisher.java
===================================================================
--- trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/src/org/eclipse/bpel/apache/ode/runtime/GenericBPELPublisher.java (rev 0)
+++ trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/src/org/eclipse/bpel/apache/ode/runtime/GenericBPELPublisher.java 2010-10-09 08:09:15 UTC (rev 25662)
@@ -0,0 +1,135 @@
+/*******************************************************************************
+ * Copyright (c) 2006 University College London Software Systems Engineering
+ * 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:
+ * Bruno Wassermann - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.bpel.apache.ode.runtime;
+
+import java.util.Iterator;
+
+import org.eclipse.core.resources.IFile;
+import org.eclipse.core.runtime.IPath;
+import org.eclipse.core.runtime.IProgressMonitor;
+import org.eclipse.jst.server.generic.core.internal.GenericPublisher;
+import org.eclipse.jst.server.generic.core.internal.GenericServer;
+import org.eclipse.jst.server.generic.servertype.definition.Port;
+import org.eclipse.wst.server.core.IModuleArtifact;
+
+/**
+ * An abstract base class offering some utility methods facilitating the process
+ * of deploying a BPEL process onto a runtime and indicating a publisher of
+ * BPEL processes. This extends the generic server
+ * framework. Implementers of the <code>genericpublishers</code> extension point
+ * wishing to publish BPEL processes onto some runtime, may find it convenient
+ * to sub-class this class.
+ * <p>
+ * The minimum requirement on sub-classes is to provide an implementation of
+ * <code>GenericPublisher{@link #publish(IModuleArtifact[], IProgressMonitor)}</code>,
+ * <code>GenericPublisher{@link #unpublish(IProgressMonitor)}</code> and of
+ * <code></code>
+ * <p>
+ * Clients should not instantiate this class or its sub-classes as they will be
+ * instantiated by the WTP server framework. Clients can make use of any
+ * convenience methods contained in this class (all methods defined directly
+ * on <code>GenericBPELPublisher</code>).
+ *
+ *
+ * @author Bruno Wassermann, written Jun 8, 2006
+ */
+public abstract class GenericBPELPublisher extends GenericPublisher {
+
+// TODO add utility methods that may be useful to concrete implementations
+
+ /**
+ * Displays engine-specific validation warnings and errors in the BPEL
+ * Designer.
+ * <p>
+ * Sub-classes can call this method to provide information
+ * about any problems detected during deployment.
+ */
+ protected final void submitValidationMarkers() {
+ // TODO decide on signature/arguments
+ }
+
+ /**
+ * Provides access to the relevant project in the workspace in order to
+ * store a local copy of a generated deployment archive
+ *
+ * @param deployArchive
+ * @param path should probably be relative from project root and if null
+ * will save archive in project root
+ */
+ protected void storeDeploymentArchive(IFile deployArchive, IPath path) {
+ // TODO figure out whether this is really useful
+ // TODO figure out the signature (should it be a file, what's the best
+ // way to allow specifying an additional path?) - maybe look at some
+ // of the methods in the WTP tutorial.
+ }
+
+ /**
+ * Returns the host part of the server on which module is to be published.
+ * For example, 'localhost'.
+ *
+ * @return <code>String</code> representing host part of server on which
+ * module is to be published. Will return <code>null</code>, if called
+ * before {@link GenericPublisher#initialize()} has been called.
+ */
+ protected String getHost() {
+ return getServer().getServer().getHost();
+ }
+
+ /**
+ * Returns http port defined for the server module is to be published on.
+ * <p>
+ * This replicates {@link GenericServer#getHttpPort()}.
+ *
+ * @return int
+ */
+ protected int getHttpPort() {
+ int port = -1;
+ Iterator pIter = getServer().getServerDefinition().getPort().iterator();
+
+ while (pIter.hasNext()) {
+ Port aPort = (Port) pIter.next();
+
+ if(port == -1) {
+ port = Integer.parseInt(getServer().getServerDefinition().getResolver().resolveProperties(aPort.getNo()));
+ }
+ else if( "http".equals(aPort.getProtocol() ) ) { //$NON-NLS-1$
+ port = Integer.parseInt(aPort.getNo());
+ }
+ }
+ if( port == -1) {
+ port = 8080;
+ }
+ return port;
+ }
+
+ /*
+ * we don't have something like validate in here as we are not the provider
+ * of an extension point, but simply providing some utility methods for
+ * sub-classes to use if they so wish.
+ *
+ * if we had provided our own extension point to do publishing, then
+ * we would probably have specified a validate() method in the abstract base
+ * class so that our framework could call its implementation in extensions.
+ *
+ * If it's just a utility method it should have static methods. Otherwise,
+ * allow it to be sub-classed and declare some methods as abstract to
+ * indicate to sub-classes what they need to implement.
+ *
+ * What is true though is that we cannot call such methods automatically as
+ * we are not really offering an extension point.
+ *
+ * TODO clarify explain this point about usage in the class comment! the methods
+ * will not be called automatically as we are not providing an extension
+ * point as initially expected.
+ */
+
+
+}
Added: trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/src/org/eclipse/bpel/apache/ode/runtime/OdeBPELPublisher.java
===================================================================
--- trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/src/org/eclipse/bpel/apache/ode/runtime/OdeBPELPublisher.java (rev 0)
+++ trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/src/org/eclipse/bpel/apache/ode/runtime/OdeBPELPublisher.java 2010-10-09 08:09:15 UTC (rev 25662)
@@ -0,0 +1,95 @@
+package org.eclipse.bpel.apache.ode.runtime;
+
+/*******************************************************************************
+ * Copyright (c) 2008 IBM Corporation, University of Stuttgart (IAAS) 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:
+ * IBM Corporation, University of Stuttgart (IAAS) - initial API and implementation
+ *******************************************************************************/
+
+import java.io.File;
+
+import org.eclipse.bpel.apache.ode.runtime.GenericBPELPublisher;
+import org.eclipse.core.runtime.CoreException;
+import org.eclipse.core.runtime.IPath;
+import org.eclipse.core.runtime.IProgressMonitor;
+import org.eclipse.core.runtime.IStatus;
+import org.eclipse.core.runtime.Status;
+import org.eclipse.core.runtime.NullProgressMonitor;
+import org.eclipse.jst.server.core.PublishUtil;
+import org.eclipse.wst.server.core.IModule;
+import org.eclipse.wst.server.core.IModuleArtifact;
+import org.eclipse.wst.server.core.IRuntime;
+import org.eclipse.wst.server.core.model.IModuleResource;
+import org.eclipse.wst.server.core.model.ModuleDelegate;
+
+/**
+ * BPEL publisher for Apache ODE.
+ *
+ * @author Tammo van Lessen (IAAS)
+ * @author Simon Moser (IBM)
+ */
+public class OdeBPELPublisher extends GenericBPELPublisher {
+
+ public OdeBPELPublisher() {
+ super();
+ }
+
+ @Override
+ public IStatus[] publish(IModuleArtifact[] artifacts, IProgressMonitor monitor) {
+ // resources will always be null for some weird reason :(
+ // therefore we generate a BPELModuleArtifact
+ // the module id value enables us to get BPEL file path relative to its project
+ IModule[] modules = super.getModule();
+
+ try {
+ IModule last = modules[modules.length-1];
+ IPath root = createDeploymentDestination(last);
+ ModuleDelegate delegate = (ModuleDelegate)last.loadAdapter(ModuleDelegate.class, new NullProgressMonitor());
+ IModuleResource[] resources = delegate.members();
+ PublishUtil.publishFull(resources, root, monitor);
+ } catch( CoreException ce ) {
+ // TODO return bad status
+ }
+ return new IStatus[]{Status.OK_STATUS};
+
+ }
+
+ @Override
+ public IStatus[] unpublish(IProgressMonitor monitor) {
+ IModule[] modules = super.getModule();
+ IModule last = modules[modules.length - 1];
+ IStatus[] result = new Status[modules.length];
+ IPath root = createDeploymentDestination(last);
+ PublishUtil.deleteDirectory(root.toFile(), monitor);
+ return result;
+ }
+
+ /**
+ * This method will create a folder inside the WEB-INF\processes subfolder
+ * of the ODE installation
+ */
+ protected IPath createDeploymentDestination(IModule module) {
+ String moduleName = module.getName();
+ String deployAppName = moduleName;
+
+ // get TOMCAT_HOME
+ IRuntime serverDef = getServerRuntime().getRuntime();
+ IPath tomcatHome = serverDef.getLocation();
+
+ // append ODE's Process target Dir tomcatHome
+ IPath deployTarget = tomcatHome.append("webapps").append("ode")
+ .append("WEB-INF").append("processes").append(deployAppName);
+
+ File f = deployTarget.toFile();
+ if (!f.exists()) {
+ f.mkdir();
+ }
+
+ return deployTarget;
+ }
+}
Added: trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/src/org/eclipse/bpel/apache/ode/runtime/OdePlugin.java
===================================================================
--- trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/src/org/eclipse/bpel/apache/ode/runtime/OdePlugin.java (rev 0)
+++ trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/src/org/eclipse/bpel/apache/ode/runtime/OdePlugin.java 2010-10-09 08:09:15 UTC (rev 25662)
@@ -0,0 +1,41 @@
+package org.eclipse.bpel.apache.ode.runtime;
+
+/*******************************************************************************
+ * Copyright (c) 2008 IBM Corporation, University of Stuttgart (IAAS) 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:
+ * IBM Corporation, University of Stuttgart (IAAS) - initial API and implementation
+ *******************************************************************************/
+
+
+import org.eclipse.ui.plugin.AbstractUIPlugin;
+import org.osgi.framework.BundleContext;
+
+/**
+ * Runtime contributor for Apache ODE.
+ *
+ * @author Tammo van Lessen (IAAS)
+ * @author Simon Moser (IBM)
+ */
+public class OdePlugin extends AbstractUIPlugin {
+ public static final String PLUGIN_ID = "org.eclipse.bpel.apache.ode.runtime";
+ private static OdePlugin plugin;
+
+ public void start(BundleContext context) throws Exception {
+ super.start(context);
+ }
+
+ public void stop(BundleContext context) throws Exception {
+ super.stop(context);
+ plugin = null;
+ }
+
+ public static OdePlugin getDefault() {
+ return plugin;
+ }
+
+}
14 years, 3 months