JBoss Tools SVN: r25621 - branches/jbosstools-3.2.0.Beta1/build.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-10-07 23:07:31 -0400 (Thu, 07 Oct 2010)
New Revision: 25621
Modified:
branches/jbosstools-3.2.0.Beta1/build/publish.sh
Log:
collect revision info from buildlog
Modified: branches/jbosstools-3.2.0.Beta1/build/publish.sh
===================================================================
--- branches/jbosstools-3.2.0.Beta1/build/publish.sh 2010-10-08 03:05:54 UTC (rev 25620)
+++ branches/jbosstools-3.2.0.Beta1/build/publish.sh 2010-10-08 03:07:31 UTC (rev 25621)
@@ -48,6 +48,30 @@
# note the job name, build number, SVN rev, and build ID of the latest snapshot zip
mkdir -p ${STAGINGDIR}/logs
+bl=${STAGINGDIR}/logs/BUILDLOG.txt
+wget -q http://hudson.qa.jboss.com/hudson/job/${JOB_NAME}/${BUILD_NUMBER}/console... -O ${bl}
+
+# JBDS-1361 - instead of SVN_REVISION, scrape ${bl} (BUILDLOG.txt)
+# Updating http://anonsvn.jboss.org/repos/tdesigner/branches/7.1
+# ...
+# At revision 1063
+# Updating http://anonsvn.jboss.org/repos/jbosstools/trunk/build
+# ...
+# At revision 25503
+# -- or --
+# Checking out https://svn.jboss.org/repos/jbosstools/branches/jbosstools-3.2.0.Beta1
+# ...
+# At revision 25538
+rl=${STAGINGDIR}/logs/SVN_REVISION.txt
+
+# convert input above to:
+# http://anonsvn.jboss.org/repos/tdesigner/branches/7.1@1063
+# http://anonsvn.jboss.org/repos/jbosstools/trunk/build@25503
+# https://svn.jboss.org/repos/jbosstools/branches/jbosstools-3.2.0.Beta1@25538
+sed -ne "/Updating \(http.\+\)\|Checking out \(http.\+\)\|At revision \([0-9]\+\)/ p" ${bl} | \
+ sed -e "/At revision/ s/At revision /\@/" | sed -e N -e '/http/ s/\n//' | \
+ sed -e "/Checking out\|Updating/,+1 s/\(Checking out \|Updating \)\(.\+\)/\2/g" > ${rl}
+
METAFILE="${BUILD_ID}-H${BUILD_NUMBER}.txt"
if [[ ${SVN_REVISION} ]]; then
METAFILE="${BUILD_ID}-H${BUILD_NUMBER}-r${SVN_REVISION}.txt"
@@ -136,10 +160,9 @@
ant -f ${ANT_SCRIPT} ${ANT_PARAMS}
fi
-# get full build log and filter out Maven test failures
+# ${bl} is full build log; see above
mkdir -p ${STAGINGDIR}/logs
-bl=${STAGINGDIR}/logs/BUILDLOG.txt
-wget -q http://hudson.qa.jboss.com/hudson/job/${JOB_NAME}/${BUILD_NUMBER}/console... -O ${bl}
+# filter out Maven test failures
fl=${STAGINGDIR}/logs/FAIL_LOG.txt
# ignore warning lines and checksum failures
sed -ne "/\[WARNING\]\|CHECKSUM FAILED/ ! p" ${bl} | sed -ne "/<<< FAI/,+9 p" | sed -e "/AILURE/,+9 s/\(.\+AILURE.\+\)/\n----------\n\n\1/g" > ${fl}
14 years, 3 months
JBoss Tools SVN: r25620 - branches/jbosstools-3.1.x/jbpm/docs/reference/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2010-10-07 23:05:54 -0400 (Thu, 07 Oct 2010)
New Revision: 25620
Modified:
branches/jbosstools-3.1.x/jbpm/docs/reference/en-US/Book_Info.xml
Log:
updated for publican
Modified: branches/jbosstools-3.1.x/jbpm/docs/reference/en-US/Book_Info.xml
===================================================================
--- branches/jbosstools-3.1.x/jbpm/docs/reference/en-US/Book_Info.xml 2010-10-08 03:04:51 UTC (rev 25619)
+++ branches/jbosstools-3.1.x/jbpm/docs/reference/en-US/Book_Info.xml 2010-10-08 03:05:54 UTC (rev 25620)
@@ -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>jBPM Tools Reference Guide</title><subtitle>Provides information relating to the jBPM Tools set.</subtitle><productname>JBoss Developer Studio</productname><productnumber>3.0</productnumber><edition>1.0</edition><pubsnumber>0</pubsnumber><abstract><para>The jBPM Tools Reference Guide explains how to use the jBPM Tools to create process definitions and workflow processes.</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>jBPM Tools Reference Guide</title><subtitle>Provides information relating to the jBPM Tools set.</subtitle><productname>JBoss Developer Studio</productname><productnumber>3.0</productnumber><edition>1.0</edition><pubsnumber>1</pubsnumber><abstract><para>The jBPM Tools Reference Guide explains how to use the jBPM Tools to create process definitions and workflow processes.</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>
14 years, 3 months
JBoss Tools SVN: r25619 - trunk/build.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-10-07 23:04:51 -0400 (Thu, 07 Oct 2010)
New Revision: 25619
Modified:
trunk/build/publish.sh
Log:
reformat input log into cleaner output
Modified: trunk/build/publish.sh
===================================================================
--- trunk/build/publish.sh 2010-10-08 02:58:27 UTC (rev 25618)
+++ trunk/build/publish.sh 2010-10-08 03:04:51 UTC (rev 25619)
@@ -63,8 +63,15 @@
# ...
# At revision 25538
rl=${STAGINGDIR}/logs/SVN_REVISION.txt
-sed -ne "/Updating \(http.\+\)\|Checking out \(http.\+\)\|At revision \(\d\+\)/" ${bl} > ${rl}
+# convert input above to:
+# http://anonsvn.jboss.org/repos/tdesigner/branches/7.1@1063
+# http://anonsvn.jboss.org/repos/jbosstools/trunk/build@25503
+# https://svn.jboss.org/repos/jbosstools/branches/jbosstools-3.2.0.Beta1@25538
+sed -ne "/Updating \(http.\+\)\|Checking out \(http.\+\)\|At revision \([0-9]\+\)/ p" ${bl} | \
+ sed -e "/At revision/ s/At revision /\@/" | sed -e N -e '/http/ s/\n//' | \
+ sed -e "/Checking out\|Updating/,+1 s/\(Checking out \|Updating \)\(.\+\)/\2/g" > ${rl}
+
METAFILE="${BUILD_ID}-H${BUILD_NUMBER}.txt"
if [[ ${SVN_REVISION} ]]; then
METAFILE="${BUILD_ID}-H${BUILD_NUMBER}-r${SVN_REVISION}.txt"
14 years, 3 months
JBoss Tools SVN: r25618 - branches/jbosstools-3.1.x/jbpm/docs/converter_ref/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2010-10-07 22:58:27 -0400 (Thu, 07 Oct 2010)
New Revision: 25618
Modified:
branches/jbosstools-3.1.x/jbpm/docs/converter_ref/en-US/Book_Info.xml
Log:
updated for publican
Modified: branches/jbosstools-3.1.x/jbpm/docs/converter_ref/en-US/Book_Info.xml
===================================================================
--- branches/jbosstools-3.1.x/jbpm/docs/converter_ref/en-US/Book_Info.xml 2010-10-08 02:49:37 UTC (rev 25617)
+++ branches/jbosstools-3.1.x/jbpm/docs/converter_ref/en-US/Book_Info.xml 2010-10-08 02:58:27 UTC (rev 25618)
@@ -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>BPMN Convert User Guide</title><subtitle>Provides information relating to the BPMN Convert module.</subtitle><productname>JBoss Developer Studio</productname><productnumber>3.0</productnumber><edition>1.0</edition><pubsnumber>1</pubsnumber><abstract><para>The BPMN Convert User Guide explains how to use the BPMN Convert module to translate a BPMN file to a JPDL file.</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>BPMN Convert User Guide</title><subtitle>Provides information relating to the BPMN Convert module.</subtitle><productname>JBoss Developer Studio</productname><productnumber>3.0</productnumber><edition>1.0</edition><pubsnumber>2</pubsnumber><abstract><para>The BPMN Convert User Guide explains how to use the BPMN Convert module to translate a BPMN file to a JPDL file.</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>
14 years, 3 months
JBoss Tools SVN: r25617 - branches/jbosstools-3.1.x/as/docs/reference/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2010-10-07 22:49:37 -0400 (Thu, 07 Oct 2010)
New Revision: 25617
Modified:
branches/jbosstools-3.1.x/as/docs/reference/en-US/Book_Info.xml
Log:
updated for publican
Modified: branches/jbosstools-3.1.x/as/docs/reference/en-US/Book_Info.xml
===================================================================
--- branches/jbosstools-3.1.x/as/docs/reference/en-US/Book_Info.xml 2010-10-08 02:39:19 UTC (rev 25616)
+++ branches/jbosstools-3.1.x/as/docs/reference/en-US/Book_Info.xml 2010-10-08 02:49:37 UTC (rev 25617)
@@ -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 Server Manager Reference Guide</title><subtitle>Provides information relating to the JBoss Server Manager.</subtitle><productname>JBoss Developer Studio</productname><productnumber>3.0</productnumber><edition>1.0</edition><pubsnumber>0</pubsnumber><abstract><para>The JBoss Server Manager Reference Guide explains how to use the JBoss Server Manager to configure, start, stop the server, to know deployment and archiving processes.</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 Server Manager Reference Guide</title><subtitle>Provides information relating to the JBoss Server Manager.</subtitle><productname>JBoss Developer Studio</productname><productnumber>3.0</productnumber><edition>1.0</edition><pubsnumber>1</pubsnumber><abstract><para>The JBoss Server Manager Reference Guide explains how to use the JBoss Server Manager to configure, start, stop the server, to know deployment and archiving processes.</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>
14 years, 3 months
JBoss Tools SVN: r25616 - branches/jbosstools-3.1.x/portlet/docs/reference/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2010-10-07 22:39:19 -0400 (Thu, 07 Oct 2010)
New Revision: 25616
Modified:
branches/jbosstools-3.1.x/portlet/docs/reference/en-US/Book_Info.xml
Log:
updated for publican
Modified: branches/jbosstools-3.1.x/portlet/docs/reference/en-US/Book_Info.xml
===================================================================
--- branches/jbosstools-3.1.x/portlet/docs/reference/en-US/Book_Info.xml 2010-10-08 02:30:16 UTC (rev 25615)
+++ branches/jbosstools-3.1.x/portlet/docs/reference/en-US/Book_Info.xml 2010-10-08 02:39:19 UTC (rev 25616)
@@ -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 Portlet Tools User Guide</title><subtitle>Provides information relating to the JBoss Portlet Tools set.</subtitle><productname>JBoss Developer Studio</productname><productnumber>3.0</productnumber><edition>1.0</edition><pubsnumber>0</pubsnumber><abstract><para>The JBoss Portlet Tools User Guide explains how to begin with and manage JBoss Portlet Tools.</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 Portlet Tools User Guide</title><subtitle>Provides information relating to the JBoss Portlet Tools set.</subtitle><productname>JBoss Developer Studio</productname><productnumber>3.0</productnumber><edition>1.0</edition><pubsnumber>1</pubsnumber><abstract><para>The JBoss Portlet Tools User Guide explains how to begin with and manage JBoss Portlet Tools.</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>
14 years, 3 months
JBoss Tools SVN: r25615 - branches/jbosstools-3.1.x/hibernatetools/docs/reference/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2010-10-07 22:30:16 -0400 (Thu, 07 Oct 2010)
New Revision: 25615
Modified:
branches/jbosstools-3.1.x/hibernatetools/docs/reference/en-US/Book_Info.xml
Log:
updated for publican
Modified: branches/jbosstools-3.1.x/hibernatetools/docs/reference/en-US/Book_Info.xml
===================================================================
--- branches/jbosstools-3.1.x/hibernatetools/docs/reference/en-US/Book_Info.xml 2010-10-08 02:15:41 UTC (rev 25614)
+++ branches/jbosstools-3.1.x/hibernatetools/docs/reference/en-US/Book_Info.xml 2010-10-08 02:30:16 UTC (rev 25615)
@@ -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>Hibernate Tools Reference Guide</title><subtitle>Provides information relating to the Hibernate Tools set.</subtitle><productname>JBoss Developer Studio</productname><productnumber>3.0</productnumber><edition>1.0</edition><pubsnumber>0</pubsnumber><abstract><para>The Hibernate Tools Reference Guide explains how to use the Hibernate Tools to perform reverse engineering, code generation, visualization and interaction with Hibernate.</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>Hibernate Tools Reference Guide</title><subtitle>Provides information relating to the Hibernate Tools set.</subtitle><productname>JBoss Developer Studio</productname><productnumber>3.0</productnumber><edition>1.0</edition><pubsnumber>1</pubsnumber><abstract><para>The Hibernate Tools Reference Guide explains how to use the Hibernate Tools to perform reverse engineering, code generation, visualization and interaction with Hibernate.</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>
14 years, 3 months
JBoss Tools SVN: r25614 - branches/jbosstools-3.1.x/esb/docs/esb_ref_guide/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2010-10-07 22:15:41 -0400 (Thu, 07 Oct 2010)
New Revision: 25614
Modified:
branches/jbosstools-3.1.x/esb/docs/esb_ref_guide/en-US/Book_Info.xml
Log:
updated for publican
Modified: branches/jbosstools-3.1.x/esb/docs/esb_ref_guide/en-US/Book_Info.xml
===================================================================
--- branches/jbosstools-3.1.x/esb/docs/esb_ref_guide/en-US/Book_Info.xml 2010-10-08 02:07:34 UTC (rev 25613)
+++ branches/jbosstools-3.1.x/esb/docs/esb_ref_guide/en-US/Book_Info.xml 2010-10-08 02:15:41 UTC (rev 25614)
@@ -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>ESB Tools Reference Guide</title><subtitle>Provides information relating to the ESB Tools set.</subtitle><productname>JBoss Developer Studio</productname><productnumber>3.0</productnumber><edition>1.0</edition><pubsnumber>0</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><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>ESB Tools Reference Guide</title><subtitle>Provides information relating to the ESB Tools set.</subtitle><productname>JBoss Developer Studio</productname><productnumber>3.0</productnumber><edition>1.0</edition><pubsnumber>1</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><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>
14 years, 3 months
JBoss Tools SVN: r25613 - branches/jbosstools-3.1.x/drools/docs/reference/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2010-10-07 22:07:34 -0400 (Thu, 07 Oct 2010)
New Revision: 25613
Modified:
branches/jbosstools-3.1.x/drools/docs/reference/en-US/Book_Info.xml
Log:
updated for publican
Modified: branches/jbosstools-3.1.x/drools/docs/reference/en-US/Book_Info.xml
===================================================================
--- branches/jbosstools-3.1.x/drools/docs/reference/en-US/Book_Info.xml 2010-10-08 02:01:12 UTC (rev 25612)
+++ branches/jbosstools-3.1.x/drools/docs/reference/en-US/Book_Info.xml 2010-10-08 02:07:34 UTC (rev 25613)
@@ -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>Drools Tools Reference Guide</title><subtitle>Provides information relating to the Drools Tools set.</subtitle><productname>JBoss Developer Studio</productname><productnumber>3.0</productnumber><edition>1.0</edition><pubsnumber>0</pubsnumber><abstract><para>The Drools Tools Reference Guide explains how to use the Drools Tools for creating, executing and debugging Drools processes and rules.</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>Drools Tools Reference Guide</title><subtitle>Provides information relating to the Drools Tools set.</subtitle><productname>JBoss Developer Studio</productname><productnumber>3.0</productnumber><edition>1.0</edition><pubsnumber>1</pubsnumber><abstract><para>The Drools Tools Reference Guide explains how to use the Drools Tools for creating, executing and debugging Drools processes and rules.</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>
14 years, 3 months
JBoss Tools SVN: r25612 - branches/jbosstools-3.1.x/drools/docs/guvnor_ref/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2010-10-07 22:01:12 -0400 (Thu, 07 Oct 2010)
New Revision: 25612
Modified:
branches/jbosstools-3.1.x/drools/docs/guvnor_ref/en-US/Book_Info.xml
Log:
updated for publican
Modified: branches/jbosstools-3.1.x/drools/docs/guvnor_ref/en-US/Book_Info.xml
===================================================================
--- branches/jbosstools-3.1.x/drools/docs/guvnor_ref/en-US/Book_Info.xml 2010-10-08 01:45:24 UTC (rev 25611)
+++ branches/jbosstools-3.1.x/drools/docs/guvnor_ref/en-US/Book_Info.xml 2010-10-08 02:01:12 UTC (rev 25612)
@@ -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>Eclipse Guvnor Tools Reference Guide</title><subtitle>Provides information relating to the Eclipse Guvnor Tools set.</subtitle><productname>JBoss Developer Studio</productname><productnumber>3.0</productnumber><edition>1.0</edition><pubsnumber>0</pubsnumber><abstract><para>The Eclipse Guvnor Tools Reference Guide explains how to use the Eclipse Guvnor Tools to gain access to resources controled by the Guvnor repository policies.</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>Eclipse Guvnor Tools Reference Guide</title><subtitle>Provides information relating to the Eclipse Guvnor Tools set.</subtitle><productname>JBoss Developer Studio</productname><productnumber>3.0</productnumber><edition>1.0</edition><pubsnumber>1</pubsnumber><abstract><para>The Eclipse Guvnor Tools Reference Guide explains how to use the Eclipse Guvnor Tools to gain access to resources controled by the Guvnor repository policies.</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>
14 years, 3 months