[JBoss-dev] CVS update: jboss-j2ee/src/main/javax/jms JMSException.java

2001-08-21 Thread Jason Dillon
$Revision: 1.1 $ + * @author a href=mailto:[EMAIL PROTECTED];Jason Dillon/a + * @version $Revision: 1.2 $ **/ -public class JMSException extends Exception +public class JMSException + extends Exception { - // CONSTRUCTORS

[JBoss-dev] CVS update: jboss-j2ee/src/main/javax/jms JMSException.java

2001-08-21 Thread Jason Dillon
/21 23:51:22 1.3 @@ -23,16 +23,16 @@ * * @author Chris Kimpton ([EMAIL PROTECTED]) * @author a href=mailto:[EMAIL PROTECTED];Jason Dillon/a - * @version $Revision: 1.2 $ + * @version $Revision: 1.3 $ **/ public class JMSException extends Exception

[JBoss-dev] jbossmq selector parser grammer source

2001-08-21 Thread Jason Dillon
Where is the source for the selector parser? It looks like it is not parsing the literals true and false, it only looks for TRUE and FALSE. I am contemplating modifiying parser.java int yylex() under the //CST group group, but I would rather modify the grammer source and regenerate the parser.

[JBoss-dev] CVS update: jbossmq/src/main/org/jboss/mq/selectors Operator.java

2001-08-21 Thread Jason Dillon
User: user57 Date: 01/08/21 17:44:44 Modified:src/main/org/jboss/mq/selectors Operator.java Log: o Operator.equal() will properly compute the equality when using Boolean types. Revision ChangesPath 1.3 +3 -1

[JBoss-dev] CVS update: jbossmq/src/main/org/jboss/mq/selectors parser.java

2001-08-21 Thread Jason Dillon
User: user57 Date: 01/08/21 17:52:31 Modified:src/main/org/jboss/mq/selectors parser.java Log: o Added support for the true and false boolean literals. Revision ChangesPath 1.3 +2 -2 jbossmq/src/main/org/jboss/mq/selectors/parser.java Index:

[JBoss-dev] CVS update: jbossmq/src/main/org/jboss/mq/selectors Selector.java

2001-08-21 Thread Jason Dillon
javax.jms.JMSException; +import org.apache.log4j.Category; + import org.jboss.mq.SpyMessage; /** @@ -19,112 +21,153 @@ * * @author Norbert Lataille ([EMAIL PROTECTED]) * @author Juha Lindfors ([EMAIL PROTECTED]) + * @author a href=mailto:[EMAIL PROTECTED];Jason

Re: [JBoss-dev] manual build

2001-08-21 Thread Jason Dillon
What xml jars did you have to update? Where did you update them? XSLTransform, in ant.jar, uses several classes from Optional.jar, so build.sh also has to include optional.jar on the local classpath. By adding optional.jar to the system classpath, all support jars will also have to be on the

Re: [JBoss-dev] jbossmq load balancing across vms

2001-08-21 Thread Jason Dillon
and javaspaces..?? david jencks On 2001.08.21 19:06:08 -0400 Jason Dillon wrote: Hello again, I am running into a problem with the latest JBossMQ wrt using it to load balance across machines. I have one machine which acts as a message router, running JBossMQ. All other machines use

RE: [JBoss-dev] jbossmq load balancing across vms

2001-08-21 Thread Jason Dillon
What this means is that if you have multiple receivers waiting for a message from a queue and a message arrives then it will be immediately delivered to receiver A. Receiver A is now removed from the HashSet, however if receiver A finishes its processing and requests another message before

[JBoss-dev] How about a JBoss-2.6 release?

2001-08-22 Thread Jason Dillon
Today I finally was able to stabalize my app with the HEAD branch (which I have been trying todo for the past few months). I still have to do much QA before I am willing to take this to production. I expect a few minor snags, but nothing major *fingers crossed*. Any ways, I think that with

Re: [JBoss-dev] jbossmq selector parser grammer source

2001-08-22 Thread Jason Dillon
the parser that is used for EJB-QL to parse. It is a generic non-deterministic recusive descent parser, so it is not fast for complicated grammers. This is only an issue if you want to parse on the fly. -dain - Original Message - From: Jason Dillon [EMAIL PROTECTED] To: [EMAIL PROTECTED

Re: [JBoss-dev] Extra ;

2001-08-22 Thread Jason Dillon
I think it still fails to compile some org.jboss.web.* stuff properly. --jason On Wed, 22 Aug 2001, Dain Sundstrom wrote: Fixed, will commit change as soon as sourcefouge cvs is back on line. Does jikes work compile jboss server now? -dain - Original Message - From: Dave Smith

Re: [JBoss-dev] CVS update: build/jbossmq build.xml

2001-08-22 Thread Jason Dillon
This change will break the release-* targets, as well as the consistency model where files are generated. Why do you need to work off of this directory for project.release output? --jason On Wed, 22 Aug 2001, Hiram Chirino wrote: User: chirino Date: 01/08/22 08:15:47 Modified:

Re: [JBoss-dev] jbossmq selector parser grammer source

2001-08-22 Thread Jason Dillon
Unless s has been toUpperCase() (which I did not explictly check), then this is not spec compliant. It needs to check for true and false too. Do you know what is used to generate parser.java from jms.y? --jason On Wed, 22 Aug 2001, Juha-P Lindfors wrote: It's here:

Re: [JBoss-dev] jbossmq selector parser grammer source

2001-08-22 Thread Jason Dillon
Where do I get this from? I would like to integrate it into the build system. --jason On Wed, 22 Aug 2001, Juha-P Lindfors wrote: On Wed, 22 Aug 2001, Jason Dillon wrote: Do you know what is used to generate parser.java from jms.y? //### This file created by BYACC 1.8(/Java

Re: [JBoss-dev] jbossmq selector parser grammer source

2001-08-22 Thread Jason Dillon
Lets convert the grammer/parser to javacc so that everyone can build it. --jason On Wed, 22 Aug 2001, Hiram Chirino wrote: I think Byacc. Can I get a win32 ver of that??? Regards, Hiram From: Jason Dillon [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject

RE: [JBoss-dev] JIKES

2001-08-22 Thread Jason Dillon
an interface, the method was subsequently removed from that |interface. | | | | But the ';' problem went away ... | | Jason Dillon wrote: | I think it still fails to compile some org.jboss.web.* stuff properly. | | --jason | | | On Wed, 22 Aug 2001, Dain Sundstrom wrote

Re: [JBoss-dev] Extra ;

2001-08-22 Thread Jason Dillon
... Jason Dillon wrote: I think it still fails to compile some org.jboss.web.* stuff properly. --jason On Wed, 22 Aug 2001, Dain Sundstrom wrote: Fixed, will commit change as soon as sourcefouge cvs is back on line. Does jikes work compile jboss server now? -dain

[JBoss-dev] CVS update: contrib/jetty/src/main/org/jboss/jetty SetupHandler.java

2001-08-22 Thread Jason Dillon
User: user57 Date: 01/08/22 17:06:00 Modified:jetty/src/main/org/jboss/jetty SetupHandler.java Log: o added empty handle(String, HttpRequest, HttpResponse) so this will compile based on the version of jetty in thridparty. Revision ChangesPath 1.7 +63 -44

[JBoss-dev] CVS update: jbossmx/src/main/org/jboss/ha HAConfigNodeImpl.java

2001-08-22 Thread Jason Dillon
User: user57 Date: 01/08/22 17:09:05 Modified:src/main/org/jboss/ha HAConfigNodeImpl.java Log: o using this.wait() instead of wait(), to avoid compile problem with older jikes. Revision ChangesPath 1.2 +3 -3

Re: [JBoss-dev] Re: JavaStyle jar??

2001-08-22 Thread Jason Dillon
Add the license readme file too if it makes you feel better =) --jason On Wed, 22 Aug 2001, Hiram Chirino wrote: Hi David.. Sorry I missed your earlier message. I found the JavaStyle tool via the ejbdoclet project. They are the ones that make the ant task for it. Since the ejbdoclet

Re: [JBoss-dev] CVS update: build/jbossmq build.xml

2001-08-22 Thread Jason Dillon
On Wed, 22 Aug 2001, Hiram Chirino wrote: I guess this is not the best way, but it was the quickest way I could get it to build the standalone binary distribution right. No worries. I know the current release stuff for shared modules has problems. What I need the build to do is: - go

RE: [JBoss-dev] JIKES

2001-08-22 Thread Jason Dillon
On Thu, 23 Aug 2001, marc fleury wrote: can't believe you are pulling an RTFM on moi! That is not what I meant at all. I knew you had the answer already, but I wanted to let you (and others) know that there was more resource on the subject available. man these open source young arrogant

[JBoss-dev] CVS update: jbossmx/etc local.properties-example

2001-08-25 Thread Jason Dillon
User: user57 Date: 01/08/25 21:02:19 Removed: etc local.properties-example Log: o removing source module's etc/local.properties-example, this was just adding complexity confusion. Put local properties in build/local.properties.

[JBoss-dev] CVS update: contrib/jetty/etc local.properties-example

2001-08-25 Thread Jason Dillon
User: user57 Date: 01/08/25 21:02:20 Removed: jetty/etc local.properties-example Log: o removing source module's etc/local.properties-example, this was just adding complexity confusion. Put local properties in build/local.properties.

[JBoss-dev] CVS update: jboss/etc local.properties-example

2001-08-25 Thread Jason Dillon
User: user57 Date: 01/08/25 21:02:21 Removed: etc local.properties-example Log: o removing source module's etc/local.properties-example, this was just adding complexity confusion. Put local properties in build/local.properties.

[JBoss-dev] CVS update: admin/src/etc local.properties-example

2001-08-25 Thread Jason Dillon
User: user57 Date: 01/08/25 21:02:19 Removed: src/etc local.properties-example Log: o removing source module's etc/local.properties-example, this was just adding complexity confusion. Put local properties in build/local.properties.

[JBoss-dev] CVS update: admin/etc local.properties-example

2001-08-25 Thread Jason Dillon
User: user57 Date: 01/08/25 21:02:19 Removed: etc local.properties-example Log: o removing source module's etc/local.properties-example, this was just adding complexity confusion. Put local properties in build/local.properties.

[JBoss-dev] CVS update: manual/etc local.properties-example

2001-08-25 Thread Jason Dillon
User: user57 Date: 01/08/25 21:02:20 Removed: etc local.properties-example Log: o removing source module's etc/local.properties-example, this was just adding complexity confusion. Put local properties in build/local.properties.

[JBoss-dev] CVS update: jnp/etc local.properties-example

2001-08-25 Thread Jason Dillon
User: user57 Date: 01/08/25 21:02:20 Removed: etc local.properties-example Log: o removing source module's etc/local.properties-example, this was just adding complexity confusion. Put local properties in build/local.properties.

[JBoss-dev] CVS update: jbosssx/etc local.properties-example

2001-08-25 Thread Jason Dillon
User: user57 Date: 01/08/25 21:02:21 Removed: etc local.properties-example Log: o removing source module's etc/local.properties-example, this was just adding complexity confusion. Put local properties in build/local.properties.

[JBoss-dev] CVS update: contrib/varia/etc local.properties-example

2001-08-25 Thread Jason Dillon
User: user57 Date: 01/08/25 21:02:20 Removed: varia/etc local.properties-example Log: o removing source module's etc/local.properties-example, this was just adding complexity confusion. Put local properties in build/local.properties.

[JBoss-dev] CVS update: tools/planet57/buildmagic/bin build

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 00:00:35 Removed: planet57/buildmagic/bin build Log: o consolidated all tools/* stuff into tools/bin and tools/lib o upgraded ant to 1.4beta2 o consolidated config.xml into build.xml o using path to generate absolute paths to project.root

[JBoss-dev] CVS update: tools/apache/ant/lib/ext optional.jar

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 00:00:33 Removed: apache/ant/lib/ext optional.jar Log: o consolidated all tools/* stuff into tools/bin and tools/lib o upgraded ant to 1.4beta2 o consolidated config.xml into build.xml o using path to generate absolute paths to project.root

[JBoss-dev] CVS update: tools/jedit/javastyle/lib JavaStyle.jar

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 00:00:34 Removed: jedit/javastyle/lib JavaStyle.jar Log: o consolidated all tools/* stuff into tools/bin and tools/lib o upgraded ant to 1.4beta2 o consolidated config.xml into build.xml o using path to generate absolute paths to project.root

[JBoss-dev] CVS update: manual build.sh build.xml config.xml

2001-08-26 Thread Jason Dillon
### == ### ## ## -## Copyright (c) 1998-2000 by Jason Dillon [EMAIL PROTECTED]## -## ## -## This file

[JBoss-dev] CVS update: admin build.sh build.xml config.xml

2001-08-26 Thread Jason Dillon
### == ### ## ## -## Copyright (c) 1998-2000 by Jason Dillon [EMAIL PROTECTED]## -## ## -## This file

[JBoss-dev] CVS update: jboss-j2ee build.sh build.xml config.xml

2001-08-26 Thread Jason Dillon
### == ### ## ## -## Copyright (c) 1998-2000 by Jason Dillon [EMAIL PROTECTED

[JBoss-dev] CVS update: tools/apache/ant/bin ant ant.bat antRun antRun.bat lcp.bat runant.pl

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 00:00:31 Removed: apache/ant/bin ant ant.bat antRun antRun.bat lcp.bat runant.pl Log: o consolidated all tools/* stuff into tools/bin and tools/lib o upgraded ant to 1.4beta2 o consolidated config.xml into build.xml o

[JBoss-dev] CVS update: jboss/docs LICENSE.txt index.html styles.css

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 00:00:31 Removed: docs LICENSE.txt index.html styles.css Log: o consolidated all tools/* stuff into tools/bin and tools/lib o upgraded ant to 1.4beta2 o consolidated config.xml into build.xml o using path to generate absolute paths to

[JBoss-dev] CVS update: tools/jedit javastyle.txt

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 00:00:33 Removed: jeditjavastyle.txt Log: o consolidated all tools/* stuff into tools/bin and tools/lib o upgraded ant to 1.4beta2 o consolidated config.xml into build.xml o using path to generate absolute paths to project.root o

[JBoss-dev] CVS update: jbossmq build.sh build.xml config.xml

2001-08-26 Thread Jason Dillon
### == ### ## ## -## Copyright (c) 1998-2000 by Jason Dillon [EMAIL PROTECTED]## -## ## -## This file

[JBoss-dev] CVS update: build/jboss/etc local.properties-example local.properties-production

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 00:00:29 Modified:jboss/etc local.properties-example local.properties-production Log: o consolidated all tools/* stuff into tools/bin and tools/lib o upgraded ant to 1.4beta2 o consolidated config.xml into build.xml o

[JBoss-dev] CVS update: jboss/src/docs LICENSE.txt

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 00:00:31 Added: src/docs LICENSE.txt Log: o consolidated all tools/* stuff into tools/bin and tools/lib o upgraded ant to 1.4beta2 o consolidated config.xml into build.xml o using path to generate absolute paths to project.root o changed

[JBoss-dev] CVS update: contrib/jetty build.sh build.xml config.xml

2001-08-26 Thread Jason Dillon
### == ### ## ## -## Copyright (c) 1998-2000 by Jason Dillon [EMAIL PROTECTED

[JBoss-dev] CVS update: tools/planet57/buildmagic/lib buildmagic-tasks.jar

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 00:00:35 Removed: planet57/buildmagic/lib buildmagic-tasks.jar Log: o consolidated all tools/* stuff into tools/bin and tools/lib o upgraded ant to 1.4beta2 o consolidated config.xml into build.xml o using path to generate absolute paths to

[JBoss-dev] CVS update: CVSROOT modules

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 00:08:59 Modified:.modules Log: o changed _jboss_tools _jboss_thirdparty to tools thirdparty o removed _jbossmq_tools, jboss-mq will just include tools o removed ant buildmagic aliases, get tools if you want this Revision

Re: [JBoss-dev] build system updates

2001-08-26 Thread Jason Dillon
needs to be in this section. More to come, let me know if you have any issues, questions or comments. =) --jason On Sat, 25 Aug 2001, Jason Dillon wrote: I am in the middle of some modifications to the build system, which will reduce the overall complexity... step by step. The first step

[JBoss-dev] manual build problems

2001-08-26 Thread Jason Dillon
I am still having trouble getting the style task to complete successfully. Everytime I have ever tried to run it, I get a CNFE or something that looks like the snip below. I added the xalan2 xalan1 compat jars to tools/lib, which solved the class problem, but I haven't a clue why it is

[JBoss-dev] CVS update: manual build.xml

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 00:44:40 Modified:.build.xml Log: o moved fop.jar int tools/lib o added xalan2 stuff from xalan_j-2.0 o updated style.style attribute for ant 1.4 (needed a more absolute path for the stylesheet). Revision ChangesPath 1.6

[JBoss-dev] CVS update: tools/apache/fop/lib fop.jar

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 00:44:40 Removed: apache/fop/lib fop.jar Log: o moved fop.jar int tools/lib o added xalan2 stuff from xalan_j-2.0 o updated style.style attribute for ant 1.4 (needed a more absolute path for the stylesheet).

Re: [jboss-docs] RE: [JBoss-dev] build system updates

2001-08-26 Thread Jason Dillon
|There is still an issue with the manual build, which I will look at as soon |as I get a win32 script ready, then on to the testsuite (yikes). please test suite first, people are checking in stuff without running the testsuite at all and I found it to be broken yesterday, it used to run 1

[JBoss-dev] CVS update: thirdparty/sun/javacc - Imported sources

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 14:34:25 Log: o Import of JavaCC v2.0 from Sun (Metamata/Webgain/Whatever) Status: Vendor Tag: sun Release Tags: javacc_2_0 N thirdparty/sun/javacc/COPYRIGHT N thirdparty/sun/javacc/lib/metalist N

[JBoss-dev] CVS update: thirdparty/sun/javacc/lib Uninstall.class gnomeuninstall.sh install.properties javacc-16.xpm javacc-32.xpm javacc-48.xpm javacc-jj-16.xpm javacc-jj-32.xpm javacc-jj-48.xpm kdeuninstall.sh metakey metalist

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 14:36:04 Removed: sun/javacc/lib Uninstall.class gnomeuninstall.sh install.properties javacc-16.xpm javacc-32.xpm javacc-48.xpm javacc-jj-16.xpm javacc-jj-32.xpm javacc-jj-48.xpm

[JBoss-dev] CVS update: jbossmq build.xml

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 14:39:02 Modified:.build.xml Log: o added javacc of jms.jj to the build via compile-parsers (part of the compile target) Revision ChangesPath 1.9 +35 -3 jbossmq/build.xml Index: build.xml

[JBoss-dev] CVS update: jbosstest/src/stylesheets - New directory

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 14:42:12 jbosstest/src/stylesheets - New directory ___ Jboss-development mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-development

[JBoss-dev] *.kpx files

2001-08-26 Thread Jason Dillon
Does anyone still use these? What are they for? --jason ___ Jboss-development mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-development

[JBoss-dev] jsr77.jar

2001-08-26 Thread Jason Dillon
Do we know what sun plans on calling this on release? I would like to move it to thirdparty. If we don't know, then I will just move it to thirdparty/sun/jsr77. --jason ___ Jboss-development mailing list [EMAIL PROTECTED]

[JBoss-dev] CVS update: jboss build.xml

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 14:54:26 Modified:.build.xml Log: o removed castor jar task from jars target, it has moved to plugins/varia Revision ChangesPath 1.10 +1 -11 jboss/build.xml Index: build.xml

[JBoss-dev] CVS update: jbosstest/src/main/org/jboss/ant/taskdefs ConcatenateFiles.java

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 15:21:05 Removed: src/main/org/jboss/ant/taskdefs ConcatenateFiles.java Log: o moved local tasks from main to tasks ___ Jboss-development mailing list [EMAIL PROTECTED]

[JBoss-dev] CVS update: jbosstest/src/tasks/org/jboss/ant/taskdefs ConcatenateFiles.java

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 15:21:05 Added: src/tasks/org/jboss/ant/taskdefs ConcatenateFiles.java Log: o moved local tasks from main to tasks Revision ChangesPath 1.2 +211 -0jbosstest/src/tasks/org/jboss/ant/taskdefs/ConcatenateFiles.java

[JBoss-dev] CVS update: thirdparty/sun/jsr77 - Imported sources

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 15:24:45 Log: o importing jsr77 preleased stuff (from server/src/lib) Status: Vendor Tag: sun Release Tags: jsr77_prerelease N thirdparty/sun/jsr77/lib/jsr77.jar No conflicts created by this import

[JBoss-dev] CVS update: jbosstest/src/main/org/jboss/test/security/test TestLoginContext.java TestNamespacePermissions.java TestPermissionName.java

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 15:20:28 Modified:src/main/org/jboss/test/security/test TestLoginContext.java TestNamespacePermissions.java TestPermissionName.java Log: o commented out assertEquals() because it will cause compile

[JBoss-dev] CVS update: jboss build.xml

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 15:27:56 Modified:.build.xml Log: o moved jsr77 stuff to thirdparty/sun/jsr77 Revision ChangesPath 1.11 +8 -9 jboss/build.xml Index: build.xml ===

[JBoss-dev] CVS update: jboss/src/lib README.txt jsr77.jar

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 15:28:02 Removed: src/lib README.txt jsr77.jar Log: o moved jsr77 stuff to thirdparty/sun/jsr77 ___ Jboss-development mailing list [EMAIL PROTECTED]

[JBoss-dev] CVS update: jboss/src/etc/conf/default jboss.jcml

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 15:50:00 Modified:src/etc/conf/default jboss.jcml Log: o auto deploy from deploy/lib then deploy Revision ChangesPath 1.61 +3 -3 jboss/src/etc/conf/default/jboss.jcml Index: jboss.jcml

Re: [JBoss-dev] Small deploy question (RH)

2001-08-26 Thread Jason Dillon
Nope, you are fine, the order was wrong in the default jboss.jcml. I just fixed this. Thanks. --jason On Sun, 26 Aug 2001, Dave Smith wrote: Using the default jboss.jcml file, start jboss with a jar file already in the deploy directory that uses the default data source. It will not

[JBoss-dev] CVS update: jbosstest/src/resources/remote-naming/META-INF - New directory

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 16:41:21 jbosstest/src/resources/remote-naming/META-INF - New directory ___ Jboss-development mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-development

[JBoss-dev] CVS update: jbosstest/src/resources/secure-perf/META-INF - New directory

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 16:58:51 jbosstest/src/resources/secure-perf/META-INF - New directory ___ Jboss-development mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-development

[JBoss-dev] CVS update: jbosstest/src/resources/secure-perf - New directory

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 16:58:49 jbosstest/src/resources/secure-perf - New directory ___ Jboss-development mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-development

RE: [JBoss-dev] build system updates

2001-08-26 Thread Jason Dillon
. | |=) | |--jason | | |On Sat, 25 Aug 2001, Jason Dillon wrote: | | I am in the middle of some modifications to the build system, which will | reduce the overall complexity... step by step. The first step will | consolidate all of the tools/** stuff into tools/bin |tools/lib. It will | also

[JBoss-dev] CVS update: jbosstest/src/resources/naming/META-INF remote-ejb-jar.xml remote-jboss.xml

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 21:48:23 Removed: src/resources/naming/META-INF remote-ejb-jar.xml remote-jboss.xml Log: o Integrated the testsuite module with the new build system. ___ Jboss-development mailing

[JBoss-dev] CVS update: jbosstest build.sh build.xml

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 21:48:20 Added: .build.sh build.xml Log: o Integrated the testsuite module with the new build system. Revision ChangesPath 1.2 +122 -0jbosstest/build.sh 1.2 +1617 -0 jbosstest/build.xml

[JBoss-dev] CVS update: jbosstest/src/tasks/org/jboss/ant/taskdefs ConcatenateFiles.java

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 21:48:25 Removed: src/tasks/org/jboss/ant/taskdefs ConcatenateFiles.java Log: o Integrated the testsuite module with the new build system. ___ Jboss-development mailing list [EMAIL PROTECTED]

[JBoss-dev] CVS update: jbosstest/src/resources jndi.properties

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 21:48:23 Added: src/resources jndi.properties Log: o Integrated the testsuite module with the new build system. Revision ChangesPath 1.1 jbosstest/src/resources/jndi.properties Index: jndi.properties

[JBoss-dev] CVS update: jbosstest/src/resources/perf client.policy jndi.properties roles.properties users.properties

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 21:48:23 Removed: src/resources/perf client.policy jndi.properties roles.properties users.properties Log: o Integrated the testsuite module with the new build system. ___

[JBoss-dev] CVS update: jbosstest/src/resources/remote-naming/META-INF ejb-jar.xml jboss.xml

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 21:48:24 Added: src/resources/remote-naming/META-INF ejb-jar.xml jboss.xml Log: o Integrated the testsuite module with the new build system. Revision ChangesPath 1.1

[JBoss-dev] CVS update: jbosstest/src/build build.bat build.sh build.xml run_tests.xml

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 21:48:22 Removed: src/build build.bat build.sh build.xml run_tests.xml Log: o Integrated the testsuite module with the new build system. ___ Jboss-development mailing list [EMAIL PROTECTED]

[JBoss-dev] CVS update: admin build.sh build.xml

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 21:47:23 Modified:.build.sh build.xml Log: o Added a build.log, which will be created as a dependency of init unless buildlog-disabled is set. This contains all info higher messages from the build system. o build.sh will now cd

[JBoss-dev] CVS update: jbosstest/src/build/subprojects build-bank.xml build-bench.xml build-bmp.xml build-cts.xml build-dbtest.xml build-hello.xml build-idgen.xml build-jbossmq.xml build-jmsra.xml build-jmx.xml build-jrmp.xml build-load.xml build-lock.xml build-logging.xml build-mdb.xml build-naming.xml build-perf.xml build-readahead.xml build-security.xml build-testbean.xml build-threading.xml build-web.xml build-xa.xml

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 21:48:22 Removed: src/build/subprojects build-bank.xml build-bench.xml build-bmp.xml build-cts.xml build-dbtest.xml build-hello.xml build-idgen.xml build-jbossmq.xml build-jmsra.xml

[JBoss-dev] CVS update: jbosstest/src/stylesheets details1.xsl summary1.xsl summary2.xsl

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 21:48:25 Added: src/stylesheets details1.xsl summary1.xsl summary2.xsl Log: o Integrated the testsuite module with the new build system. Revision ChangesPath 1.1 jbosstest/src/stylesheets/details1.xsl Index:

[JBoss-dev] CVS update: jbosstest/src/resources/security-spec/META-INF ejb-jar.xml jboss.xml

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 21:48:25 Added: src/resources/security-spec/META-INF ejb-jar.xml jboss.xml Log: o Integrated the testsuite module with the new build system. Revision ChangesPath 1.1

[JBoss-dev] CVS update: jnp build.sh build.xml

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 21:47:22 Modified:.build.sh build.xml Log: o Added a build.log, which will be created as a dependency of init unless buildlog-disabled is set. This contains all info higher messages from the build system. o build.sh will now cd

[JBoss-dev] CVS update: jbosstest/src/resources/security-spec SRPVerifierStore.ser auth.conf jndi.properties roles.properties sample_policy.xml server.policy tst-policy.xml tst.policy users.properties

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 21:48:25 Added: src/resources/security-spec SRPVerifierStore.ser auth.conf jndi.properties roles.properties sample_policy.xml server.policy tst-policy.xml tst.policy users.properties

[JBoss-dev] CVS update: jbosstest/src/resources/secure-perf client.policy jndi.properties roles.properties users.properties

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 21:48:24 Added: src/resources/secure-perf client.policy jndi.properties roles.properties users.properties Log: o Integrated the testsuite module with the new build system. Revision ChangesPath 1.1

[JBoss-dev] CVS update: jbosstest/src/lib auth.conf connector.jar deploy.jar jaas.jar jboss-client.jar jboss-j2ee.jar jboss-jaas.jar jboss-jdbc_ext.jar jbossmq-client.jar jbosssx-client.jar jmxri.jar jndi.jar jndi.properties jnp-client.jar junit.jar log4j.jar mail.jar oswego-concurrent.jar servlet.jar

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 21:48:23 Removed: src/lib auth.conf connector.jar deploy.jar jaas.jar jboss-client.jar jboss-j2ee.jar jboss-jaas.jar jboss-jdbc_ext.jar jbossmq-client.jar jbosssx-client.jar jmxri.jar

[JBoss-dev] CVS update: jbossmx build.sh build.xml

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 21:47:23 Modified:.build.sh build.xml Log: o Added a build.log, which will be created as a dependency of init unless buildlog-disabled is set. This contains all info higher messages from the build system. o build.sh will now cd

[JBoss-dev] CVS update: jbosstest/src/resources/security/META-INF ejb-jar-proxy.xml jboss-proxy.xml jboss-spec.xml

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 21:48:24 Removed: src/resources/security/META-INF ejb-jar-proxy.xml jboss-proxy.xml jboss-spec.xml Log: o Integrated the testsuite module with the new build system. ___

[JBoss-dev] CVS update: manual build.sh build.xml

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 21:47:22 Modified:.build.sh build.xml Log: o Added a build.log, which will be created as a dependency of init unless buildlog-disabled is set. This contains all info higher messages from the build system. o build.sh will now cd

[JBoss-dev] CVS update: jboss-j2ee build.sh build.xml

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 21:47:23 Modified:.build.sh build.xml Log: o Added a build.log, which will be created as a dependency of init unless buildlog-disabled is set. This contains all info higher messages from the build system. o build.sh will now cd

[JBoss-dev] CVS update: jboss build.sh build.xml

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 21:47:23 Modified:.build.sh build.xml Log: o Added a build.log, which will be created as a dependency of init unless buildlog-disabled is set. This contains all info higher messages from the build system. o build.sh will now cd

[JBoss-dev] CVS update: contrib/jetty build.sh build.xml

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 21:47:23 Modified:jettybuild.sh build.xml Log: o Added a build.log, which will be created as a dependency of init unless buildlog-disabled is set. This contains all info higher messages from the build system. o build.sh will now cd

[JBoss-dev] CVS update: jbosscx build.sh build.xml

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 21:47:21 Modified:.build.sh build.xml Log: o Added a build.log, which will be created as a dependency of init unless buildlog-disabled is set. This contains all info higher messages from the build system. o build.sh will now cd

[JBoss-dev] CVS update: jbosssx build.sh build.xml

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 21:47:24 Modified:.build.sh build.xml Log: o Added a build.log, which will be created as a dependency of init unless buildlog-disabled is set. This contains all info higher messages from the build system. o build.sh will now cd

[JBoss-dev] CVS update: jbosstest/src/resources/security-proxy SRPVerifierStore.ser auth.conf jndi.properties roles.properties sample_policy.xml server.policy tst-policy.xml tst.policy users.properties

2001-08-26 Thread Jason Dillon
User: user57 Date: 01/08/26 21:48:24 Added: src/resources/security-proxy SRPVerifierStore.ser auth.conf jndi.properties roles.properties sample_policy.xml server.policy tst-policy.xml tst.policy

[JBoss-dev] build.log

2001-08-26 Thread Jason Dillon
I added a builg log to each module build system using the record task. If a module is called from the build module, then it will not create a new log. If you have issues with the build system, please include your log (or a snip of it if it is huge) so I can better assist you. --jason

[JBoss-dev] CVS update: jboss/src/etc jboss.kpx

2001-08-27 Thread Jason Dillon
User: user57 Date: 01/08/27 00:56:06 Removed: src/etc jboss.kpx Log: removing all .kpx files ___ Jboss-development mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-development

[JBoss-dev] CVS update: manual/src/etc jbossdocs.kpx

2001-08-27 Thread Jason Dillon
User: user57 Date: 01/08/27 00:56:06 Removed: src/etc jbossdocs.kpx Log: removing all .kpx files ___ Jboss-development mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-development

[JBoss-dev] CVS update: jnp/src/etc jnp.kpx

2001-08-27 Thread Jason Dillon
User: user57 Date: 01/08/27 00:56:06 Removed: src/etc jnp.kpx Log: removing all .kpx files ___ Jboss-development mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-development

[JBoss-dev] CVS update: jbosstest/src/etc jbosstest.kpx

2001-08-27 Thread Jason Dillon
User: user57 Date: 01/08/27 00:56:06 Removed: src/etc jbosstest.kpx Log: removing all .kpx files ___ Jboss-development mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-development

<    5   6   7   8   9   10   11   12   13   14   >