[jboss-svn-commits] JBL Code SVN: r20578 - in labs/jbosstm/trunk: ArjunaCore/tsmx and 3 other directories.
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Wed Jun 18 06:32:48 EDT 2008
Author: jhalliday
Date: 2008-06-18 06:32:48 -0400 (Wed, 18 Jun 2008)
New Revision: 20578
Added:
labs/jbosstm/trunk/ArjunaCore/tsmx/lib/ext/jcommon-1.0.5.jar
labs/jbosstm/trunk/ArjunaCore/tsmx/lib/ext/jfreechart-1.0.2.jar
Removed:
labs/jbosstm/trunk/ArjunaCore/tsmx/lib/ext/jcommon-0.9.0.jar
labs/jbosstm/trunk/ArjunaCore/tsmx/lib/ext/jfreechart-0.9.15.jar
Modified:
labs/jbosstm/trunk/ArjunaCore/scripts/run-tools.bat
labs/jbosstm/trunk/ArjunaCore/scripts/run-tools.sh
labs/jbosstm/trunk/ArjunaCore/tsmx/bin/com/arjuna/ats/tools/perfgraph/DataSampler.java
labs/jbosstm/trunk/ArjunaCore/tsmx/bin/com/arjuna/ats/tools/perfgraph/InternalGraphFrame.java
labs/jbosstm/trunk/ArjunaCore/tsmx/build.xml
labs/jbosstm/trunk/atsintegration/scripts/run-tools.bat
labs/jbosstm/trunk/atsintegration/scripts/run-tools.sh
Log:
Replaced jfreechart 0.9.15 with 1.0.2 and jcommon 0.9.0 with 1.0.5. This brings jfreechart into sync with JBossAS trunk. http://jira.jboss.com/jira/browse/JBTM-373
Modified: labs/jbosstm/trunk/ArjunaCore/scripts/run-tools.bat
===================================================================
--- labs/jbosstm/trunk/ArjunaCore/scripts/run-tools.bat 2008-06-18 10:11:56 UTC (rev 20577)
+++ labs/jbosstm/trunk/ArjunaCore/scripts/run-tools.bat 2008-06-18 10:32:48 UTC (rev 20578)
@@ -1,20 +1,20 @@
rem
rem JBoss, Home of Professional Open Source
-rem Copyright 2006, Red Hat Middleware LLC, and individual contributors
-rem as indicated by the @author tags.
+rem Copyright 2006, Red Hat Middleware LLC, and individual contributors
+rem as indicated by the @author tags.
rem See the copyright.txt in the distribution for a
-rem full listing of individual contributors.
+rem full listing of individual contributors.
rem This copyrighted material is made available to anyone wishing to use,
rem modify, copy, or redistribute it subject to the terms and conditions
rem of the GNU Lesser General Public License, v. 2.1.
-rem This program is distributed in the hope that it will be useful, but WITHOUT A
-rem WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+rem This program is distributed in the hope that it will be useful, but WITHOUT A
+rem WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
rem PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
rem You should have received a copy of the GNU Lesser General Public License,
rem v.2.1 along with this distribution; if not, write to the Free Software
-rem Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+rem Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
rem MA 02110-1301, USA.
-rem
+rem
rem (C) 2005-2006,
rem @author JBoss Inc.
rem
@@ -26,8 +26,8 @@
call "%@HOME_DIRECTORY@%\bin\setup-env.bat"
rem Add ext libraries required for tools
-set CLASSPATH=%CLASSPATH%;%@HOME_DIRECTORY@%\bin\tools\ext\jfreechart-0.9.15.jar
-set CLASSPATH=%CLASSPATH%;%@HOME_DIRECTORY@%\bin\tools\ext\jcommon-0.9.0.jar
+set CLASSPATH=%CLASSPATH%;%@HOME_DIRECTORY@%\bin\tools\ext\jfreechart-1.0.2.jar
+set CLASSPATH=%CLASSPATH%;%@HOME_DIRECTORY@%\bin\tools\ext\jcommon-1.0.5.jar
"%JAVA_HOME%\bin\java" "-Dcom.arjuna.mw.ArjunaToolsFramework.lib=%@HOME_DIRECTORY@%\bin\tools" com.arjuna.ats.tools.toolsframework.ArjunaToolsFramework
goto finished
Modified: labs/jbosstm/trunk/ArjunaCore/scripts/run-tools.sh
===================================================================
--- labs/jbosstm/trunk/ArjunaCore/scripts/run-tools.sh 2008-06-18 10:11:56 UTC (rev 20577)
+++ labs/jbosstm/trunk/ArjunaCore/scripts/run-tools.sh 2008-06-18 10:32:48 UTC (rev 20578)
@@ -1,21 +1,21 @@
#!/bin/sh
#
# JBoss, Home of Professional Open Source
-# Copyright 2006, Red Hat Middleware LLC, and individual contributors
-# as indicated by the @author tags.
+# Copyright 2006, Red Hat Middleware LLC, and individual contributors
+# as indicated by the @author tags.
# See the copyright.txt in the distribution for a
-# full listing of individual contributors.
+# full listing of individual contributors.
# This copyrighted material is made available to anyone wishing to use,
# modify, copy, or redistribute it subject to the terms and conditions
# of the GNU Lesser General Public License, v. 2.1.
-# This program is distributed in the hope that it will be useful, but WITHOUT A
-# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+# This program is distributed in the hope that it will be useful, but WITHOUT A
+# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
# You should have received a copy of the GNU Lesser General Public License,
# v.2.1 along with this distribution; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
-#
+#
# (C) 2005-2006,
# @author JBoss Inc.
#
@@ -42,8 +42,8 @@
. "$@HOME_DIRECTORY@/bin/setup-env.sh"
# Add ext libraries required for tools
-CLASSPATH="$CLASSPATH$CPS$@HOME_DIRECTORY@/bin/tools/ext/jfreechart-0.9.15.jar"
-CLASSPATH="$CLASSPATH$CPS$@HOME_DIRECTORY@/bin/tools/ext/jcommon-0.9.0.jar"
+CLASSPATH="$CLASSPATH$CPS$@HOME_DIRECTORY@/bin/tools/ext/jfreechart-1.0.2.jar"
+CLASSPATH="$CLASSPATH$CPS$@HOME_DIRECTORY@/bin/tools/ext/jcommon-1.0.5.jar"
export CLASSPATH
Modified: labs/jbosstm/trunk/ArjunaCore/tsmx/bin/com/arjuna/ats/tools/perfgraph/DataSampler.java
===================================================================
--- labs/jbosstm/trunk/ArjunaCore/tsmx/bin/com/arjuna/ats/tools/perfgraph/DataSampler.java 2008-06-18 10:11:56 UTC (rev 20577)
+++ labs/jbosstm/trunk/ArjunaCore/tsmx/bin/com/arjuna/ats/tools/perfgraph/DataSampler.java 2008-06-18 10:32:48 UTC (rev 20578)
@@ -1,20 +1,20 @@
/*
* JBoss, Home of Professional Open Source
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags.
* See the copyright.txt in the distribution for a
- * full listing of individual contributors.
+ * full listing of individual contributors.
* This copyrighted material is made available to anyone wishing to use,
* modify, copy, or redistribute it subject to the terms and conditions
* of the GNU Lesser General Public License, v. 2.1.
- * This program is distributed in the hope that it will be useful, but WITHOUT A
- * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ * This program is distributed in the hope that it will be useful, but WITHOUT A
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
* PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
* You should have received a copy of the GNU Lesser General Public License,
* v.2.1 along with this distribution; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
- *
+ *
* (C) 2005-2006,
* @author JBoss Inc.
*/
@@ -159,10 +159,10 @@
/** Output column names **/
for (int count=0;count<_dataSeries.length-1;count++)
{
- out.print(_dataSeries[count].getName()+",");
+ out.print(_dataSeries[count].getKey()+",");
}
- out.println(_dataSeries[_dataSeries.length-1].getName());
+ out.println(_dataSeries[_dataSeries.length-1].getKey());
for (int count=0;count<_dataSeries[0].getItemCount();count++)
{
Modified: labs/jbosstm/trunk/ArjunaCore/tsmx/bin/com/arjuna/ats/tools/perfgraph/InternalGraphFrame.java
===================================================================
--- labs/jbosstm/trunk/ArjunaCore/tsmx/bin/com/arjuna/ats/tools/perfgraph/InternalGraphFrame.java 2008-06-18 10:11:56 UTC (rev 20577)
+++ labs/jbosstm/trunk/ArjunaCore/tsmx/bin/com/arjuna/ats/tools/perfgraph/InternalGraphFrame.java 2008-06-18 10:32:48 UTC (rev 20578)
@@ -1,20 +1,20 @@
/*
* JBoss, Home of Professional Open Source
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags.
* See the copyright.txt in the distribution for a
- * full listing of individual contributors.
+ * full listing of individual contributors.
* This copyrighted material is made available to anyone wishing to use,
* modify, copy, or redistribute it subject to the terms and conditions
* of the GNU Lesser General Public License, v. 2.1.
- * This program is distributed in the hope that it will be useful, but WITHOUT A
- * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ * This program is distributed in the hope that it will be useful, but WITHOUT A
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
* PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
* You should have received a copy of the GNU Lesser General Public License,
* v.2.1 along with this distribution; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
- *
+ *
* (C) 2005-2006,
* @author JBoss Inc.
*/
@@ -36,7 +36,7 @@
import org.jfree.chart.axis.DateAxis;
import org.jfree.chart.axis.DateTickUnit;
import org.jfree.chart.plot.XYPlot;
-import org.jfree.data.XYDataset;
+import org.jfree.data.xy.XYDataset;
import org.jfree.data.time.TimeSeriesCollection;
import javax.swing.*;
Modified: labs/jbosstm/trunk/ArjunaCore/tsmx/build.xml
===================================================================
--- labs/jbosstm/trunk/ArjunaCore/tsmx/build.xml 2008-06-18 10:11:56 UTC (rev 20577)
+++ labs/jbosstm/trunk/ArjunaCore/tsmx/build.xml 2008-06-18 10:32:48 UTC (rev 20578)
@@ -1,20 +1,20 @@
<!--
JBoss, Home of Professional Open Source
- Copyright 2006, Red Hat Middleware LLC, and individual contributors
- as indicated by the @author tags.
+ Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ as indicated by the @author tags.
See the copyright.txt in the distribution for a
- full listing of individual contributors.
+ full listing of individual contributors.
This copyrighted material is made available to anyone wishing to use,
modify, copy, or redistribute it subject to the terms and conditions
of the GNU Lesser General Public License, v. 2.1.
- This program is distributed in the hope that it will be useful, but WITHOUT A
- WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ This program is distributed in the hope that it will be useful, but WITHOUT A
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License,
v.2.1 along with this distribution; if not, write to the Free Software
- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
MA 02110-1301, USA.
-
+
(C) 2005-2006,
@author JBoss Inc.
-->
@@ -189,8 +189,8 @@
<classpath>
<path path="${build.classpath}"/>
<path path="${com.arjuna.mwlabs.ts.tsmx.dest}"/>
- <path location="${com.arjuna.mwlabs.ts.tsmx.jar.ext}/jfreechart-0.9.15.jar"/>
- <path location="${com.arjuna.mwlabs.ts.tsmx.jar.ext}/jcommon-0.9.0.jar"/>
+ <path location="${com.arjuna.mwlabs.ts.tsmx.jar.ext}/jfreechart-1.0.2.jar"/>
+ <path location="${com.arjuna.mwlabs.ts.tsmx.jar.ext}/jcommon-1.0.5.jar"/>
</classpath>
</javac>
Deleted: labs/jbosstm/trunk/ArjunaCore/tsmx/lib/ext/jcommon-0.9.0.jar
===================================================================
(Binary files differ)
Added: labs/jbosstm/trunk/ArjunaCore/tsmx/lib/ext/jcommon-1.0.5.jar
===================================================================
(Binary files differ)
Property changes on: labs/jbosstm/trunk/ArjunaCore/tsmx/lib/ext/jcommon-1.0.5.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Deleted: labs/jbosstm/trunk/ArjunaCore/tsmx/lib/ext/jfreechart-0.9.15.jar
===================================================================
(Binary files differ)
Added: labs/jbosstm/trunk/ArjunaCore/tsmx/lib/ext/jfreechart-1.0.2.jar
===================================================================
(Binary files differ)
Property changes on: labs/jbosstm/trunk/ArjunaCore/tsmx/lib/ext/jfreechart-1.0.2.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: labs/jbosstm/trunk/atsintegration/scripts/run-tools.bat
===================================================================
--- labs/jbosstm/trunk/atsintegration/scripts/run-tools.bat 2008-06-18 10:11:56 UTC (rev 20577)
+++ labs/jbosstm/trunk/atsintegration/scripts/run-tools.bat 2008-06-18 10:32:48 UTC (rev 20578)
@@ -1,20 +1,20 @@
rem
rem JBoss, Home of Professional Open Source
-rem Copyright 2006, Red Hat Middleware LLC, and individual contributors
-rem as indicated by the @author tags.
+rem Copyright 2006, Red Hat Middleware LLC, and individual contributors
+rem as indicated by the @author tags.
rem See the copyright.txt in the distribution for a
-rem full listing of individual contributors.
+rem full listing of individual contributors.
rem This copyrighted material is made available to anyone wishing to use,
rem modify, copy, or redistribute it subject to the terms and conditions
rem of the GNU Lesser General Public License, v. 2.1.
-rem This program is distributed in the hope that it will be useful, but WITHOUT A
-rem WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+rem This program is distributed in the hope that it will be useful, but WITHOUT A
+rem WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
rem PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
rem You should have received a copy of the GNU Lesser General Public License,
rem v.2.1 along with this distribution; if not, write to the Free Software
-rem Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+rem Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
rem MA 02110-1301, USA.
-rem
+rem
rem (C) 2005-2006,
rem @author JBoss Inc.
rem
@@ -32,8 +32,8 @@
set CLASSPATH=%CLASSPATH%;%@HOME_DIRECTORY@%\lib\@PRODUCT_NAME at -integration.jar
rem Add ext libraries required for tools
-set CLASSPATH=%CLASSPATH%;%@HOME_DIRECTORY@%\bin\tools\ext\jfreechart-0.9.15.jar
-set CLASSPATH=%CLASSPATH%;%@HOME_DIRECTORY@%\bin\tools\ext\jcommon-0.9.0.jar
+set CLASSPATH=%CLASSPATH%;%@HOME_DIRECTORY@%\bin\tools\ext\jfreechart-1.0.2.jar
+set CLASSPATH=%CLASSPATH%;%@HOME_DIRECTORY@%\bin\tools\ext\jcommon-1.0.5.jar
rem Start the tools framework
java "-Dcom.arjuna.mw.ArjunaToolsFramework.lib=%@HOME_DIRECTORY@%\bin\tools" -Dcom.arjuna.ats.tsmx.agentimpl=com.arjuna.ats.internal.jbossatx.agent.JBossAgentImpl com.arjuna.ats.tools.toolsframework.ArjunaToolsFramework
Modified: labs/jbosstm/trunk/atsintegration/scripts/run-tools.sh
===================================================================
--- labs/jbosstm/trunk/atsintegration/scripts/run-tools.sh 2008-06-18 10:11:56 UTC (rev 20577)
+++ labs/jbosstm/trunk/atsintegration/scripts/run-tools.sh 2008-06-18 10:32:48 UTC (rev 20578)
@@ -1,21 +1,21 @@
#!/bin/sh
#
# JBoss, Home of Professional Open Source
-# Copyright 2006, Red Hat Middleware LLC, and individual contributors
-# as indicated by the @author tags.
+# Copyright 2006, Red Hat Middleware LLC, and individual contributors
+# as indicated by the @author tags.
# See the copyright.txt in the distribution for a
-# full listing of individual contributors.
+# full listing of individual contributors.
# This copyrighted material is made available to anyone wishing to use,
# modify, copy, or redistribute it subject to the terms and conditions
# of the GNU Lesser General Public License, v. 2.1.
-# This program is distributed in the hope that it will be useful, but WITHOUT A
-# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+# This program is distributed in the hope that it will be useful, but WITHOUT A
+# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
# You should have received a copy of the GNU Lesser General Public License,
# v.2.1 along with this distribution; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
-#
+#
# (C) 2005-2006,
# @author JBoss Inc.
#
@@ -55,8 +55,8 @@
CLASSPATH="$CLASSPATH$CPS$@HOME_DIRECTORY@/lib/@PRODUCT_NAME at -integration.jar"
# Add ext libraries required for tools
-CLASSPATH="$CLASSPATH$CPS$@HOME_DIRECTORY@/bin/tools/ext/jfreechart-0.9.15.jar"
-CLASSPATH="$CLASSPATH$CPS$@HOME_DIRECTORY@/bin/tools/ext/jcommon-0.9.0.jar"
+CLASSPATH="$CLASSPATH$CPS$@HOME_DIRECTORY@/bin/tools/ext/jfreechart-1.0.2.jar"
+CLASSPATH="$CLASSPATH$CPS$@HOME_DIRECTORY@/bin/tools/ext/jcommon-1.0.5.jar"
export CLASSPATH
More information about the jboss-svn-commits
mailing list