You can subscribe to this list here.
| 2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(108) |
Nov
(175) |
Dec
(23) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2002 |
Jan
(3) |
Feb
|
Mar
|
Apr
|
May
|
Jun
(5) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(18) |
Oct
(1) |
Nov
|
Dec
|
|
From: Mike H. <he...@us...> - 2003-10-02 02:06:14
|
Update of /cvsroot/jolo/jolo/thirdparty/JavaGroups-2.0.6.log4j.bin In directory sc8-pr-cvs1:/tmp/cvs-serv29685 Log Message: Import of JavaGroups 2.0. Status: Vendor Tag: JBoss Release Tags: JavaGroups_2_0_6_log4j N jolo/thirdparty/JavaGroups-2.0.6.log4j.bin/javagroups-all.jar N jolo/thirdparty/JavaGroups-2.0.6.log4j.bin/CREDITS N jolo/thirdparty/JavaGroups-2.0.6.log4j.bin/INSTALL.html N jolo/thirdparty/JavaGroups-2.0.6.log4j.bin/xercesimpl-2.1.0.jar N jolo/thirdparty/JavaGroups-2.0.6.log4j.bin/xercesxmlapi-2.1.0.jar N jolo/thirdparty/JavaGroups-2.0.6.log4j.bin/jms.jar No conflicts created by this import ***** Bogus filespec: - Imported sources |
|
From: Mike H. <he...@us...> - 2003-09-30 21:42:33
|
Update of /cvsroot/jolo/jolo In directory sc8-pr-cvs1:/tmp/cvs-serv7522 Added Files: .cvsignore Log Message: Initial add - ignoring .eclipse (created by Eclipse.) --- NEW FILE: .cvsignore --- .eclipse |
|
From: Mike H. <he...@us...> - 2003-09-30 21:23:26
|
Update of /cvsroot/jolo/jolo/thirdparty/JGroups-2.2.bin In directory sc8-pr-cvs1:/tmp/cvs-serv2047 Log Message: Initial import of Java Groups 2.2 Status: Vendor Tag: JBoss Release Tags: JGroups_2_2 N jolo/thirdparty/JGroups-2.2.bin/jgroups-all.jar N jolo/thirdparty/JGroups-2.2.bin/CREDITS N jolo/thirdparty/JGroups-2.2.bin/INSTALL.html N jolo/thirdparty/JGroups-2.2.bin/xercesimpl-2.1.0.jar N jolo/thirdparty/JGroups-2.2.bin/xercesxmlapi-2.1.0.jar N jolo/thirdparty/JGroups-2.2.bin/jms.jar No conflicts created by this import ***** Bogus filespec: - Imported sources |
|
From: Mike H. <he...@us...> - 2003-09-30 21:21:34
|
Update of /cvsroot/jolo/jolo/src/java/jolo/server/jmx
In directory sc8-pr-cvs1:/tmp/cvs-serv1647
Added Files:
JoloServer.java JoloServerMBean.java
Log Message:
Initial add.
--- NEW FILE: JoloServer.java ---
/*
* Created on Sep 29, 2003
*
* Copyright (c) 2003 Mike Heath
*
*/
package jolo.server.jmx;
/**
* @author heathm
*/
public class JoloServer implements JoloServerMBean {
/** Holds the state of the server. */
private int state;
/** Holds the name of the cluster group. */
private String clusterGroup;
/**
* Creates a new Jolo server MBean.
*
* @see jolo.server.jmx.JoloServerMBean#create()
*/
public void create() throws Exception {
state = STOPPED;
}
/**
* Starts the Jolo server.
*
* This starts the server listening for client connections, processing the game, and participating in a cluster.
*
* @see jolo.server.jmx.JoloServerMBean#start()
*/
public void start() throws Exception {
if (state != STARTING && state != STARTED) {
state = STARTING;
// TODO Add some code to make the server go!
state = STARTED;
}
}
/**
* Stops the Jolo server.
*
* @see jolo.server.jmx.JoloServerMBean#stop()
*/
public void stop() {
if (state != STOPPED && state != STOPPING) {
state = STOPPING;
// TODO Add code to stop the server.
state = STOPPED;
}
}
/**
* @see jolo.server.jmx.JoloServerMBean#destroy()
*/
public void destroy() {
// Nothing to destroy.
}
/* (non-Javadoc)
* @see jolo.server.jmx.JoloServerMBean#getClusterGroup()
*/
public String getClusterGroup() {
return clusterGroup;
}
/* (non-Javadoc)
* @see jolo.server.jmx.JoloServerMBean#setClusterGroup(java.lang.String)
*/
public void setClusterGroup(final String clusterGroup) {
stop();
this.clusterGroup = clusterGroup;
try {
start();
} catch (Exception e) {
// If an exception is thrown, pass it back up to the MBean container.
throw new RuntimeException(e);
}
}
}
--- NEW FILE: JoloServerMBean.java ---
/*
* Created on Sep 29, 2003
*
*/
package jolo.server.jmx;
/**
* @author heathm
*/
public interface JoloServerMBean {
public String OBJECT_NAME = "Jolo:service=Server";
public String[] states =
new String[] { "Stopped", "Stopping", "Starting", "Started", "Failed" };
public int STOPPED = 0;
public int STOPPING = 1;
public int STARTING = 2;
public int STARTED = 3;
public int FAILED = 4;
/**
* Method to create this MBean.
*
* @throws Exception Throw Exception to pass any exceptions on to the MBean server.
*/
public void create() throws Exception;
/**
* Method to start this MBean.
*
* @throws Exception Throws Exception to pass any excpetion on to the MBean server.
*/
public void start() throws Exception;
/**
* Method to stop this MBean
*/
public void stop();
/**
* Method to destroy this MBean.
*/
public void destroy();
/**
* Returns the name of the cluster group used by the server. The name of the group is
* what determines what cluster the server belongs to. A unique name can be
* used to place multiple clusters on the same network.
* @return The group name used by the server cluster.
*/
public String getClusterGroup();
public void setClusterGroup(String clusterGroup);
}
|
|
From: Mike H. <he...@us...> - 2003-09-30 21:21:14
|
Update of /cvsroot/jolo/jolo/src/java/jolo/server/jmx In directory sc8-pr-cvs1:/tmp/cvs-serv1540/jmx Log Message: Directory /cvsroot/jolo/jolo/src/java/jolo/server/jmx added to the repository |
|
From: Mike H. <he...@us...> - 2003-09-30 21:20:59
|
Update of /cvsroot/jolo/jolo/src/java/jolo/server In directory sc8-pr-cvs1:/tmp/cvs-serv1502/server Log Message: Directory /cvsroot/jolo/jolo/src/java/jolo/server added to the repository |
|
From: Mike H. <he...@us...> - 2003-09-30 21:14:57
|
Update of /cvsroot/jolo/jolo/src/java/jolo In directory sc8-pr-cvs1:/tmp/cvs-serv30950/jolo Log Message: Directory /cvsroot/jolo/jolo/src/java/jolo added to the repository |
|
From: Mike H. <he...@us...> - 2003-09-30 21:14:54
|
Update of /cvsroot/jolo/jolo/src/java In directory sc8-pr-cvs1:/tmp/cvs-serv30934/java Log Message: Directory /cvsroot/jolo/jolo/src/java added to the repository |
|
From: Mike H. <he...@us...> - 2003-09-30 21:14:50
|
Update of /cvsroot/jolo/jolo/src In directory sc8-pr-cvs1:/tmp/cvs-serv30913/src Log Message: Directory /cvsroot/jolo/jolo/src added to the repository |
|
From: Mike H. <he...@us...> - 2003-09-30 21:13:38
|
Update of /cvsroot/jolo/jolo/conf/jolo-server.sar/META-INF
In directory sc8-pr-cvs1:/tmp/cvs-serv30671
Added Files:
jboss-service.xml
Log Message:
Initial add.
--- NEW FILE: jboss-service.xml ---
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE server>
<!-- JBoss Service configuration file -->
<!-- Jolo Server Service Configuration -->
<server>
<classpath codebase="." />
<mbean code="jolo.server.jmx.JoloServer" name="Jolo:service=Server">
<attribute name="ClusterGroup">Jolo</attribute>
</mbean>
</server>
<!--
$Log: jboss-service.xml,v $
Revision 1.1 2003/09/30 21:13:32 heathm
Initial add.
Revision 1.2 2003/06/23 23:52:00 heathm
Using ${jboss.server.home.dir} to reference James' directory absolutely.
Revision 1.1 2003/04/13 19:26:43 heathm
Initial add of James Launcher JMX config config file.
-->
|
|
From: Mike H. <he...@us...> - 2003-09-30 21:13:19
|
Update of /cvsroot/jolo/jolo/conf/jolo-server.sar/META-INF In directory sc8-pr-cvs1:/tmp/cvs-serv30625/META-INF Log Message: Directory /cvsroot/jolo/jolo/conf/jolo-server.sar/META-INF added to the repository |
|
From: Mike H. <he...@us...> - 2003-09-30 21:13:06
|
Update of /cvsroot/jolo/jolo/conf/jolo-server.sar In directory sc8-pr-cvs1:/tmp/cvs-serv30577/jolo-server.sar Log Message: Directory /cvsroot/jolo/jolo/conf/jolo-server.sar added to the repository |
|
From: Mike H. <he...@us...> - 2003-09-30 21:12:58
|
Update of /cvsroot/jolo/jolo/conf In directory sc8-pr-cvs1:/tmp/cvs-serv30531/conf Log Message: Directory /cvsroot/jolo/jolo/conf added to the repository |
|
From: Mike H. <he...@us...> - 2003-09-30 21:08:59
|
Update of /cvsroot/jolo/jolo
In directory sc8-pr-cvs1:/tmp/cvs-serv29674
Added Files:
.classpath .project build.properties build.xml
Log Message:
Initial add.
--- NEW FILE: .classpath ---
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src/java"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="output" path=".eclipse"/>
</classpath>
--- NEW FILE: .project ---
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>Jolo</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
--- NEW FILE: build.properties ---
#
# Jolo Build properties file.
#
# $Id: build.properties,v 1.1 2003/09/30 21:08:56 heathm Exp $
#
# --- Directories used by the build system ---
output=${basedir}/output
classes=${output}/classes
src=${basedir}/src
src.java=${src}/java
conf=${basedir}/conf
# --- Compile options ---
compile.debug=yes
compile.optimize=no
compile.deprecation=yes
# --- Jolo Server Service properties ---
jolo.server.file=jolo-server.sar
jolo.server.sar=${output}/${jolo.server.file}
conf.jolo.server.sar=${conf}/jolo-server.sar
--- NEW FILE: build.xml ---
<!--
Jolo build script.
$Id: build.xml,v 1.1 2003/09/30 21:08:56 heathm Exp $
-->
<project basedir="." name="Jolo" default="all">
<target name="init">
<!-- Load Jolo build properties -->
<property name="build.properties.file" value="${basedir}/build.properties" />
<property file="${build.properties.file}" />
<!-- Define Jolo Class Path -->
<path id="classpath">
</path>
</target>
<target name="compile" depends="init" description="Compiles all Jolo sources.">
<mkdir dir="${classes}" />
<javac
srcdir="${src.java}"
destdir="${classes}"
debug="${compile.debug}"
optimize="${compile.optimize}"
deprecation="${compile.deprecation}"
>
<classpath refid="classpath" />
</javac>
</target>
<target name="package" depends="init, compile" description="Package all sources into their appropriate archives.">
<!-- Create server Service Archive (SAR) -->
<jar
jarfile="${jolo.server.sar}"
>
<fileset dir="${conf.jolo.server.sar}">
<include name="**/**"/>
</fileset>
<fileset dir="${classes}">
<include name="**/jmx/**"/>
</fileset>
</jar>
</target>
<target name="clean" depends="init" description="Remove files created by build.">
</target>
<target name="all" depends="init, compile, package" description="Builds Jolo distribution." />
<target name="full" depends="init, clean, all" description="Runs 'clean' target and then 'all' target." />
</project>
|
|
From: Mike H. <he...@us...> - 2003-09-30 21:07:47
|
Update of /cvsroot/jolo/jolo/thirdparty In directory sc8-pr-cvs1:/tmp/cvs-serv29405 Removed Files: .classpath .project build.properties build.xml Log Message: Oops, wrong directory. --- .classpath DELETED --- --- .project DELETED --- --- build.properties DELETED --- --- build.xml DELETED --- |
|
From: Mike H. <he...@us...> - 2003-09-30 21:05:19
|
Update of /cvsroot/jolo/jolo/thirdparty
In directory sc8-pr-cvs1:/tmp/cvs-serv28826
Added Files:
.classpath .project build.properties build.xml
Log Message:
Initial add.
--- NEW FILE: .classpath ---
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src/java"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="output" path=".eclipse"/>
</classpath>
--- NEW FILE: .project ---
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>Jolo</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
--- NEW FILE: build.properties ---
#
# Jolo Build properties file.
#
# $Id: build.properties,v 1.1 2003/09/30 21:05:16 heathm Exp $
#
# --- Directories used by the build system ---
output=${basedir}/output
classes=${output}/classes
src=${basedir}/src
src.java=${src}/java
conf=${basedir}/conf
# --- Compile options ---
compile.debug=yes
compile.optimize=no
compile.deprecation=yes
# --- Jolo Server Service properties ---
jolo.server.file=jolo-server.sar
jolo.server.sar=${output}/${jolo.server.file}
conf.jolo.server.sar=${conf}/jolo-server.sar
--- NEW FILE: build.xml ---
<!--
Jolo build script.
$Id: build.xml,v 1.1 2003/09/30 21:05:16 heathm Exp $
-->
<project basedir="." name="Jolo" default="all">
<target name="init">
<!-- Load Jolo build properties -->
<property name="build.properties.file" value="${basedir}/build.properties" />
<property file="${build.properties.file}" />
<!-- Define Jolo Class Path -->
<path id="classpath">
</path>
</target>
<target name="compile" depends="init" description="Compiles all Jolo sources.">
<mkdir dir="${classes}" />
<javac
srcdir="${src.java}"
destdir="${classes}"
debug="${compile.debug}"
optimize="${compile.optimize}"
deprecation="${compile.deprecation}"
>
<classpath refid="classpath" />
</javac>
</target>
<target name="package" depends="init, compile" description="Package all sources into their appropriate archives.">
<!-- Create server Service Archive (SAR) -->
<jar
jarfile="${jolo.server.sar}"
>
<fileset dir="${conf.jolo.server.sar}">
<include name="**/**"/>
</fileset>
<fileset dir="${classes}">
<include name="**/jmx/**"/>
</fileset>
</jar>
</target>
<target name="clean" depends="init" description="Remove files created by build.">
</target>
<target name="all" depends="init, compile, package" description="Builds Jolo distribution." />
<target name="full" depends="init, clean, all" description="Runs 'clean' target and then 'all' target." />
</project>
|
|
From: Mike H. <he...@us...> - 2003-09-30 20:43:58
|
Update of /cvsroot/jolo/jolo/thirdparty/commons-logging-1.0.3 In directory sc8-pr-cvs1:/tmp/cvs-serv24235 Log Message: Import of Apache Jakarta Commons Logging framework. Status: Vendor Tag: Apache Release Tags: JakartaCommonsLogging1_0_3 N jolo/thirdparty/commons-logging-1.0.3/LICENSE.txt N jolo/thirdparty/commons-logging-1.0.3/RELEASE-NOTES.txt N jolo/thirdparty/commons-logging-1.0.3/commons-logging.jar N jolo/thirdparty/commons-logging-1.0.3/commons-logging-api.jar N jolo/thirdparty/commons-logging-1.0.3/docs/api/constant-values.html N jolo/thirdparty/commons-logging-1.0.3/docs/api/overview-tree.html N jolo/thirdparty/commons-logging-1.0.3/docs/api/index-all.html N jolo/thirdparty/commons-logging-1.0.3/docs/api/deprecated-list.html N jolo/thirdparty/commons-logging-1.0.3/docs/api/allclasses-frame.html N jolo/thirdparty/commons-logging-1.0.3/docs/api/allclasses-noframe.html N jolo/thirdparty/commons-logging-1.0.3/docs/api/index.html N jolo/thirdparty/commons-logging-1.0.3/docs/api/packages.html N jolo/thirdparty/commons-logging-1.0.3/docs/api/overview-summary.html N jolo/thirdparty/commons-logging-1.0.3/docs/api/overview-frame.html N jolo/thirdparty/commons-logging-1.0.3/docs/api/serialized-form.html N jolo/thirdparty/commons-logging-1.0.3/docs/api/package-list N jolo/thirdparty/commons-logging-1.0.3/docs/api/help-doc.html N jolo/thirdparty/commons-logging-1.0.3/docs/api/stylesheet.css N jolo/thirdparty/commons-logging-1.0.3/docs/api/org/apache/commons/logging/package-frame.html N jolo/thirdparty/commons-logging-1.0.3/docs/api/org/apache/commons/logging/package-summary.html N jolo/thirdparty/commons-logging-1.0.3/docs/api/org/apache/commons/logging/package-tree.html N jolo/thirdparty/commons-logging-1.0.3/docs/api/org/apache/commons/logging/Log.html N jolo/thirdparty/commons-logging-1.0.3/docs/api/org/apache/commons/logging/LogFactory.html N jolo/thirdparty/commons-logging-1.0.3/docs/api/org/apache/commons/logging/LogSource.html N jolo/thirdparty/commons-logging-1.0.3/docs/api/org/apache/commons/logging/LogConfigurationException.html N jolo/thirdparty/commons-logging-1.0.3/docs/api/org/apache/commons/logging/impl/package-frame.html N jolo/thirdparty/commons-logging-1.0.3/docs/api/org/apache/commons/logging/impl/package-summary.html N jolo/thirdparty/commons-logging-1.0.3/docs/api/org/apache/commons/logging/impl/package-tree.html N jolo/thirdparty/commons-logging-1.0.3/docs/api/org/apache/commons/logging/impl/Jdk14Logger.html N jolo/thirdparty/commons-logging-1.0.3/docs/api/org/apache/commons/logging/impl/Log4JCategoryLog.html N jolo/thirdparty/commons-logging-1.0.3/docs/api/org/apache/commons/logging/impl/Log4jFactory.html N jolo/thirdparty/commons-logging-1.0.3/docs/api/org/apache/commons/logging/impl/Log4JLogger.html N jolo/thirdparty/commons-logging-1.0.3/docs/api/org/apache/commons/logging/impl/LogFactoryImpl.html N jolo/thirdparty/commons-logging-1.0.3/docs/api/org/apache/commons/logging/impl/LogKitLogger.html N jolo/thirdparty/commons-logging-1.0.3/docs/api/org/apache/commons/logging/impl/NoOpLog.html N jolo/thirdparty/commons-logging-1.0.3/docs/api/org/apache/commons/logging/impl/SimpleLog.html N jolo/thirdparty/commons-logging-1.0.3/src/overview.html N jolo/thirdparty/commons-logging-1.0.3/src/org/apache/commons/logging/LogSource.java N jolo/thirdparty/commons-logging-1.0.3/src/org/apache/commons/logging/LogFactory.java N jolo/thirdparty/commons-logging-1.0.3/src/org/apache/commons/logging/Log.java N jolo/thirdparty/commons-logging-1.0.3/src/org/apache/commons/logging/package.html N jolo/thirdparty/commons-logging-1.0.3/src/org/apache/commons/logging/LogConfigurationException.java N jolo/thirdparty/commons-logging-1.0.3/src/org/apache/commons/logging/impl/Log4JCategoryLog.java N jolo/thirdparty/commons-logging-1.0.3/src/org/apache/commons/logging/impl/LogFactoryImpl.java N jolo/thirdparty/commons-logging-1.0.3/src/org/apache/commons/logging/impl/SimpleLog.java N jolo/thirdparty/commons-logging-1.0.3/src/org/apache/commons/logging/impl/NoOpLog.java N jolo/thirdparty/commons-logging-1.0.3/src/org/apache/commons/logging/impl/LogKitLogger.java N jolo/thirdparty/commons-logging-1.0.3/src/org/apache/commons/logging/impl/Log4JLogger.java N jolo/thirdparty/commons-logging-1.0.3/src/org/apache/commons/logging/impl/Jdk14Logger.java N jolo/thirdparty/commons-logging-1.0.3/src/org/apache/commons/logging/impl/package.html N jolo/thirdparty/commons-logging-1.0.3/src/org/apache/commons/logging/impl/Log4jFactory.java No conflicts created by this import ***** Bogus filespec: - Imported sources |
|
From: Mike H. <he...@us...> - 2003-09-30 20:40:53
|
Update of /cvsroot/jolo/jolo/thirdparty In directory sc8-pr-cvs1:/tmp/cvs-serv23774/thirdparty Log Message: Directory /cvsroot/jolo/jolo/thirdparty added to the repository |
|
From: Mike H. <he...@us...> - 2003-09-30 20:32:30
|
Update of /cvsroot/jolo/jolo In directory sc8-pr-cvs1:/tmp/cvs-serv21643 Log Message: Initial creation of Jolo module. Status: Vendor Tag: Jolo Release Tags: Head No conflicts created by this import ***** Bogus filespec: - Imported sources |
|
From: Evan A. <an...@us...> - 2002-06-14 16:59:22
|
Update of /cvsroot/jolo/CVSROOT In directory usw-pr-cvs1:/tmp/cvs-serv20250/CVSROOT Modified Files: modules Log Message: Removed build from jolo-all module. Index: modules =================================================================== RCS file: /cvsroot/jolo/CVSROOT/modules,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** modules 14 Jun 2002 16:55:13 -0000 1.5 --- modules 14 Jun 2002 16:59:19 -0000 1.6 *************** *** 26,28 **** # spread out over the entire source repository. testsuite -d testsuite unittests ! jolo-all & bots & client & core & design & server & web & build & clientapi & package & testsuite --- 26,28 ---- # spread out over the entire source repository. testsuite -d testsuite unittests ! jolo-all & bots & client & core & design & server & web & clientapi & package & testsuite |
|
From: Evan A. <an...@us...> - 2002-06-14 16:55:16
|
Update of /cvsroot/jolo/CVSROOT In directory usw-pr-cvs1:/tmp/cvs-serv19189/CVSROOT Modified Files: modules Log Message: Index: modules =================================================================== RCS file: /cvsroot/jolo/CVSROOT/modules,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** modules 14 Jun 2002 16:53:28 -0000 1.4 --- modules 14 Jun 2002 16:55:13 -0000 1.5 *************** *** 25,27 **** # can be useful for creating a module that consists of many directories # spread out over the entire source repository. ! jolo-all & bots & client & core & design & server & web & build & clientapi & package & -d testsuite unittests --- 25,28 ---- # can be useful for creating a module that consists of many directories # spread out over the entire source repository. ! testsuite -d testsuite unittests ! jolo-all & bots & client & core & design & server & web & build & clientapi & package & testsuite |
|
From: Evan A. <an...@us...> - 2002-06-14 16:53:31
|
Update of /cvsroot/jolo/CVSROOT In directory usw-pr-cvs1:/tmp/cvs-serv18727/CVSROOT Modified Files: modules Log Message: Fixed bug. Index: modules =================================================================== RCS file: /cvsroot/jolo/CVSROOT/modules,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** modules 14 Jun 2002 16:48:47 -0000 1.3 --- modules 14 Jun 2002 16:53:28 -0000 1.4 *************** *** 25,27 **** # can be useful for creating a module that consists of many directories # spread out over the entire source repository. ! jolo-all & bots & client & core & design & server & web & build & clientapi & package & unittests -d testsuite --- 25,27 ---- # can be useful for creating a module that consists of many directories # spread out over the entire source repository. ! jolo-all & bots & client & core & design & server & web & build & clientapi & package & -d testsuite unittests |
|
From: Evan A. <an...@us...> - 2002-06-14 16:48:50
|
Update of /cvsroot/jolo/CVSROOT In directory usw-pr-cvs1:/tmp/cvs-serv17493 Modified Files: modules Log Message: Renamed unittests to testsuite within module. Index: modules =================================================================== RCS file: /cvsroot/jolo/CVSROOT/modules,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** modules 14 Jun 2002 16:24:45 -0000 1.2 --- modules 14 Jun 2002 16:48:47 -0000 1.3 *************** *** 25,27 **** # can be useful for creating a module that consists of many directories # spread out over the entire source repository. ! jolo-all & bots & client & core & design & server & web & build & clientapi & package & unittests --- 25,27 ---- # can be useful for creating a module that consists of many directories # spread out over the entire source repository. ! jolo-all & bots & client & core & design & server & web & build & clientapi & package & unittests -d testsuite |
|
From: Evan A. <an...@us...> - 2002-06-14 16:24:48
|
Update of /cvsroot/jolo/CVSROOT In directory usw-pr-cvs1:/tmp/cvs-serv11709/CVSROOT Modified Files: modules Log Message: Created virtual module jolo-all to include all others. Index: modules =================================================================== RCS file: /cvsroot/jolo/CVSROOT/modules,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** modules 21 Aug 2001 01:10:54 -0000 1.1 --- modules 14 Jun 2002 16:24:45 -0000 1.2 *************** *** 25,26 **** --- 25,27 ---- # can be useful for creating a module that consists of many directories # spread out over the entire source repository. + jolo-all & bots & client & core & design & server & web & build & clientapi & package & unittests |
|
From: Mike H. <he...@us...> - 2002-01-09 02:21:38
|
Update of /cvsroot/jolo/server/src/jolo/server/ui
In directory usw-pr-cvs1:/tmp/cvs-serv17256/jolo/server/ui
Modified Files:
LocalStrings.java
Log Message:
Removed imports that I accidentally left in.
Index: LocalStrings.java
===================================================================
RCS file: /cvsroot/jolo/server/src/jolo/server/ui/LocalStrings.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** LocalStrings.java 2002/01/08 17:41:25 1.3
--- LocalStrings.java 2002/01/09 02:21:35 1.4
***************
*** 26,35 ****
package jolo.server.ui;
- import java.io.InputStream;
- import java.io.IOException;
- import java.util.Locale;
- import java.util.MissingResourceException;
import java.util.ResourceBundle;
- import java.util.PropertyResourceBundle;
public class LocalStrings {
--- 26,30 ----
***************
*** 92,95 ****
--- 87,93 ----
/*
$Log$
+ Revision 1.4 2002/01/09 02:21:35 heathm
+ Removed imports that I accidentally left in.
+
Revision 1.3 2002/01/08 17:41:25 heathm
Fixed bundle base name so it should work for localization now.
|