JBoss Tools SVN: r25701 - trunk/build/target-platform.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-10-10 23:50:46 -0400 (Sun, 10 Oct 2010)
New Revision: 25701
Modified:
trunk/build/target-platform/
Log:
ignore eclipse zips, dirs, and symlinks in this folder
Property changes on: trunk/build/target-platform
___________________________________________________________________
Name: svn:ignore
- REPO*
*target.zip
log*.txt
+ REPO*
*target.zip
log*.txt
eclipse*
14 years, 3 months
JBoss Tools SVN: r25700 - in trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks: gef/tree/command and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: DartPeng
Date: 2010-10-10 23:04:21 -0400 (Sun, 10 Oct 2010)
New Revision: 25700
Modified:
trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/editor/AbstractSmooksFormEditor.java
trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/gef/tree/command/GEFAdapterCommand.java
trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/graphical/editors/ConnectionModelFactoryImpl.java
Log:
JBIDE-6902
Done
Modified: trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/editor/AbstractSmooksFormEditor.java
===================================================================
--- trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/editor/AbstractSmooksFormEditor.java 2010-10-11 02:58:36 UTC (rev 25699)
+++ trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/editor/AbstractSmooksFormEditor.java 2010-10-11 03:04:21 UTC (rev 25700)
@@ -394,7 +394,14 @@
adapterFactory.addAdapterFactory(new Javabean12ItemProviderAdapterFactory());
adapterFactory.addAdapterFactory(new Csv12ItemProviderAdapterFactory());
- BasicCommandStack commandStack = new BasicCommandStack();
+ BasicCommandStack commandStack = new BasicCommandStack(){
+
+ @Override
+ protected void handleError(Exception exception) {
+ super.handleError(exception);
+ }
+
+ };
handleCommandStack(commandStack);
editingDomain = new AdapterFactoryEditingDomain(adapterFactory, commandStack, new HashMap<Resource, Boolean>());
}
Modified: trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/gef/tree/command/GEFAdapterCommand.java
===================================================================
--- trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/gef/tree/command/GEFAdapterCommand.java 2010-10-11 02:58:36 UTC (rev 25699)
+++ trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/gef/tree/command/GEFAdapterCommand.java 2010-10-11 03:04:21 UTC (rev 25700)
@@ -22,28 +22,26 @@
protected org.eclipse.emf.common.command.Command emfCommand;
protected EditingDomain domain;
-
+
protected Object owner;
-
+
protected Object collections;
-
+
protected Object feature;
-
+
protected int x;
-
+
protected int y;
-
+
protected int width;
-
+
protected int height;
- public GEFAdapterCommand(EditingDomain domain, org.eclipse.emf.common.command.Command emfCommand) {
+ public GEFAdapterCommand(EditingDomain domain,
+ org.eclipse.emf.common.command.Command emfCommand) {
this.emfCommand = emfCommand;
this.domain = domain;
}
-
-
-
/**
* @return the x
@@ -52,19 +50,14 @@
return x;
}
-
-
-
/**
- * @param x the x to set
+ * @param x
+ * the x to set
*/
public void setX(int x) {
this.x = x;
}
-
-
-
/**
* @return the y
*/
@@ -72,19 +65,14 @@
return y;
}
-
-
-
/**
- * @param y the y to set
+ * @param y
+ * the y to set
*/
public void setY(int y) {
this.y = y;
}
-
-
-
/**
* @return the width
*/
@@ -92,19 +80,14 @@
return width;
}
-
-
-
/**
- * @param width the width to set
+ * @param width
+ * the width to set
*/
public void setWidth(int width) {
this.width = width;
}
-
-
-
/**
* @return the height
*/
@@ -112,55 +95,38 @@
return height;
}
-
-
-
/**
- * @param height the height to set
+ * @param height
+ * the height to set
*/
public void setHeight(int height) {
this.height = height;
}
-
-
-
public Object getOwner() {
return owner;
}
-
-
public void setOwner(Object owner) {
this.owner = owner;
}
-
-
public Object getCollections() {
return collections;
}
-
-
public void setCollections(Object collections) {
this.collections = collections;
}
-
-
public Object getFeature() {
return feature;
}
-
-
public void setFeature(Object feature) {
this.feature = feature;
}
-
-
/*
* (non-Javadoc)
*
@@ -209,7 +175,7 @@
* @see org.eclipse.gef.commands.Command#execute()
*/
@Override
- public void execute(){
+ public void execute() {
if (emfCommand != null && domain != null) {
domain.getCommandStack().execute(emfCommand);
return;
Modified: trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/graphical/editors/ConnectionModelFactoryImpl.java
===================================================================
--- trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/graphical/editors/ConnectionModelFactoryImpl.java 2010-10-11 02:58:36 UTC (rev 25699)
+++ trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/graphical/editors/ConnectionModelFactoryImpl.java 2010-10-11 03:04:21 UTC (rev 25700)
@@ -105,6 +105,9 @@
if (beanid.equals(idRefData)) {
AbstractSmooksGraphicalModel sourceGraphModel = SmooksGraphUtil.findSmooksGraphModel(root,
eObject);
+ if(sourceGraphModel == null){
+ continue;
+ }
List<TreeNodeConnection> scs = sourceGraphModel.getSourceConnections();
boolean createNewConnection = true;
for (Iterator<?> iterator2 = scs.iterator(); iterator2.hasNext();) {
14 years, 3 months
JBoss Tools SVN: r25699 - trunk/deltacloud/docs/Cloud_Tools_Reference_Guide.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2010-10-10 22:58:36 -0400 (Sun, 10 Oct 2010)
New Revision: 25699
Modified:
trunk/deltacloud/docs/Cloud_Tools_Reference_Guide/pom.xml
trunk/deltacloud/docs/Cloud_Tools_Reference_Guide/publican.cfg
Log:
updated to build with correct syles
Modified: trunk/deltacloud/docs/Cloud_Tools_Reference_Guide/pom.xml
===================================================================
--- trunk/deltacloud/docs/Cloud_Tools_Reference_Guide/pom.xml 2010-10-11 00:40:22 UTC (rev 25698)
+++ trunk/deltacloud/docs/Cloud_Tools_Reference_Guide/pom.xml 2010-10-11 02:58:36 UTC (rev 25699)
@@ -161,11 +161,11 @@
</snapshotRepository>
</distributionManagement>
<properties>
- <xsl-single>classpath:/xslt/com/jboss/tools/xhtml-single.xsl</xsl-single>
- <xsl-chunked>classpath:/xslt/com/jboss/tools/xhtml.xsl</xsl-chunked>
- <xsl-pdf>classpath:/xslt/com/jboss/tools/pdf.xsl</xsl-pdf>
+ <xsl-single>classpath:/xslt/org/jboss/tools/xhtml-single.xsl</xsl-single>
+ <xsl-chunked>classpath:/xslt/org/jboss/tools/xhtml.xsl</xsl-chunked>
+ <xsl-pdf>classpath:/xslt/org/jboss/tools/pdf.xsl</xsl-pdf>
<stylesdir>classpath:/xslt</stylesdir>
- <cssdir>${pom.basedir}/target/docbook/staging/css/com/css</cssdir>
+ <cssdir>${pom.basedir}/target/docbook/staging/css/org/css</cssdir>
<master>master.xml</master>
</properties>
</project>
Modified: trunk/deltacloud/docs/Cloud_Tools_Reference_Guide/publican.cfg
===================================================================
--- trunk/deltacloud/docs/Cloud_Tools_Reference_Guide/publican.cfg 2010-10-11 00:40:22 UTC (rev 25698)
+++ trunk/deltacloud/docs/Cloud_Tools_Reference_Guide/publican.cfg 2010-10-11 02:58:36 UTC (rev 25699)
@@ -3,5 +3,5 @@
xml_lang: en-US
type: Book
-brand: common
+brand: JBoss
14 years, 3 months
JBoss Tools SVN: r25698 - tags/jbosstools-3.1.1.GA/documentation/guides/JBDS_Release_Notes/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2010-10-10 20:40:22 -0400 (Sun, 10 Oct 2010)
New Revision: 25698
Modified:
tags/jbosstools-3.1.1.GA/documentation/guides/JBDS_Release_Notes/en-US/Article_Info.xml
Log:
updated again for publican
Modified: tags/jbosstools-3.1.1.GA/documentation/guides/JBDS_Release_Notes/en-US/Article_Info.xml
===================================================================
--- tags/jbosstools-3.1.1.GA/documentation/guides/JBDS_Release_Notes/en-US/Article_Info.xml 2010-10-11 00:39:32 UTC (rev 25697)
+++ tags/jbosstools-3.1.1.GA/documentation/guides/JBDS_Release_Notes/en-US/Article_Info.xml 2010-10-11 00:40:22 UTC (rev 25698)
@@ -6,7 +6,7 @@
<productname>JBoss Developer Studio</productname>
<productnumber>3.0</productnumber>
<edition>3.0.1</edition>
- <pubsnumber>1</pubsnumber>
+ <pubsnumber>2</pubsnumber>
<abstract>
<para>
These release notes contain important information related to the JBoss Developer Studio. New features,<!-- known problems,--> resources, and other current issues are addressed here.
14 years, 3 months
JBoss Tools SVN: r25697 - tags/jbosstools-3.1.1.GA/documentation/guides/JBDS_Release_Notes/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2010-10-10 20:39:32 -0400 (Sun, 10 Oct 2010)
New Revision: 25697
Modified:
tags/jbosstools-3.1.1.GA/documentation/guides/JBDS_Release_Notes/en-US/Article_Info.xml
Log:
updated for publican
Modified: tags/jbosstools-3.1.1.GA/documentation/guides/JBDS_Release_Notes/en-US/Article_Info.xml
===================================================================
--- tags/jbosstools-3.1.1.GA/documentation/guides/JBDS_Release_Notes/en-US/Article_Info.xml 2010-10-10 23:28:02 UTC (rev 25696)
+++ tags/jbosstools-3.1.1.GA/documentation/guides/JBDS_Release_Notes/en-US/Article_Info.xml 2010-10-11 00:39:32 UTC (rev 25697)
@@ -4,8 +4,8 @@
<title>Release Notes</title>
<subtitle>Information about the changes made for this release of the JBoss Developer Studio.</subtitle>
<productname>JBoss Developer Studio</productname>
- <productnumber>3.0.1</productnumber>
- <edition>0</edition>
+ <productnumber>3.0</productnumber>
+ <edition>3.0.1</edition>
<pubsnumber>1</pubsnumber>
<abstract>
<para>
14 years, 3 months
JBoss Tools SVN: r25696 - branches/jbosstools-3.2.0.Beta1/ws/docs/reference/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2010-10-10 19:28:02 -0400 (Sun, 10 Oct 2010)
New Revision: 25696
Modified:
branches/jbosstools-3.2.0.Beta1/ws/docs/reference/en-US/Book_Info.xml
branches/jbosstools-3.2.0.Beta1/ws/docs/reference/en-US/Revision_History.xml
branches/jbosstools-3.2.0.Beta1/ws/docs/reference/en-US/master.xml
Log:
updated for publican
Modified: branches/jbosstools-3.2.0.Beta1/ws/docs/reference/en-US/Book_Info.xml
===================================================================
--- branches/jbosstools-3.2.0.Beta1/ws/docs/reference/en-US/Book_Info.xml 2010-10-10 23:23:08 UTC (rev 25695)
+++ branches/jbosstools-3.2.0.Beta1/ws/docs/reference/en-US/Book_Info.xml 2010-10-10 23:28:02 UTC (rev 25696)
@@ -1,4 +1,4 @@
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE Book PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
]>
-<bookinfo><title>JBoss Web Services User Guide</title><subtitle>Provides information relating to the JBoss Web Services module.</subtitle><productname>JBoss Developer Studio</productname><productnumber>3.0</productnumber><edition>3.0.1</edition><pubsnumber>0</pubsnumber><abstract><para>The JBoss Web Services User Guide explains how to use the JBoss Web Services module to implement web services in Java.</para></abstract><corpauthor><inlinemediaobject><imageobject><imagedata fileref="Common_Content/images/title_logo.svg" format="SVG"></imagedata></imageobject></inlinemediaobject></corpauthor><xi:include href="Common_Content/Legal_Notice.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include><xi:include href="Author_Group.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include></bookinfo>
+<bookinfo><title>JBoss Web Services User Guide</title><subtitle>Provides information relating to the JBoss Web Services module.</subtitle><productname>JBoss Developer Studio</productname><productnumber>4.0</productnumber><edition>4.0.0</edition><pubsnumber>1</pubsnumber><abstract><para>The JBoss Web Services User Guide explains how to use the JBoss Web Services module to implement web services in Java.</para><para>Note: This document is under development, is subject to heavy change, and is provided here as a preview. The content and instructions contained within should not be considered complete, and should be used with caution.</para></abstract><corpauthor><inlinemediaobject><imageobject><imagedata fileref="Common_Content/images/title_logo.svg" format="SVG"></imagedata></imageobject></inlinemediaobject></corpauthor><xi:include href="Common_Content/Legal_Notice.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include><xi:include href="Author_Group.xml" xmlns:xi="http://!
www.w3.org/2001/XInclude"></xi:include></bookinfo>
Modified: branches/jbosstools-3.2.0.Beta1/ws/docs/reference/en-US/Revision_History.xml
===================================================================
--- branches/jbosstools-3.2.0.Beta1/ws/docs/reference/en-US/Revision_History.xml 2010-10-10 23:23:08 UTC (rev 25695)
+++ branches/jbosstools-3.2.0.Beta1/ws/docs/reference/en-US/Revision_History.xml 2010-10-10 23:28:02 UTC (rev 25696)
@@ -1,4 +1,4 @@
<?xml version='1.0' encoding='utf-8' ?>
<!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></author><revdescription><simplelist><member>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></appendix>
+<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></email></author><revdescription><simplelist><member>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></appendix>
Modified: branches/jbosstools-3.2.0.Beta1/ws/docs/reference/en-US/master.xml
===================================================================
--- branches/jbosstools-3.2.0.Beta1/ws/docs/reference/en-US/master.xml 2010-10-10 23:23:08 UTC (rev 25695)
+++ branches/jbosstools-3.2.0.Beta1/ws/docs/reference/en-US/master.xml 2010-10-10 23:28:02 UTC (rev 25696)
@@ -34,7 +34,7 @@
<holder>JBoss by Red Hat</holder>
</copyright>
<releaseinfo>
- Version: 1.1.1.GA
+ Version: 3.2.0.Beta
</releaseinfo>
<abstract>
<title/>
14 years, 3 months
JBoss Tools SVN: r25695 - branches/jbosstools-3.2.0.Beta1/struts/docs/struts_tools_tutorial/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2010-10-10 19:23:08 -0400 (Sun, 10 Oct 2010)
New Revision: 25695
Modified:
branches/jbosstools-3.2.0.Beta1/struts/docs/struts_tools_tutorial/en-US/Book_Info.xml
branches/jbosstools-3.2.0.Beta1/struts/docs/struts_tools_tutorial/en-US/Revision_History.xml
branches/jbosstools-3.2.0.Beta1/struts/docs/struts_tools_tutorial/en-US/master.xml
Log:
updated for publican
Modified: branches/jbosstools-3.2.0.Beta1/struts/docs/struts_tools_tutorial/en-US/Book_Info.xml
===================================================================
--- branches/jbosstools-3.2.0.Beta1/struts/docs/struts_tools_tutorial/en-US/Book_Info.xml 2010-10-10 23:21:41 UTC (rev 25694)
+++ branches/jbosstools-3.2.0.Beta1/struts/docs/struts_tools_tutorial/en-US/Book_Info.xml 2010-10-10 23:23:08 UTC (rev 25695)
@@ -1,4 +1,4 @@
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE Book PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
]>
-<bookinfo><title>Struts Tools Tutorial</title><subtitle>Guides the reader through a tutorial on the Struts Tools set.</subtitle><productname>JBoss Developer Studio</productname><productnumber>3.0</productnumber><edition>3.0.1</edition><pubsnumber>0</pubsnumber><abstract><para>The Struts Tools Tutorial guide explains how to use the Struts Tools set and guides the reader through a tutorial.</para></abstract><corpauthor><inlinemediaobject><imageobject><imagedata fileref="Common_Content/images/title_logo.svg" format="SVG"></imagedata></imageobject></inlinemediaobject></corpauthor><xi:include href="Common_Content/Legal_Notice.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include><xi:include href="Author_Group.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include></bookinfo>
+<bookinfo><title>Struts Tools Tutorial</title><subtitle>Guides the reader through a tutorial on the Struts Tools set.</subtitle><productname>JBoss Developer Studio</productname><productnumber>4.0</productnumber><edition>4.0.0</edition><pubsnumber>1</pubsnumber><abstract><para>The Struts Tools Tutorial guide explains how to use the Struts Tools set and guides the reader through a tutorial.</para><para>Note: This document is under development, is subject to heavy change, and is provided here as a preview. The content and instructions contained within should not be considered complete, and should be used with caution.</para></abstract><corpauthor><inlinemediaobject><imageobject><imagedata fileref="Common_Content/images/title_logo.svg" format="SVG"></imagedata></imageobject></inlinemediaobject></corpauthor><xi:include href="Common_Content/Legal_Notice.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include><xi:include href="Author_Group.xml" xmlns:xi="http://www.w3.org/200!
1/XInclude"></xi:include></bookinfo>
Modified: branches/jbosstools-3.2.0.Beta1/struts/docs/struts_tools_tutorial/en-US/Revision_History.xml
===================================================================
--- branches/jbosstools-3.2.0.Beta1/struts/docs/struts_tools_tutorial/en-US/Revision_History.xml 2010-10-10 23:21:41 UTC (rev 25694)
+++ branches/jbosstools-3.2.0.Beta1/struts/docs/struts_tools_tutorial/en-US/Revision_History.xml 2010-10-10 23:23:08 UTC (rev 25695)
@@ -1,4 +1,4 @@
<?xml version='1.0' encoding='utf-8' ?>
<!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></author><revdescription><simplelist><member>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></appendix>
+<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></email></author><revdescription><simplelist><member>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></appendix>
Modified: branches/jbosstools-3.2.0.Beta1/struts/docs/struts_tools_tutorial/en-US/master.xml
===================================================================
--- branches/jbosstools-3.2.0.Beta1/struts/docs/struts_tools_tutorial/en-US/master.xml 2010-10-10 23:21:41 UTC (rev 25694)
+++ branches/jbosstools-3.2.0.Beta1/struts/docs/struts_tools_tutorial/en-US/master.xml 2010-10-10 23:23:08 UTC (rev 25695)
@@ -50,7 +50,7 @@
<holder>JBoss by Red Hat</holder>
</copyright>
<releaseinfo>
- Version: 3.1.1.GA
+ Version: 3.2.0.Beta
</releaseinfo>
<abstract>
14 years, 3 months
JBoss Tools SVN: r25694 - branches/jbosstools-3.2.0.Beta1/struts/docs/struts_tools_ref_guide/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2010-10-10 19:21:41 -0400 (Sun, 10 Oct 2010)
New Revision: 25694
Modified:
branches/jbosstools-3.2.0.Beta1/struts/docs/struts_tools_ref_guide/en-US/Book_Info.xml
branches/jbosstools-3.2.0.Beta1/struts/docs/struts_tools_ref_guide/en-US/Revision_History.xml
branches/jbosstools-3.2.0.Beta1/struts/docs/struts_tools_ref_guide/en-US/master.xml
Log:
updated for publican
Modified: branches/jbosstools-3.2.0.Beta1/struts/docs/struts_tools_ref_guide/en-US/Book_Info.xml
===================================================================
--- branches/jbosstools-3.2.0.Beta1/struts/docs/struts_tools_ref_guide/en-US/Book_Info.xml 2010-10-10 23:19:51 UTC (rev 25693)
+++ branches/jbosstools-3.2.0.Beta1/struts/docs/struts_tools_ref_guide/en-US/Book_Info.xml 2010-10-10 23:21:41 UTC (rev 25694)
@@ -1,4 +1,4 @@
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE Book PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
]>
-<bookinfo><title>Struts Tools Reference Guide</title><subtitle>Provides information relating to the Struts Tools module.</subtitle><productname>JBoss Developer Studio</productname><productnumber>3.0</productnumber><edition>3.0.1</edition><pubsnumber>0</pubsnumber><abstract><para>The Struts Tools Reference Guide explains how to use the Struts Tools to create high-quality web applications.</para></abstract><corpauthor><inlinemediaobject><imageobject><imagedata fileref="Common_Content/images/title_logo.svg" format="SVG"></imagedata></imageobject></inlinemediaobject></corpauthor><xi:include href="Common_Content/Legal_Notice.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include><xi:include href="Author_Group.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include></bookinfo>
+<bookinfo><title>Struts Tools Reference Guide</title><subtitle>Provides information relating to the Struts Tools module.</subtitle><productname>JBoss Developer Studio</productname><productnumber>4.0</productnumber><edition>4.0.0</edition><pubsnumber>1</pubsnumber><abstract><para>The Struts Tools Reference Guide explains how to use the Struts Tools to create high-quality web applications.</para><para>Note: This document is under development, is subject to heavy change, and is provided here as a preview. The content and instructions contained within should not be considered complete, and should be used with caution.</para></abstract><corpauthor><inlinemediaobject><imageobject><imagedata fileref="Common_Content/images/title_logo.svg" format="SVG"></imagedata></imageobject></inlinemediaobject></corpauthor><xi:include href="Common_Content/Legal_Notice.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include><xi:include href="Author_Group.xml" xmlns:xi="http://www.w3.org/2001!
/XInclude"></xi:include></bookinfo>
Modified: branches/jbosstools-3.2.0.Beta1/struts/docs/struts_tools_ref_guide/en-US/Revision_History.xml
===================================================================
--- branches/jbosstools-3.2.0.Beta1/struts/docs/struts_tools_ref_guide/en-US/Revision_History.xml 2010-10-10 23:19:51 UTC (rev 25693)
+++ branches/jbosstools-3.2.0.Beta1/struts/docs/struts_tools_ref_guide/en-US/Revision_History.xml 2010-10-10 23:21:41 UTC (rev 25694)
@@ -1,4 +1,4 @@
<?xml version='1.0' encoding='utf-8' ?>
<!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></author><revdescription><simplelist><member>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></appendix>
+<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></email></author><revdescription><simplelist><member>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></appendix>
Modified: branches/jbosstools-3.2.0.Beta1/struts/docs/struts_tools_ref_guide/en-US/master.xml
===================================================================
--- branches/jbosstools-3.2.0.Beta1/struts/docs/struts_tools_ref_guide/en-US/master.xml 2010-10-10 23:19:51 UTC (rev 25693)
+++ branches/jbosstools-3.2.0.Beta1/struts/docs/struts_tools_ref_guide/en-US/master.xml 2010-10-10 23:21:41 UTC (rev 25694)
@@ -53,7 +53,7 @@
<holder>JBoss by Red Hat</holder>
</copyright>
<releaseinfo>
- Version: 3.1.1.GA
+ Version: 3.2.0.Beta
</releaseinfo>
<abstract>
14 years, 3 months
JBoss Tools SVN: r25693 - branches/jbosstools-3.2.0.Beta1/smooks/docs/reference/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2010-10-10 19:19:51 -0400 (Sun, 10 Oct 2010)
New Revision: 25693
Modified:
branches/jbosstools-3.2.0.Beta1/smooks/docs/reference/en-US/Book_Info.xml
branches/jbosstools-3.2.0.Beta1/smooks/docs/reference/en-US/Revision_History.xml
branches/jbosstools-3.2.0.Beta1/smooks/docs/reference/en-US/master.xml
Log:
updated for publican
Modified: branches/jbosstools-3.2.0.Beta1/smooks/docs/reference/en-US/Book_Info.xml
===================================================================
--- branches/jbosstools-3.2.0.Beta1/smooks/docs/reference/en-US/Book_Info.xml 2010-10-10 23:14:49 UTC (rev 25692)
+++ branches/jbosstools-3.2.0.Beta1/smooks/docs/reference/en-US/Book_Info.xml 2010-10-10 23:19:51 UTC (rev 25693)
@@ -1,4 +1,4 @@
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE Book PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
]>
-<bookinfo><title>Smooks Developer Tools Reference Guide</title><subtitle>Provides information relating to the Smooks Tools module.</subtitle><productname>JBoss Developer Studio</productname><productnumber>3.0</productnumber><edition>3.0.1</edition><pubsnumber>0</pubsnumber><abstract><para>The Smooks Developer Tools Reference Guide explains how to use Smooks Tools to graphically edit Smooks configuration files.</para></abstract><corpauthor><inlinemediaobject><imageobject><imagedata fileref="Common_Content/images/title_logo.svg" format="SVG"></imagedata></imageobject></inlinemediaobject></corpauthor><xi:include href="Common_Content/Legal_Notice.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include><xi:include href="Author_Group.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include></bookinfo>
+<bookinfo><title>Smooks Developer Tools Reference Guide</title><subtitle>Provides information relating to the Smooks Tools module.</subtitle><productname>JBoss Developer Studio</productname><productnumber>4.0</productnumber><edition>4.0.0</edition><pubsnumber>1</pubsnumber><abstract><para>The Smooks Developer Tools Reference Guide explains how to use Smooks Tools to graphically edit Smooks configuration files.</para><para>Note: This document is under development, is subject to heavy change, and is provided here as a preview. The content and instructions contained within should not be considered complete, and should be used with caution.</para></abstract><corpauthor><inlinemediaobject><imageobject><imagedata fileref="Common_Content/images/title_logo.svg" format="SVG"></imagedata></imageobject></inlinemediaobject></corpauthor><xi:include href="Common_Content/Legal_Notice.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include><xi:include href="Author_Group.xml" xmlns:xi=!
"http://www.w3.org/2001/XInclude"></xi:include></bookinfo>
Modified: branches/jbosstools-3.2.0.Beta1/smooks/docs/reference/en-US/Revision_History.xml
===================================================================
--- branches/jbosstools-3.2.0.Beta1/smooks/docs/reference/en-US/Revision_History.xml 2010-10-10 23:14:49 UTC (rev 25692)
+++ branches/jbosstools-3.2.0.Beta1/smooks/docs/reference/en-US/Revision_History.xml 2010-10-10 23:19:51 UTC (rev 25693)
@@ -1,4 +1,4 @@
<?xml version='1.0' encoding='utf-8' ?>
<!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></author><revdescription><simplelist><member>Restructured 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></appendix>
+<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></email></author><revdescription><simplelist><member>Restructured 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></appendix>
Modified: branches/jbosstools-3.2.0.Beta1/smooks/docs/reference/en-US/master.xml
===================================================================
--- branches/jbosstools-3.2.0.Beta1/smooks/docs/reference/en-US/master.xml 2010-10-10 23:14:49 UTC (rev 25692)
+++ branches/jbosstools-3.2.0.Beta1/smooks/docs/reference/en-US/master.xml 2010-10-10 23:19:51 UTC (rev 25693)
@@ -32,7 +32,7 @@
<holder>JBoss by Red Hat</holder>
</copyright>
<releaseinfo>
- Version: 1.1.1.GA
+ Version: 3.2.0.Beta
</releaseinfo>
<abstract>
14 years, 3 months
JBoss Tools SVN: r25692 - branches/jbosstools-3.2.0.Beta1/seam/docs/reference/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2010-10-10 19:14:49 -0400 (Sun, 10 Oct 2010)
New Revision: 25692
Modified:
branches/jbosstools-3.2.0.Beta1/seam/docs/reference/en-US/Book_Info.xml
branches/jbosstools-3.2.0.Beta1/seam/docs/reference/en-US/Revision_History.xml
branches/jbosstools-3.2.0.Beta1/seam/docs/reference/en-US/master.xml
Log:
updated for publican
Modified: branches/jbosstools-3.2.0.Beta1/seam/docs/reference/en-US/Book_Info.xml
===================================================================
--- branches/jbosstools-3.2.0.Beta1/seam/docs/reference/en-US/Book_Info.xml 2010-10-10 23:09:38 UTC (rev 25691)
+++ branches/jbosstools-3.2.0.Beta1/seam/docs/reference/en-US/Book_Info.xml 2010-10-10 23:14:49 UTC (rev 25692)
@@ -1,4 +1,4 @@
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE Book PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
]>
-<bookinfo><title>Seam Developer Tools Reference Guide</title><subtitle>Provides information relating to the Seam Developer Tools module.</subtitle><productname>JBoss Developer Studio</productname><productnumber>3.0</productnumber><edition>3.0.1</edition><pubsnumber>0</pubsnumber><abstract><para>The Seam Developer Tools Reference Guide explains how to use the Seam Developer Tools module to create Seam projects for deployment.</para></abstract><corpauthor><inlinemediaobject><imageobject><imagedata fileref="Common_Content/images/title_logo.svg" format="SVG"></imagedata></imageobject></inlinemediaobject></corpauthor><xi:include href="Common_Content/Legal_Notice.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include><xi:include href="Author_Group.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include></bookinfo>
+<bookinfo><title>Seam Developer Tools Reference Guide</title><subtitle>Provides information relating to the Seam Developer Tools module.</subtitle><productname>JBoss Developer Studio</productname><productnumber>4.0</productnumber><edition>4.0.0</edition><pubsnumber>1</pubsnumber><abstract><para>The Seam Developer Tools Reference Guide explains how to use the Seam Developer Tools module to create Seam projects for deployment.</para><para>Note: This document is under development, is subject to heavy change, and is provided here as a preview. The content and instructions contained within should not be considered complete, and should be used with caution.</para></abstract><corpauthor><inlinemediaobject><imageobject><imagedata fileref="Common_Content/images/title_logo.svg" format="SVG"></imagedata></imageobject></inlinemediaobject></corpauthor><xi:include href="Common_Content/Legal_Notice.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include><xi:include href="Author_Group!
.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include></bookinfo>
Modified: branches/jbosstools-3.2.0.Beta1/seam/docs/reference/en-US/Revision_History.xml
===================================================================
--- branches/jbosstools-3.2.0.Beta1/seam/docs/reference/en-US/Revision_History.xml 2010-10-10 23:09:38 UTC (rev 25691)
+++ branches/jbosstools-3.2.0.Beta1/seam/docs/reference/en-US/Revision_History.xml 2010-10-10 23:14:49 UTC (rev 25692)
@@ -1,4 +1,4 @@
<?xml version='1.0' encoding='utf-8' ?>
<!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></author><revdescription><simplelist><member>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></appendix>
+<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></email></author><revdescription><simplelist><member>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></appendix>
Modified: branches/jbosstools-3.2.0.Beta1/seam/docs/reference/en-US/master.xml
===================================================================
--- branches/jbosstools-3.2.0.Beta1/seam/docs/reference/en-US/master.xml 2010-10-10 23:09:38 UTC (rev 25691)
+++ branches/jbosstools-3.2.0.Beta1/seam/docs/reference/en-US/master.xml 2010-10-10 23:14:49 UTC (rev 25692)
@@ -63,7 +63,7 @@
<holder>JBoss by Red Hat</holder>
</copyright>
<releaseinfo>
- Version: 3.1.1.GA
+ Version: 3.2.0.Beta
</releaseinfo>
<abstract>
14 years, 3 months