Re: for-each (another proposal)

2001-07-04 Thread Peter Donald
On Wed, 4 Jul 2001 16:49, Stefan Bodewig wrote: > Peter Donald <[EMAIL PROTECTED]> wrote: > > On Wed, 4 Jul 2001 01:06, Chris Greenlee wrote: > >> Peter (Donald), > >> > >> Apologies, but your tone is quite often abusive. People > >> who post thoughtful comments ought not to be insulted just b

Re: obtaining expanded pathnames [pattern matching] [newbie]

2001-07-04 Thread Stefan Bodewig
On Thu, 05 Jul 2001, dave young <[EMAIL PROTECTED]> wrote: > there is a set of files matching the following path that i wish to > copy; castor*/src/main/org/exolab/** > > now, the thing is, that i need to place them into another directory > and don't wish to have the castor*/src/main bit of the

Re: no parser bug (parser bug?)

2001-07-04 Thread Stefan Bodewig
On Wed, 4 Jul 2001, Bernd Gruendling <[EMAIL PROTECTED]> wrote: > I was totally sure an comment ended with "-->" it does. > and everything before that being ignored by the parser. Not quite, see . Everything except a the string "--" wil

obtaining expanded pathnames [pattern matching] [newbie]

2001-07-04 Thread dave young
I am currently attempting to copy a whole bunch of source files that have been extracted from a tar file. the tar file extraction goes ok (although, it'd be really neat if it was possible to specify a subset of the files to be extracted from the tar file!!). there is a set of files matching the

cvs command "tag" failing ....

2001-07-04 Thread Viraj Purang
Hi, i keep gettting this error when I am trying to tag the module from inside my build.xml.Something weird about the cvspass file ...Iwas able to do this till a couple of days back.Any ideas ?tried doing fresh login ...Another strange thing is that it works from outside the build.xml file.

RE: CMP_WebLogic_CMP_RDBMS*.xml file not found error

2001-07-04 Thread Srinivas Subbaraju
Conor, Following is the snippet of my weblogic deployment descriptor IssAcq WebLogic_CMP_RDBMS 5.1.0 META-INF/CMP_WebLogic_CMP_RDBMS948707561415.xml WebLogic_CMP_RDBMS 5.1.0 IssAcq

RE: no parser bug (parser bug?)

2001-07-04 Thread Conor MacNeill
> From: Diane Holt [mailto:[EMAIL PROTECTED]] > > From what I can tell, apparently the parser doesn't let you have two > hyphens in a row without them being the two that precede the greater-than > symbol Yes, this is what the XML spec says. There was a bug report about it a while ago and I closed

RE: XSLT (was Re: for-each (another proposal))

2001-07-04 Thread Brett Knights
This is not a detailed answer but I do have a couple of thoughts on this: You can pretty easily use Ant to run a style task that builds your real buildfile. Then run an ant task to call that file. I'd tend to keep my style calling build file pretty simple. I suspect most of the problems that wi

Re: Depends and if/unless

2001-07-04 Thread Diane Holt
--- Natalia Bello <[EMAIL PROTECTED]> wrote: > What I have seen is that it always execute firs the "depends " and then > the "If" or "unless", is that true? Yes. > Is there any way to execute in the other way? Nope. You'll need to rework your targets. (If you need help doing that, send them al

Re: The "environment" property is going wacko

2001-07-04 Thread Diane Holt
Try running 'ant -version' to see whether you're really running 1.3. Diane --- [EMAIL PROTECTED] wrote: > Help! > > I've gotten this error that makes no sense - my ant installation was > working fine, now it's throwing up this error even though the > "environment" > property fully supported, ac

Re: no parser bug (parser bug?)

2001-07-04 Thread Diane Holt
--- Bernd Gruendling <[EMAIL PROTECTED]> wrote: > At 9:04 Uhr +0200 04.07.2001, Alex Gugel wrote: > >an SGML/XML comment ends with the following "--" :-) > > At 8:56 Uhr +0200 04.07.2001, Stefan Bodewig wrote: > >Sun's parser > >wants to produce localized messages and doesn't find the resources f

The "environment" property is going wacko

2001-07-04 Thread Andrew . Willshire
Help! I've gotten this error that makes no sense - my ant installation was working fine, now it's throwing up this error even though the "environment" property fully supported, according to the documentation. The build.xml I'm using is the standard one supplied with the J2EE Tutorial from Sun, s

no parser bug (parser bug?)

2001-07-04 Thread Bernd Gruendling
At 9:04 Uhr +0200 04.07.2001, Alex Gugel wrote: >an SGML/XML comment ends with the following "--" :-) At 8:56 Uhr +0200 04.07.2001, Stefan Bodewig wrote: >Sun's parser >wants to produce localized messages and doesn't find the resources for >your language setting (and it wants to tell you that com

Re: CMP_WebLogic_CMP_RDBMS*.xml file not found error

2001-07-04 Thread Conor MacNeill
Try adding the attribute newCMP="true" to the element. You may still have problems, however. Can you let me know the snippet in your weblogic deployment descriptor where it refers to the CMP descriptor. I suggest you also set the keepgeneric attribute to true. You can then examine the jar file th

CMP_WebLogic_CMP_RDBMS*.xml file not found error

2001-07-04 Thread Srinivas Subbaraju
Hi, I have the Following code in build.xml file When I run this build file I am getting the following error. [ejbc] Could not find descriptor file with Jar entry name 'META-INF/WL-CMP- TYPES/CMP_WebLogic_CMP_RDBMS948707561415.xml' for specified type WebLogi

Re: PATCH to Rmic.java for IIOP

2001-07-04 Thread Stefan Bodewig
I've committed the changes we've been talking about a few minutes ago. Stefan

Meaningful subject lines please

2001-07-04 Thread Conor MacNeill
Hi all, Just a request. If you want to raise a new issue, then send a new email. Don't just reply to the last convenient email that happened to come along. I don't know about other people but I certainly use the subject of an email to understand what that email may be about. Thanks Conor

RE: NullPointerException in XMLJUnitResultFormatter.endTest causing junitreports to hang

2001-07-04 Thread Stephane Bailliez
>From a quick overview in the code, it would mean that you have an exception in the constructor of your testcase. Which normally should not happen since your testcase constructor should be a simple: MyTestCase(String name){ super(name); } Do you have any resource initialisation in the constructo

Depends and if/unless

2001-07-04 Thread Natalia Bello
Title: Depends and if/unless Hello, I would like to know what will be the flow in this case is the same that ?? What I have seen is that it always execute firs the "depends " and then the "If" or "unless", is that true? Is there any way to execute in the other way? Thanks in advance, Nat

Re: parser bug?

2001-07-04 Thread Ola Mellgren
Hi Everybody, I'm working on a build-script for a web-logic (version 6.1) server application and am encountering problems. I'm not sure if it's because the application is huge or something else. Does anyone out there have some build-script that successfully builds a J2EE application you might li