JBoss Tools SVN: r33705 - in trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi: core/extension/feature and 3 other directories.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2011-08-08 20:32:39 -0400 (Mon, 08 Aug 2011)
New Revision: 33705
Modified:
trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/CDIExtensionManager.java
trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/feature/IBuildParticipantFeature.java
trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/impl/CDIProject.java
trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/scanner/ImplementationCollector.java
trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/scanner/lib/ClassPathMonitor.java
Log:
JBIDE-9484
https://issues.jboss.org/browse/JBIDE-9484
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/CDIExtensionManager.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/CDIExtensionManager.java 2011-08-09 00:07:34 UTC (rev 33704)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/CDIExtensionManager.java 2011-08-09 00:32:39 UTC (rev 33705)
@@ -146,12 +146,6 @@
}
public Set<IBuildParticipantFeature> getBuildParticipantFeatures() {
- if(!featureStorage.containsKey(IBuildParticipantFeature.class)) {
- Set<IBuildParticipantFeature> result = getFeatures(IBuildParticipantFeature.class);
- for (IBuildParticipantFeature f: result) {
- f.setProject(n);
- }
- }
return getFeatures(IBuildParticipantFeature.class);
}
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/feature/IBuildParticipantFeature.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/feature/IBuildParticipantFeature.java 2011-08-09 00:07:34 UTC (rev 33704)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/feature/IBuildParticipantFeature.java 2011-08-09 00:32:39 UTC (rev 33705)
@@ -15,6 +15,7 @@
import org.eclipse.jdt.core.IPackageFragmentRoot;
import org.jboss.tools.cdi.core.CDICoreNature;
import org.jboss.tools.cdi.core.extension.IDefinitionContextExtension;
+import org.jboss.tools.cdi.internal.core.impl.CDIProject;
import org.jboss.tools.cdi.internal.core.scanner.FileSet;
import org.jboss.tools.common.model.XModelObject;
@@ -32,12 +33,6 @@
public interface IBuildParticipantFeature extends ICDIFeature {
/**
- * Sets CDI project access object once per lifetime of this object.
- * @param n
- */
- public void setProject(CDICoreNature n);
-
- /**
* Implementation should create and keep one instance of IDefinitionContextExtension.
*
* @return
@@ -85,6 +80,6 @@
*
* This method corresponds to AfterBeanDiscovery event.
*/
- public void buildBeans();
+ public void buildBeans(CDIProject target);
}
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/impl/CDIProject.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/impl/CDIProject.java 2011-08-09 00:07:34 UTC (rev 33704)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/impl/CDIProject.java 2011-08-09 00:32:39 UTC (rev 33705)
@@ -1043,7 +1043,15 @@
rebuildBeans();
Set<IBuildParticipantFeature> buildParticipants = n.getExtensionManager().getBuildParticipantFeatures();
- for (IBuildParticipantFeature p: buildParticipants) p.buildBeans();
+ for (IBuildParticipantFeature p: buildParticipants) p.buildBeans(this);
+
+ Set<CDICoreNature> ds = n.getCDIProjects(true);
+ for (CDICoreNature c: ds) {
+ Set<IBuildParticipantFeature> bs = c.getExtensionManager().getBuildParticipantFeatures();
+ for (IBuildParticipantFeature bp: bs) {
+ bp.buildBeans(this);
+ }
+ }
CDICoreNature[] ps = n.getDependentProjects().toArray(new CDICoreNature[0]);
for (CDICoreNature p: ps) {
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/scanner/ImplementationCollector.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/scanner/ImplementationCollector.java 2011-08-09 00:07:34 UTC (rev 33704)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/scanner/ImplementationCollector.java 2011-08-09 00:32:39 UTC (rev 33705)
@@ -41,7 +41,7 @@
void process() throws JavaModelException {
for (TypeDefinition typeDef: typeDefinitions) {
IType type = typeDef.getType();
- if(type == null || type.isInterface()) continue;
+ if(type == null || !type.exists() || type.isInterface()) continue;
if(!mayBeRelevant(type)) continue;
Set<IParametedType> types = typeDef.getInheritedTypes();
for (IParametedType t: types) {
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/scanner/lib/ClassPathMonitor.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/scanner/lib/ClassPathMonitor.java 2011-08-09 00:07:34 UTC (rev 33704)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/scanner/lib/ClassPathMonitor.java 2011-08-09 00:32:39 UTC (rev 33705)
@@ -97,7 +97,6 @@
for (FileAnyImpl s: servicesInSrc.keySet()) {
IResource r = (IResource)s.getAdapter(IResource.class);
if(r != null && r.exists()) {
- System.out.println(project.getProject() + ":" + r);
project.getExtensionManager().setRuntimes(r.getFullPath().toString(), readRuntimesInService(s));
}
}
14 years, 8 months
JBoss Tools SVN: r33704 - trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2011-08-08 20:07:34 -0400 (Mon, 08 Aug 2011)
New Revision: 33704
Modified:
trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/publish_or_unpublish_a_resource-task.xml
Log:
updated id
Modified: trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/publish_or_unpublish_a_resource-task.xml
===================================================================
--- trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/publish_or_unpublish_a_resource-task.xml 2011-08-09 00:06:57 UTC (rev 33703)
+++ trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/publish_or_unpublish_a_resource-task.xml 2011-08-09 00:07:34 UTC (rev 33704)
@@ -46,7 +46,7 @@
<para>
If your server instance does not permit the versioning of files, reguardless of the settings you choose in the preferences for ModeShape, the checkbox labelled <guilabel>Version the published files (change default in your preferences)</guilabel> will be greyed out.
</para>
- <figure id="ModeShape_publishing_wizard">
+ <figure id="ModeShape_publishing_wizard-no_versioning">
<title>ModeShape publishing wizard - server without versioning ability</title>
<mediaobject>
<imageobject>
14 years, 8 months
JBoss Tools SVN: r33703 - branches/jbosstools-3.2.x/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2011-08-08 20:06:57 -0400 (Mon, 08 Aug 2011)
New Revision: 33703
Modified:
branches/jbosstools-3.2.x/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/publish_or_unpublish_a_resource-task.xml
Log:
updated id
Modified: branches/jbosstools-3.2.x/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/publish_or_unpublish_a_resource-task.xml
===================================================================
--- branches/jbosstools-3.2.x/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/publish_or_unpublish_a_resource-task.xml 2011-08-09 00:02:53 UTC (rev 33702)
+++ branches/jbosstools-3.2.x/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/publish_or_unpublish_a_resource-task.xml 2011-08-09 00:06:57 UTC (rev 33703)
@@ -46,7 +46,7 @@
<para>
If your server instance does not permit the versioning of files, reguardless of the settings you choose in the preferences for ModeShape, the checkbox labelled <guilabel>Version the published files (change default in your preferences)</guilabel> will be greyed out.
</para>
- <figure id="ModeShape_publishing_wizard">
+ <figure id="ModeShape_publishing_wizard-no_versioning">
<title>ModeShape publishing wizard - server without versioning ability</title>
<mediaobject>
<imageobject>
14 years, 8 months
JBoss Tools SVN: r33702 - in trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US: images and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2011-08-08 20:02:53 -0400 (Mon, 08 Aug 2011)
New Revision: 33702
Modified:
trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/Book_Info.xml
trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/images/Publish_Wizard.png
Log:
updated for TOOLSDOC-231
Modified: trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/Book_Info.xml
===================================================================
--- trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/Book_Info.xml 2011-08-09 00:02:08 UTC (rev 33701)
+++ trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/Book_Info.xml 2011-08-09 00:02:53 UTC (rev 33702)
@@ -9,7 +9,7 @@
<productname>JBoss Developer Studio</productname>
<productnumber>4.1</productnumber>
<edition>4.1.0</edition>
- <pubsnumber>2</pubsnumber>
+ <pubsnumber>3</pubsnumber>
<abstract>
<para>
ModeShape Tools provides the ability to publish and remove content from ModeShape repositories.
Modified: trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/images/Publish_Wizard.png
===================================================================
(Binary files differ)
14 years, 8 months
JBoss Tools SVN: r33701 - in branches/jbosstools-3.2.x/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US: images and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2011-08-08 20:02:08 -0400 (Mon, 08 Aug 2011)
New Revision: 33701
Modified:
branches/jbosstools-3.2.x/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/Book_Info.xml
branches/jbosstools-3.2.x/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/images/Publish_Wizard.png
Log:
updated for TOOLSDOC-231
Modified: branches/jbosstools-3.2.x/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/Book_Info.xml
===================================================================
--- branches/jbosstools-3.2.x/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/Book_Info.xml 2011-08-08 23:46:43 UTC (rev 33700)
+++ branches/jbosstools-3.2.x/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/Book_Info.xml 2011-08-09 00:02:08 UTC (rev 33701)
@@ -9,7 +9,7 @@
<productname>JBoss Developer Studio</productname>
<productnumber>4.1</productnumber>
<edition>4.1.0</edition>
- <pubsnumber>2</pubsnumber>
+ <pubsnumber>3</pubsnumber>
<abstract>
<para>
ModeShape Tools provides the ability to publish and remove content from ModeShape repositories.
Modified: branches/jbosstools-3.2.x/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/images/Publish_Wizard.png
===================================================================
(Binary files differ)
14 years, 8 months
JBoss Tools SVN: r33700 - in trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US: images and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2011-08-08 19:46:43 -0400 (Mon, 08 Aug 2011)
New Revision: 33700
Added:
trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/images/Publish_Wizard-no_versioning.png
Modified:
trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/publish_or_unpublish_a_resource-task.xml
Log:
updated for TOOLSDOC-231
Added: trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/images/Publish_Wizard-no_versioning.png
===================================================================
(Binary files differ)
Property changes on: trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/images/Publish_Wizard-no_versioning.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Modified: trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/publish_or_unpublish_a_resource-task.xml
===================================================================
--- trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/publish_or_unpublish_a_resource-task.xml 2011-08-08 23:44:20 UTC (rev 33699)
+++ trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/publish_or_unpublish_a_resource-task.xml 2011-08-08 23:46:43 UTC (rev 33700)
@@ -40,6 +40,20 @@
<para>
Publishing to a <guilabel>Publish Area</guilabel> will automatically sequence your files to extract useful information and make it available to our repository users. Extracted information depends upon the type of file and the configuration of the ModeShape repository. The location where files will be published is constructed by appending the server URL, the names of the JCR repository and workspace, the path to the publish area, and the path of the files and folders within your Eclipse workspace.
</para>
+ <para>
+ As ModeShape now allows for the versioning of pubilshed files you will notice a checkbox labelled <guilabel>Version the published files (change default in your preferences)</guilabel>. If you have selected to allow for file versioning in your ModeShape preferences then this checkbox will automatically be checked.
+ </para>
+ <para>
+ If your server instance does not permit the versioning of files, reguardless of the settings you choose in the preferences for ModeShape, the checkbox labelled <guilabel>Version the published files (change default in your preferences)</guilabel> will be greyed out.
+ </para>
+ <figure id="ModeShape_publishing_wizard">
+ <title>ModeShape publishing wizard - server without versioning ability</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/Publish_Wizard-no_versioning.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
<warning>
<para>
When performing a publish operation, make sure you are aware of the following:
14 years, 8 months
JBoss Tools SVN: r33699 - in branches/jbosstools-3.2.x/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US: images and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2011-08-08 19:44:20 -0400 (Mon, 08 Aug 2011)
New Revision: 33699
Added:
branches/jbosstools-3.2.x/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/images/Publish_Wizard-no_versioning.png
Modified:
branches/jbosstools-3.2.x/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/publish_or_unpublish_a_resource-task.xml
Log:
updated for TOOLSDOC-231
Added: branches/jbosstools-3.2.x/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/images/Publish_Wizard-no_versioning.png
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.2.x/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/images/Publish_Wizard-no_versioning.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Modified: branches/jbosstools-3.2.x/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/publish_or_unpublish_a_resource-task.xml
===================================================================
--- branches/jbosstools-3.2.x/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/publish_or_unpublish_a_resource-task.xml 2011-08-08 22:51:41 UTC (rev 33698)
+++ branches/jbosstools-3.2.x/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/publish_or_unpublish_a_resource-task.xml 2011-08-08 23:44:20 UTC (rev 33699)
@@ -40,6 +40,20 @@
<para>
Publishing to a <guilabel>Publish Area</guilabel> will automatically sequence your files to extract useful information and make it available to our repository users. Extracted information depends upon the type of file and the configuration of the ModeShape repository. The location where files will be published is constructed by appending the server URL, the names of the JCR repository and workspace, the path to the publish area, and the path of the files and folders within your Eclipse workspace.
</para>
+ <para>
+ As ModeShape now allows for the versioning of pubilshed files you will notice a checkbox labelled <guilabel>Version the published files (change default in your preferences)</guilabel>. If you have selected to allow for file versioning in your ModeShape preferences then this checkbox will automatically be checked.
+ </para>
+ <para>
+ If your server instance does not permit the versioning of files, reguardless of the settings you choose in the preferences for ModeShape, the checkbox labelled <guilabel>Version the published files (change default in your preferences)</guilabel> will be greyed out.
+ </para>
+ <figure id="ModeShape_publishing_wizard">
+ <title>ModeShape publishing wizard - server without versioning ability</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/Publish_Wizard-no_versioning.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
<warning>
<para>
When performing a publish operation, make sure you are aware of the following:
14 years, 8 months
JBoss Tools SVN: r33698 - in branches/jbosstools-3.2.x/esb/docs/esb_ref_guide: en-US and 3 other directories.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2011-08-08 18:51:41 -0400 (Mon, 08 Aug 2011)
New Revision: 33698
Modified:
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/Book_Info.xml
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/ESB_Tools_Reference_Guide.ent
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/ESB_Tools_Reference_Guide.xml
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/Feedback.xml
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/Preface.xml
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/Revision_History.xml
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_editor/01_esb_tree_view.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_editor/01a_esb_tree_view_and_links.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_editor/01b_esb_tree_view_and_links.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_editor/02_esb_source_view.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_editor/03_esb_outline_view.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_editor/04_esb_add_provider.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_editor/05_esb_add_service.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_editor/06_esb_add_listener.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_editor/06a_esb_filter.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_editor/11_esb_editor.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_editor/12_esb_editor.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_editor/12a_esb_editor.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_editor/12b_esb_editor.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_editor/13_esb_editor.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_editor/14_esb_editor.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/01_create_esb_project.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/02_create_esb_project.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/02a_create_esb_project.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/02b_create_esb_project.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/03_create_esb_project.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/04_create_esb_project.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/05_esb_project_example.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/05a_esb_project_example.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/06_esb_project_example.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/07_esb_project_example.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/08_esb_project_deploy.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/09_esb_runtime_new.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/10_esb_runtime.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/11_esb_runtime_new.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/13NewServerRuntimeEnv.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/14typeOfRuntime.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/15AddNew.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/16HelloworldProjects.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/17_Add_new_libraries.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/18_select_libraries.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/19_select_runtime.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/20_classpath_container.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/21_source.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/22_Javadoc.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/24_export_button.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/25_esb_file.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/26_esb_export.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_support/01_create_esb.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_support/02_create_esb.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_support/03_create_esb.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_support/04_create_esb.png
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/introduction.xml
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/master.xml
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/reference.xml
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/summary.xml
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/tasks.xml
branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/pom.xml
Log:
updated
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/Book_Info.xml
===================================================================
--- branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/Book_Info.xml 2011-08-08 22:49:00 UTC (rev 33697)
+++ branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/Book_Info.xml 2011-08-08 22:51:41 UTC (rev 33698)
@@ -5,9 +5,9 @@
<title>ESB Tools Reference Guide</title>
<subtitle>Provides information relating to the ESB Tools set.</subtitle>
<productname>JBoss Developer Studio</productname>
- <productnumber>4.0</productnumber>
- <edition>4.0.0</edition>
- <pubsnumber>5</pubsnumber>
+ <productnumber>4.1</productnumber>
+ <edition>4.1.0</edition>
+ <pubsnumber>2</pubsnumber>
<abstract>
<para>The ESB Tools Reference Guide explains how to use the ESB Tools to create ESB files quickly and with precision.</para>
</abstract>
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/ESB_Tools_Reference_Guide.ent
===================================================================
--- branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/ESB_Tools_Reference_Guide.ent 2011-08-08 22:49:00 UTC (rev 33697)
+++ branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/ESB_Tools_Reference_Guide.ent 2011-08-08 22:51:41 UTC (rev 33698)
@@ -1,4 +1,7 @@
<!ENTITY PRODUCT "JBoss">
<!ENTITY BOOKID "ESB_Tools_Reference_Guide">
-<!ENTITY YEAR "2010">
+<!ENTITY YEAR "2011">
<!ENTITY HOLDER "Red Hat">
+<!ENTITY BZPRODUCT "JBoss Developer Studio">
+<!ENTITY BZCOMPONENT "ESB Tools Reference Guide">
+<!ENTITY BZURL "<ulink url='https://bugzilla.redhat.com/enter_bug.cgi?product=JBoss%20Develope...'>http://bugzilla.redhat.com/</ulink>">
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/ESB_Tools_Reference_Guide.xml
===================================================================
--- branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/ESB_Tools_Reference_Guide.xml 2011-08-08 22:49:00 UTC (rev 33697)
+++ branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/ESB_Tools_Reference_Guide.xml 2011-08-08 22:51:41 UTC (rev 33698)
@@ -10,5 +10,6 @@
<xi:include href="summary.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
<!--<xi:include href="esb_support.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
<xi:include href="esb_editor.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include> -->
+<xi:include href="Feedback.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="Revision_History.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
</book>
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/Feedback.xml
===================================================================
--- branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/Feedback.xml 2011-08-08 22:49:00 UTC (rev 33697)
+++ branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/Feedback.xml 2011-08-08 22:51:41 UTC (rev 33698)
@@ -1,20 +1,92 @@
<?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 "../Document_Conventions.ent">
+%BOOK_ENTITIES;
+]>
+<appendix id="sect_JBoss-Getting_Help_and_Giving_Feedback" lang="en-US">
+ <title>Getting Help and Giving Feedback</title>
+ <section id="sect_JBoss-Do_You_Need_Help">
+ <title>Do You Need Help?</title>
+ <indexterm>
+ <primary>help</primary>
+ <secondary>getting help</secondary>
-<section id="sect-Beginners_Guide-We_Need_Feedback" lang="en-US">
- <title>We Need Feedback!</title>
- <indexterm>
- <primary>feedback</primary>
- <secondary>contact information for this manual</secondary>
- </indexterm>
- <para>
- If you find a typographical error in this manual, or if you have thought of a way to make this manual better, we would love to hear from you! Please submit a report in JIRA against JBoss Developer Studio: <ulink url="https://jira.jboss.org/jira/secure/CreateIssue.jspa?pid=12310500&issu...">https://jira.jboss.org/jira/secure/CreateIssue.jspa?pid=12310500&issu...</ulink>
- </para>
- <para>
- When submitting a bug report, be sure to mention the manual's name and to select the "documentation" component.
- </para>
- <para>
- If you have a suggestion for improving the documentation, try to be as specific as possible when describing it. If you have found an error, please include the section number and some of the surrounding text so we can find it easily.
- </para>
-</section>
+ </indexterm>
+ <para>
+ If you experience difficulty with a procedure described in this documentation, visit the Red Hat Customer Portal at <ulink url="http://access.redhat.com" />. Through the customer portal, you can:
+ </para>
+ <itemizedlist>
+ <listitem>
+ <para>
+ search or browse through a knowledgebase of technical support articles about Red Hat products.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ submit a support case to Red Hat Global Support Services (GSS).
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ access other product documentation.
+ </para>
+
+ </listitem>
+
+ </itemizedlist>
+ <para>
+ Red Hat also hosts a large number of electronic mailing lists for discussion of Red Hat software and technology. You can find a list of publicly available mailing lists at <ulink url="https://www.redhat.com/mailman/listinfo" />. Click on the name of any mailing list to subscribe to that list or to access the list archives.
+ </para>
+
+ </section>
+
+ <section id="jboss-feedback">
+ <title>Give us Feedback</title>
+ <!-- NOTE: You will need the following entities defined in your .ent file.
+ You will need to replace _YOUR_PRODUCT_HERE_, _YOUR_COMPONENT_
+ and _YOUR_SUMMARY_ - entities are not replaced in URLs.
+ <!ENTITY PRODUCT "JBoss Product Name">
+ <!ENTITY BZCOMPONENT "doc-triage">
+ <!ENTITY BZURL "<ulink url='https://bugzilla.example.com/enter_bug.cgi?product=_YOUR_PRODUCT_HERE_&am...'>http://bugzilla.redhat.com/</ulink>">
+
+ These entities should not affect translated documents, since Bugzilla is not localised.
+ --> <indexterm>
+ <primary>feedback</primary>
+ <secondary>contact information for this manual</secondary>
+
+ </indexterm>
+ <para>
+ If you find a typographical error, or know how this guide can be improved, we would love to hear from you. Submit a report in Bugzilla against the product <literal>&BZPRODUCT;</literal> and the component <literal>&BZCOMPONENT;</literal>. The following link will take you to a pre-filled bug report for this product: &BZURL;.
+ </para>
+ <para>
+ Fill out the following template in Bugzilla's <literal>Description</literal> field. Be as specific as possible when describing the issue; this will help ensure that we can fix it quickly.
+ </para>
+
+<screen>Document URL:
+
+
+Section Number and Name:
+
+
+Describe the issue:
+
+
+Suggestions for improvement:
+
+
+Additional information:
+
+
+</screen>
+ <para>
+ Be sure to give us your name so that you can receive full credit for reporting the issue.
+ </para>
+
+ </section>
+
+
+</appendix>
+
+
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/Preface.xml
===================================================================
--- branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/Preface.xml 2011-08-08 22:49:00 UTC (rev 33697)
+++ branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/Preface.xml 2011-08-08 22:51:41 UTC (rev 33698)
@@ -8,9 +8,5 @@
<para>
This manual uses several conventions to highlight certain words and phrases and draw attention to specific pieces of information. To get more information on these conventions please refer to the <guilabel>Document Conventions</guilabel> manual, which can be found on the <ulink url="http://docs.redhat.com/docs/en-US/JBoss_Developer_Studio/index.html">Red Hat Documentation</ulink> website under the <guilabel>JBoss Developer Studio</guilabel> section.
</para>
- <!--<xi:include href="Common_Content/Conventions.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href="Feedback.xml" xmlns:xi="http://www.w3.org/2001/XInclude"><xi:fallback xmlns:xi="http://www.w3.org/2001/XInclude"><xi:include href="Common_Content/Feedback.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- </xi:fallback>
- </xi:include>-->
</preface>
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/Revision_History.xml
===================================================================
--- branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/Revision_History.xml 2011-08-08 22:49:00 UTC (rev 33697)
+++ branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/Revision_History.xml 2011-08-08 22:51:41 UTC (rev 33698)
@@ -2,31 +2,37 @@
<!DOCTYPE Book PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
]>
<appendix>
- <title>Revision History</title>
- <simpara>
- <revhistory>
- <revision>
- <revnumber>1</revnumber><date>Wed Jun 09 2010</date>
- <author>
- <firstname>JBoss Tools</firstname><surname>Documentation Team</surname><email>irooskov(a)redhat.com</email>
- </author>
- <revdescription>
- <simplelist>
- <member>Action section added and general updates</member>
- </simplelist>
- </revdescription>
- </revision>
- <revision>
- <revnumber>0</revnumber><date>Fri Nov 20 2009</date>
- <author>
- <firstname>Isaac</firstname><surname>Rooskov</surname><email>irooskov(a)redhat.com</email>
- </author>
- <revdescription>
- <simplelist>
- <member>Initial creation of book by publican</member>
- </simplelist>
- </revdescription>
- </revision>
- </revhistory>
- </simpara>
+ <title>Revision History</title>
+ <simpara>
+ <revhistory>
+ <revision>
+ <revnumber>1-0</revnumber>
+ <date>Wed Jun 09 2010</date>
+ <author>
+ <firstname>JBoss Tools</firstname>
+ <surname>Documentation Team</surname>
+ <email>irooskov(a)redhat.com</email>
+ </author>
+ <revdescription>
+ <simplelist>
+ <member>Action section added and general updates</member>
+ </simplelist>
+ </revdescription>
+ </revision>
+ <revision>
+ <revnumber>0-0</revnumber>
+ <date>Fri Nov 20 2009</date>
+ <author>
+ <firstname>Isaac</firstname>
+ <surname>Rooskov</surname>
+ <email>irooskov(a)redhat.com</email>
+ </author>
+ <revdescription>
+ <simplelist>
+ <member>Initial creation of book by publican</member>
+ </simplelist>
+ </revdescription>
+ </revision>
+ </revhistory>
+ </simpara>
</appendix>
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_editor/01_esb_tree_view.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_editor/01a_esb_tree_view_and_links.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_editor/01b_esb_tree_view_and_links.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_editor/02_esb_source_view.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_editor/03_esb_outline_view.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_editor/04_esb_add_provider.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_editor/05_esb_add_service.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_editor/06_esb_add_listener.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_editor/06a_esb_filter.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_editor/11_esb_editor.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_editor/12_esb_editor.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_editor/12a_esb_editor.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_editor/12b_esb_editor.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_editor/13_esb_editor.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_editor/14_esb_editor.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/01_create_esb_project.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/02_create_esb_project.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/02a_create_esb_project.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/02b_create_esb_project.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/03_create_esb_project.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/04_create_esb_project.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/05_esb_project_example.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/05a_esb_project_example.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/06_esb_project_example.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/07_esb_project_example.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/08_esb_project_deploy.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/09_esb_runtime_new.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/10_esb_runtime.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/11_esb_runtime_new.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/13NewServerRuntimeEnv.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/14typeOfRuntime.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/15AddNew.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/16HelloworldProjects.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/17_Add_new_libraries.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/18_select_libraries.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/19_select_runtime.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/20_classpath_container.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/21_source.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/22_Javadoc.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/24_export_button.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/25_esb_file.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_project/26_esb_export.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_support/01_create_esb.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_support/02_create_esb.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_support/03_create_esb.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/images/esb_support/04_create_esb.png
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/introduction.xml
===================================================================
--- branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/introduction.xml 2011-08-08 22:49:00 UTC (rev 33697)
+++ branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/introduction.xml 2011-08-08 22:51:41 UTC (rev 33698)
@@ -1,104 +1,117 @@
<?xml version="1.0" encoding="UTF-8"?>
<chapter id="introduction">
- <?dbhtml filename="introduction.html"?>
+ <?dbhtml filename="introduction.html"?>
- <chapterinfo>
- <keywordset>
- <keyword>JBoss Developer Studio</keyword>
- <keyword>Eclipse</keyword>
- <keyword>Java</keyword>
- <keyword>JBoss</keyword>
- <keyword>JBoss Tools</keyword>
- <keyword>JBDS</keyword>
- <keyword>ESB</keyword>
- </keywordset>
- </chapterinfo>
+ <chapterinfo>
+ <keywordset>
+ <keyword>JBoss Developer Studio</keyword>
+ <keyword>Eclipse</keyword>
+ <keyword>Java</keyword>
+ <keyword>JBoss</keyword>
+ <keyword>JBoss Tools</keyword>
+ <keyword>JBDS</keyword>
+ <keyword>ESB</keyword>
+ </keywordset>
+ </chapterinfo>
- <title>Introduction</title>
+ <title>Introduction</title>
- <section>
+ <section>
- <title>What is ESB and JBoss ESB Tools?</title>
+ <title>What is ESB and JBoss ESB Tools?</title>
- <para>ESB (Enterprise Service Bus) is an abstraction layer on top of the implementation of an
- enterprise messaging system that provides the features that Service Oriented
- Architectures may be implemented with.</para>
- <para>If you want to develop applications using ESB technology <property>JBoss ESB</property> also meets your
- needs. Read more about <property>Jboss ESB</property> at <ulink url="http://www.jboss.org/jbossesb">http://www.jboss.org/jbossesb</ulink>.</para>
-
+ <para>
+ ESB (Enterprise Service Bus) is an abstraction layer on top of the implementation of an enterprise messaging system that provides the features that Service Oriented Architectures may be implemented with.
+ </para>
+ <para>
+ If you want to develop applications using ESB technology <property>JBoss ESB</property> also meets your needs. Read more about <property>JBoss ESB</property> at <ulink url="http://www.jboss.org/jbossesb">http://www.jboss.org/jbossesb</ulink>.
+ </para>
- <para><property>JBoss ESB Tools</property> provide an ESB editor and necessary wizard for creating an ESB
- file.</para>
- <para>In this guide we provide you with the information on <property>JBoss ESB Tools</property> (installation, configuration and deployment) and usage of ESB Editor which allows you to
- develop an ESB file much faster and with far fewer errors so sparing your time.</para>
- </section>
+ <para><property>JBoss ESB Tools</property> provides an ESB editor and wizard for creating an ESB file.</para>
+ <para>
+ This guide will provide you with the information you need to install, configure and deploy <property>JBoss ESB Tools</property>. Information will also be provided on the use of the ESB Editor, which allows you to quickly develop an ESB file with fewer errors.
+ </para>
-<section>
- <title>Key Features of ESB Tools</title>
- <para>For a start, we propose you to look through the table of main features of ESB plugin:</para>
+ </section>
- <table>
-
- <title>Key Functionality of ESB Tools</title>
- <tgroup cols="3">
-
- <colspec colnum="1" align="left" colwidth="2*"/>
- <colspec colnum="2" colwidth="4*"/>
- <colspec colnum="3" align="left" colwidth="2*"/>
-
- <thead>
- <row>
- <entry>Feature</entry>
- <entry>Benefit</entry>
- <entry>Chapter</entry>
- </row>
- </thead>
-
- <tbody>
-
- <row>
- <entry><para>JBoss Tools Project Examples Wizard</para></entry>
- <entry><para>Some kinds of projects with predefined structure are available for usage.</para></entry>
- <entry>
- <xref linkend="ESB_project_wizard"/>
- </entry>
- </row>
-
- <row>
- <entry><para>JBoss Enterprise SOA Platform</para></entry>
- <entry><para>The SOA Platform integrates specific versions of JBoss ESB, jBPM, Drools and the JBoss Enterprise Application Platform that are certified to work together in a single supported enterprise distribution.</para></entry>
- <entry>
- <xref linkend="using_SOA"/>
- </entry>
- </row>
-
- <row>
- <entry><para>ESB Editor</para></entry>
- <entry><para>JBoss ESB tooling has powerful editor features including syntax validation, support for XML Schema and other.</para></entry>
+ <section>
+ <title>Key Features of ESB Tools</title>
+ <para>The table below lists the main features of the ESB plugin:</para>
+
+ <table>
+
+ <title>Key Functionality of ESB Tools</title>
+ <tgroup cols="3">
+
+ <colspec colnum="1" align="left" colwidth="2*"/>
+ <colspec colnum="2" colwidth="4*"/>
+ <colspec colnum="3" align="left" colwidth="2*"/>
+
+ <thead>
+ <row>
+ <entry>Feature</entry>
+ <entry>Benefit</entry>
+ <entry>Chapter</entry>
+ </row>
+ </thead>
+
+ <tbody>
+
+ <row>
+ <entry>
+ <para>JBoss Tools Project Examples Wizard</para>
+ </entry>
+ <entry>
+ <para>Quickly create example projects with a predefined structure.</para>
+ </entry>
+ <entry>
+ <xref linkend="ESB_project_wizard"/>
+ </entry>
+ </row>
+
+ <row>
+ <entry>
+ <para>JBoss Enterprise SOA Platform</para>
+ </entry>
+ <entry>
+ <para>
+ The SOA Platform integrates specific versions of JBoss ESB, jBPM, Drools and the JBoss Enterprise Application Platform that are certified to work together in a single supported enterprise distribution.
+ </para>
+ </entry>
+ <entry>
+ <xref linkend="using_SOA"/>
+ </entry>
+ </row>
+
+ <row>
+ <entry>
+ <para>ESB Editor</para>
+ </entry>
+ <entry>
+ <para>JBoss ESB tooling includes a powerful editor with features including syntax validation, support for XML Schema and more.</para>
+ </entry>
<!-- <entry>
<xref linkend="esb_editor">
</entry> -->
- </row>
-
- </tbody>
-
- </tgroup>
- </table>
+ </row>
-</section>
-
- <section>
- <title>Requirements and Installation</title>
-
- <para>This section will provide you with the information on how to install
- JBoss ESB plugin into Eclipse.</para>
-
- <para>ESB Tools come as one module of the JBoss Tools project. Since ESB Tools have a
+ </tbody>
+
+ </tgroup>
+ </table>
+
+ </section>
+
+ <!--<section>
+ <title>Requirements and Installation</title>
+
+ <para>This section will provide you with the information on how to install JBoss ESB plugin into Eclipse.</para>
+
+ <para>ESB Tools come as one module of the JBoss Tools project. Since ESB Tools have a
dependence on other JBoss Tools modules we recommend you to install a bundle
of all <ulink url="http://labs.jboss.com/tools/download.html">JBoss
- Tools plug-ins</ulink>. You can find all necessary installation instructions on JBoss Wiki in the <ulink url="http://www.jboss.org/tools/download/installation"
- >InstallingJBossTools</ulink> section.</para>
- </section>
-
+ Tools plug-ins</ulink>. You can find all necessary installation instructions on JBoss Wiki in the <ulink url="http://www.jboss.org/tools/download/installation">InstallingJBossTools</ulink> section.</para>
+ </section>-->
+
</chapter>
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/master.xml
===================================================================
--- branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/master.xml 2011-08-08 22:49:00 UTC (rev 33697)
+++ branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/master.xml 2011-08-08 22:51:41 UTC (rev 33698)
@@ -43,18 +43,19 @@
<year>2008</year>
<year>2009</year>
<year>2010</year>
+ <year>2011</year>
<holder>JBoss by Red Hat</holder>
</copyright>
<releaseinfo>
Version: 1.3.1.GA
</releaseinfo>
-<abstract>
+<!--<abstract>
<title/>
<para>
<ulink url="http://download.jboss.org/jbosstools/nightly-docs/en/esb_ref_guide/pdf/ES...">PDF version</ulink>
</para>
-</abstract>
+</abstract>-->
</bookinfo>
<toc/>
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/reference.xml
===================================================================
--- branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/reference.xml 2011-08-08 22:49:00 UTC (rev 33697)
+++ branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/reference.xml 2011-08-08 22:51:41 UTC (rev 33698)
@@ -96,7 +96,7 @@
</figure>
<para>Adding, editing or deleting of some artifacts operations are available right in the
- <property>Tree view</property> . Right-click any node and select one of the
+ <property>Tree view</property>. Right-click any node and select one of the
available actions in the context menu. For example, you can easily add a new Provider:</para>
<para/>
<figure>
@@ -176,7 +176,7 @@
<note>
<title>Note:</title>
- <para>Some new components are available to support ESB 4.7,such as:
+ <para>Some new components are available to support ESB 4.7, such as:
new actions (XsltAction, PersistAction, BpmProcessor, ScriptingAction),
new processors (EJBProcessor), new routers (HttpRouter, JMSRouter, EmailRouter).
</para>
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/summary.xml
===================================================================
--- branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/summary.xml 2011-08-08 22:49:00 UTC (rev 33697)
+++ branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/summary.xml 2011-08-08 22:51:41 UTC (rev 33698)
@@ -21,7 +21,7 @@
</listitem>
<listitem>
<para>
- <ulink url="http://wiki.jboss.org/wiki/JBossESB">JBoss Wiki</ulink>
+ <ulink url="http://community.jboss.org/en/wiki">JBoss Wiki</ulink>
</para>
</listitem>
<listitem>
@@ -37,4 +37,4 @@
> JBoss Tools nightly documentation page</ulink>.</para>
</section>
-</chapter>
\ No newline at end of file
+</chapter>
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/tasks.xml
===================================================================
--- branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/tasks.xml 2011-08-08 22:49:00 UTC (rev 33697)
+++ branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/en-US/tasks.xml 2011-08-08 22:51:41 UTC (rev 33698)
@@ -58,7 +58,7 @@
</imageobject>
</mediaobject>
</figure>
- <para>By clicking <emphasis>Modify</emphasis> button you can open <emphasis>Project Facets Wizard</emphasis> page,where you can select
+ <para>By clicking the <guibutton>Modify</guibutton> button you can open <emphasis>Project Facets Wizard</emphasis> page, where you can select
facets that should be enabled for this project.
On the <emphasis>Project Facets Wizard</emphasis> page you can also configure runtime for the application</para>
<figure>
@@ -83,18 +83,16 @@
<para>Next step provides you an opportunity to configure your project for building a java application</para>
- <para> Clicking <guibutton>Next</guibutton> on this form brings you to the ESB facet installation page where you can
- specify the ESB Content Directory. ESB Content Directory is a folder that contains the most of
- artifacts that an ESB archive needs. You also can configure ESB libraries to the project by selecting a ESB runtime using one of the options:
- </para>
- <para>1. Use <emphasis>
- <property>Server Supplied ESB Runtime</property>
- </emphasis>
-
+ <para>
+ Clicking the <guibutton>Next</guibutton> button on this form brings you to the ESB facet installation page where you can specify the ESB Content Directory. ESB Content Directory is a folder that contains the most of artifacts that an ESB archive needs. You also can configure ESB libraries to the project by selecting a ESB runtime using one of the options:
</para>
- <para> 2. Select a ESB runtime from the JBoss ESB runtime list predefined in the preferences. If you choose the first option, make sure that the project has the Target JBoss Runtime set and this runtime has a ESB runtime installed.
- </para>
- <para>3. Choose ESB Config Vertion. From the version 3.1.0 JBoss ESB Tools supports three different jboss-esb.xsd versions: jbossesb-1.0.1.xsd, jbossesb-1.1.0.xsd and jbossesb-1.2.0.xsd.</para>
+ <para>1. Use <guilabel>Server Supplied ESB Runtime</guilabel></para>
+ <para>
+ 2. Select a ESB runtime from the JBoss ESB runtime list predefined in the preferences. If you choose the first option, make sure that the project has the Target JBoss Runtime set and this runtime has a ESB runtime installed.
+ </para>
+ <para>
+ 3. Choose ESB Config Version. From the version 3.1.0 JBoss ESB Tools supports three different jboss-esb.xsd versions: jbossesb-1.0.1.xsd, jbossesb-1.1.0.xsd and jbossesb-1.2.0.xsd.
+ </para>
<note>
<title>Note:</title>
<para>If you use ESB 4.7 you should select jbossesb-1.2.0.xsd.</para>
@@ -107,11 +105,7 @@
</imageobject>
</mediaobject>
</figure>
- <para>Click <emphasis>
- <property>Finish</property>
- </emphasis> and a ESB project with the default <emphasis><property>jboss-esb.xml</property>
- </emphasis>
- will be created. </para>
+ <para>Click the <guibutton>Finish</guibutton> button and a ESB project with the default <filename>jboss-esb.xml</filename> file will be created. </para>
<figure>
<title>The generated ESB project structure</title>
@@ -126,12 +120,13 @@
<section id="ESB_project_wizard">
<title>Using ESB Project Examples</title>
- <para>JBoss Tools provides a Project Example wizard that is an easy way for users to create some kinds of projects to be used as examples with some predefined structure. Let's start
- creating a ESB project using this wizard.</para>
+ <para>
+ JBoss Tools provides a Project Example wizard that is an easy way for users to create some kinds of projects to be used as examples with some predefined structure. Let's start creating a ESB project using this wizard.
+ </para>
- <para>Before creating a ESB project example create JBoss Runtime with name <emphasis><property>
- JBoss 4.2 Runtime</property>
- </emphasis>, it will be used by your ESB project example. </para>
+ <para>
+ Before creating a ESB project example create JBoss Runtime with name <emphasis><property>JBoss 4.2 Runtime</property></emphasis>, it will be used by your ESB project example.
+ </para>
<para>Select
<menuchoice>
@@ -154,9 +149,9 @@
</mediaobject>
</figure>
- <para> Clicking <emphasis>
- <property>Next</property>
- </emphasis> brings you to the wizard page where you can select a ESB project example from the example list.</para>
+ <para>
+ Clicking the <guibutton>Next</guibutton> button brings you to the wizard page where you can select a ESB project example from the example list.
+ </para>
<figure>
<title>Project Example Wizard</title>
@@ -168,8 +163,7 @@
</figure>
<note>
<title>Note:</title>
- <para>Under the <property>Projects</property>
- section you can find two categories related to ESB:</para>
+ <para>Under the <property>Projects</property> section you can find two categories related to ESB:</para>
<itemizedlist>
<listitem>
@@ -180,12 +174,9 @@
</listitem>
</itemizedlist>
-
- <para>It means that if you use a runtime pointed to a SOA-P 5.0, you should download the examples from
- the <emphasis>
- <property>ESB for SOA-P 5.0</property>
- </emphasis> category in order to avoid the incompatibility errors.
- </para>
+ <para>
+ It means that if you use a runtime pointed to a SOA-P 5.0, you should download the examples from the <emphasis><property>ESB for SOA-P 5.0</property></emphasis> category in order to avoid the incompatibility errors.
+ </para>
</note>
<para>Every ESB example has two projects, one is a ESB project and another is a Java project used to test the ESB project.</para>
@@ -203,6 +194,10 @@
</listitem>
<listitem>
<para>
+ <emphasis role="bold">JBoss ESB HelloWorld Email Example</emphasis> - demonstrates how to configure a mail gateway using a JCA mail adapter and a Camel mail endpoint. Both gateways route the messages through a JMS queue and finally to your action class for processing. </para>
+ </listitem>
+ <listitem>
+ <para>
<emphasis role="bold">JBoss ESB HelloWorld File Action Example</emphasis> - demonstrates 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.</para>
</listitem>
<listitem>
@@ -247,7 +242,9 @@
</figure>
- <para>Select the <guilabel>JBoss ESB HelloWorld Example</guilabel> ESB project and then click the <guibutton>Finish</guibutton> button. As a result you will get two projects created:</para>
+ <para>
+ Select the <guilabel>JBoss ESB HelloWorld Example</guilabel> ESB project and then click the <guibutton>Finish</guibutton> button. As a result you will get two projects created:
+ </para>
<figure>
<title>JBoss ESB Project Examples: helloworld and helloworld_testclient</title>
<mediaobject>
@@ -271,10 +268,8 @@
<guimenuitem>Other</guimenuitem>
<guimenuitem>Server</guimenuitem>
<guimenuitem>Servers</guimenuitem>
- </menuchoice>,
- create a JBoss Server in the Server view and start it, and then right click the created JBoss server,
- select <emphasis><property> </property> Add and Remove Projects</emphasis>,
- and add the ESB projects you want to deploy from the left side to the right side in the opened dialog. </para>
+ </menuchoice>, create a JBoss Server in the Server view and start it, and then right click the created JBoss server, select <guilabel> Add and Remove Projects</guilabel>, and add the ESB projects you want to deploy from the left side to the right side in the opened dialog.
+ </para>
<figure>
<title>Add and Remove Projects</title>
@@ -285,9 +280,9 @@
</mediaobject>
</figure>
- <para>Click <emphasis><property>Finish</property>
- </emphasis> to add the project to the server.
- You also can drag the ESB project from the Project View to the server.</para>
+ <para>
+ Click the <guibutton>Finish</guibutton> button to add the project to the server. You also can drag the ESB project from the Project View to the server.
+ </para>
<figure>
<title>Servers View</title>
@@ -298,12 +293,12 @@
</mediaobject>
</figure>
- <para>Thus, you have just added the ESB project to the JBoss server module list. Right click the JBoss Server and select <emphasis><property>Publish</property>
- </emphasis> to publish the project on the server.
- You can check the deploying result in the Console view.</para>
- <para>The <emphasis><property>Run</property>
- </emphasis> and <emphasis><property>Debug</property>
- </emphasis> options work on ESB projects causing a (re)deploy for a user designated server.</para>
+ <para>
+ Thus, you have just added the ESB project to the JBoss server module list. Right click the JBoss Server and select <guimenuitem>Publish</guimenuitem> to publish the project on the server. You can check the deploying result in the Console view.
+ </para>
+ <para>
+ The <guimenuitem>Run</guimenuitem> and <guimenuitem>Debug</guimenuitem> options work on ESB projects causing a (re)deploy for a user designated server.
+ </para>
<para>You can also use the "Finger touch" for a quick restart of the project without restarting the server:</para>
<figure>
<title>Finger Touch button</title>
@@ -313,9 +308,10 @@
</imageobject>
</mediaobject>
</figure>
- <para>The "Finger" touches descriptors dependent on project (i.e. web.xml for WAR, application.xml for EAR) and now it is also available for jboss-esb.xml in ESB projects.</para>
- <para>You can also deploy your ESB project as an .esb archive. Right-click on the project, choose <emphasis><property>Export</property>
- </emphasis>:</para>
+ <para>
+ The "Finger" touches descriptors dependent on project (i.e. <filename>web.xml</filename> for WAR, <filename>application.xml</filename> for EAR) and now it is also available for <filename>jboss-esb.xml</filename> in ESB projects.
+ </para>
+ <para>You can also deploy your ESB project as an .esb archive. Right-click on the project, choose <guimenuitem>Export</guimenuitem>:</para>
<figure>
<title>Export of ESB project</title>
@@ -366,7 +362,7 @@
<para>We will show you how to use the Creation wizard for creating a new ESB file.</para>
- <para>At first you should open any project. Select
+ <para>At first you should open a project that has the ESB facet enabled. Select
<menuchoice>
<guimenuitem>File</guimenuitem>
<guimenuitem>New</guimenuitem>
@@ -676,4 +672,4 @@
- </chapter>
\ No newline at end of file
+ </chapter>
Modified: branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/pom.xml
===================================================================
--- branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/pom.xml 2011-08-08 22:49:00 UTC (rev 33697)
+++ branches/jbosstools-3.2.x/esb/docs/esb_ref_guide/pom.xml 2011-08-08 22:51:41 UTC (rev 33698)
@@ -1,7 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.jboss.tools</groupId>
@@ -10,229 +8,232 @@
<packaging>jdocbook</packaging>
<name>${bookname}-(${translation})</name>
- <properties>
- <translation>en-US</translation>
- <docname>ESB_Reference_Guide</docname>
- <bookname>ESB Reference Guide</bookname>
- </properties>
-
- <profiles>
+ <properties>
+ <translation>en-US</translation>
+ <docname>ESB_Reference_Guide</docname>
+ <bookname>ESB Reference Guide</bookname>
+ </properties>
+ <profiles>
+
<!-- mvn compile -->
- <profile>
- <id>all</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jdocbook-plugin</artifactId>
- <version>2.3.3</version>
- <extensions>true</extensions>
- <configuration>
- <formats>
- <format>
- <formatName>pdf</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
- <finalName>${docname}.pdf</finalName>
- </format>
- <format>
- <formatName>html</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- <format>
- <formatName>html_single</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- <format>
- <formatName>eclipse</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/eclipse.xsl</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- </formats>
- </configuration>
- </plugin>
+ <profile>
+ <id>all</id>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.3.4</version>
+ <extensions>true</extensions>
+ <configuration>
+ <formats>
+ <format>
+ <formatName>pdf</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
+ <finalName>${docname}.pdf</finalName>
+ </format>
+ <format>
+ <formatName>html</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ <format>
+ <formatName>html_single</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ <format>
+ <formatName>eclipse</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/eclipse.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ <options>
+ <useRelativeImageUris>true</useRelativeImageUris>
+ </options>
+ </configuration>
+ </plugin>
</plugins>
</build>
</profile>
<!-- mvn compile -Phtml -->
- <profile>
- <id>html</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jdocbook-plugin</artifactId>
- <version>2.3.3</version>
- <extensions>true</extensions>
- <configuration>
- <formats>
- <format>
- <formatName>html</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- </formats>
- </configuration>
- </plugin>
+ <profile>
+ <id>html</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.3.3</version>
+ <extensions>true</extensions>
+ <configuration>
+ <formats>
+ <format>
+ <formatName>html</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ </configuration>
+ </plugin>
</plugins>
</build>
</profile>
<!-- mvn compile -Phtml-single -->
- <profile>
- <id>html-single</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jdocbook-plugin</artifactId>
- <version>2.3.3</version>
- <extensions>true</extensions>
- </plugin>
+ <profile>
+ <id>html-single</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.3.3</version>
+ <extensions>true</extensions>
+ </plugin>
</plugins>
</build>
</profile>
<!-- mvn compile -Ppdf -->
- <profile>
- <id>pdf</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jdocbook-plugin</artifactId>
- <version>2.3.3</version>
- <extensions>true</extensions>
- <configuration>
- <formats>
- <format>
- <formatName>pdf</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
- <finalName>${docname}.pdf</finalName>
- </format>
- </formats>
- </configuration>
- </plugin>
+ <profile>
+ <id>pdf</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.3.3</version>
+ <extensions>true</extensions>
+ <configuration>
+ <formats>
+ <format>
+ <formatName>pdf</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
+ <finalName>${docname}.pdf</finalName>
+ </format>
+ </formats>
+ </configuration>
+ </plugin>
</plugins>
</build>
</profile>
<!-- mvn compile -Peclipse -->
- <profile>
- <id>eclipse</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jdocbook-plugin</artifactId>
- <version>2.3.3</version>
- <extensions>true</extensions>
- <configuration>
- <formats>
- <format>
- <formatName>eclipse</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/eclipse.xsl</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- </formats>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
+ <profile>
+ <id>eclipse</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.3.3</version>
+ <extensions>true</extensions>
+ <configuration>
+ <formats>
+ <format>
+ <formatName>eclipse</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/eclipse.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
- </profiles>
- <build>
- <pluginManagement>
- <plugins>
- <plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jdocbook-plugin</artifactId>
- <version>2.3.3</version>
- <extensions>true</extensions>
- <dependencies>
- <dependency>
- <groupId>org.jboss.pressgang</groupId>
- <artifactId>pressgang-xslt</artifactId>
- <version>1.2.0</version>
- </dependency>
- <dependency>
- <groupId>org.jboss</groupId>
- <artifactId>jbossorg-jdocbook-style</artifactId>
- <version>1.1.1</version>
- <type>jdocbook-style</type>
- </dependency>
- </dependencies>
- <configuration>
- <sourceDirectory>${project.basedir}</sourceDirectory>
+ </profiles>
+ <build>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.3.3</version>
+ <extensions>true</extensions>
+ <dependencies>
+ <dependency>
+ <groupId>org.jboss.pressgang</groupId>
+ <artifactId>pressgang-xslt</artifactId>
+ <version>1.2.0</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss</groupId>
+ <artifactId>jbossorg-jdocbook-style</artifactId>
+ <version>1.1.1</version>
+ <type>jdocbook-style</type>
+ </dependency>
+ </dependencies>
+ <configuration>
+ <sourceDirectory>${project.basedir}</sourceDirectory>
<!-- <sourceDocumentName>${docname}.xml</sourceDocumentName> -->
- <sourceDocumentName>master.xml</sourceDocumentName>
- <masterTranslation>en-US</masterTranslation>
- <imageResource>
- <directory>${project.basedir}/en-US</directory>
- <includes>
- <include>images/**/*</include>
- </includes>
- </imageResource>
- <formats>
- <format>
- <formatName>pdf</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
- <finalName>${pdf.name}</finalName>
- </format>
- <format>
- <formatName>html</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- <format>
- <formatName>html_single</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- <format>
- <formatName>eclipse</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/eclipse.xsl</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- </formats>
- <options>
- <xincludeSupported>true</xincludeSupported>
- <xmlTransformerType>saxon</xmlTransformerType>
- <docbookVersion>1.72.0</docbookVersion>
- <localeSeparator>-</localeSeparator>
- <transformerParameters>
- <property>
- <name>javax.xml.parsers.DocumentBuilderFactory</name>
- <value>org.apache.xerces.jaxp.DocumentBuilderFactoryImpl</value>
- </property>
- <property>
- <name>javax.xml.parsers.SAXParserFactory</name>
- <value>org.apache.xerces.jaxp.SAXParserFactoryImpl</value>
- </property>
- </transformerParameters>
- </options>
- </configuration>
- </plugin>
- </plugins>
- </pluginManagement>
- </build>
+ <sourceDocumentName>master.xml</sourceDocumentName>
+ <masterTranslation>en-US</masterTranslation>
+ <imageResource>
+ <directory>${project.basedir}/en-US</directory>
+ <includes>
+ <include>images/**/*</include>
+ </includes>
+ </imageResource>
+ <formats>
+ <format>
+ <formatName>pdf</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
+ <finalName>${pdf.name}</finalName>
+ </format>
+ <format>
+ <formatName>html</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ <format>
+ <formatName>html_single</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ <format>
+ <formatName>eclipse</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/eclipse.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ <options>
+ <xincludeSupported>true</xincludeSupported>
+ <xmlTransformerType>saxon</xmlTransformerType>
+ <docbookVersion>1.72.0</docbookVersion>
+ <localeSeparator>-</localeSeparator>
+ <transformerParameters>
+ <property>
+ <name>javax.xml.parsers.DocumentBuilderFactory</name>
+ <value>org.apache.xerces.jaxp.DocumentBuilderFactoryImpl</value>
+ </property>
+ <property>
+ <name>javax.xml.parsers.SAXParserFactory</name>
+ <value>org.apache.xerces.jaxp.SAXParserFactoryImpl</value>
+ </property>
+ </transformerParameters>
+ </options>
+ </configuration>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ </build>
</project>
14 years, 8 months
JBoss Tools SVN: r33697 - trunk/esb/docs/esb_ref_guide/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2011-08-08 18:49:00 -0400 (Mon, 08 Aug 2011)
New Revision: 33697
Modified:
trunk/esb/docs/esb_ref_guide/en-US/Book_Info.xml
Log:
updated for brew
Modified: trunk/esb/docs/esb_ref_guide/en-US/Book_Info.xml
===================================================================
--- trunk/esb/docs/esb_ref_guide/en-US/Book_Info.xml 2011-08-08 22:44:38 UTC (rev 33696)
+++ trunk/esb/docs/esb_ref_guide/en-US/Book_Info.xml 2011-08-08 22:49:00 UTC (rev 33697)
@@ -7,7 +7,7 @@
<productname>JBoss Developer Studio</productname>
<productnumber>4.1</productnumber>
<edition>4.1.0</edition>
- <pubsnumber>1</pubsnumber>
+ <pubsnumber>2</pubsnumber>
<abstract>
<para>The ESB Tools Reference Guide explains how to use the ESB Tools to create ESB files quickly and with precision.</para>
</abstract>
14 years, 8 months
JBoss Tools SVN: r33696 - trunk/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/jspeditor.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2011-08-08 18:44:38 -0400 (Mon, 08 Aug 2011)
New Revision: 33696
Modified:
trunk/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/jspeditor/JSPMultiPageEditorPart.java
Log:
removed sourceEditor.init() call because of possible deadlock in tests in case of opening missing file
Modified: trunk/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/jspeditor/JSPMultiPageEditorPart.java
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/jspeditor/JSPMultiPageEditorPart.java 2011-08-08 22:15:06 UTC (rev 33695)
+++ trunk/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/jspeditor/JSPMultiPageEditorPart.java 2011-08-08 22:44:38 UTC (rev 33696)
@@ -122,7 +122,6 @@
editorComp.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
editorComp.setLayout(new FillLayout(SWT.VERTICAL));
editor.createPartControl(editorComp);
- sourcePart.init(site, input);
}else {
editor.createPartControl(parent2);
}
14 years, 8 months