Re: Ant 1.7

2004-02-25 Thread Consult-smi, Coenen
> Maybe it is possible to revive this vfs project. Other people sending 
> emails to the list have mentioned the slide project
> and also the new http://jcp.org/en/jsr/detail?id=170 Java Content 
> Repository API proposal.
> I have had a look at the JCR web page. I think that there is some 
> overlap between VFS and JCR, but it is not the same.

> I have the impression that JCR is meant for data storages which have 
> versioning capabilities. It sounds like the equivalent of JDBC for
> version control systems, a common API through which one could access 
> CVS, Perforce, PVCS, Source Safe, Subversion,
> but I do not feel like JCR is meant for accessing physical storages 
> which do not have versioning capabilities such as file systems or 
> jar/zip files.

Based on the information given on the JSR170 project page, one indeed gets the 
impression that the API is soley designed for content repositories.
However, the expert group has divided up the API into two levels:
There's a main package and some subpackages named query, version, observation, 
access, a.s.o...
A level 1 implementation is only required to implement the core JCR classes 
and none of the classes in the subpackages. Therefore, simple data repositories
like filesystems can be used with JSR. 
Level 2 implementations, like CMS systems must implement the subpackages as 
well..

greetings
Sascha

Alexander (Sascha) Coenen
Software Consultant
Information Systems

AIRBUS
Spares Support and Services

PHONE +49 (0)40 5076 2316
FAX +49 (0)40 59 25 46
E-MAIL [EMAIL PROTECTED]
WEB SITE http://spares.airbus.com



This e-mail is intended only for the above addressee. It may contain
privileged information. If you are not the addressee you must not copy,
distribute, disclose or use any of the information in it. If you have
received it in error please delete it and immediately notify the sender.
Security Notice: all e-mail, sent to or from this address, may be
accessed by someone other than the recipient, for system management and
security reasons. This access is controlled under Regulation of
Investigatory Powers Act 2000, Lawful Business Practises.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: cvs commit: ant/src/main/org/apache/tools/ant UnknownElement.java

2004-02-25 Thread Matt Benson
--- Steve Loughran <[EMAIL PROTECTED]> wrote:
> Actually I didnt add the word misspelt; that bit was
> already there. I 
> just indented the text there in a desparate attempt
> to improve 
> readability. I worry that that error message is too
> long.

Doh--I wondered why it looked so familiar.

-Matt

__
Do you Yahoo!?
Yahoo! Mail SpamGuard - Read only the mail you want.
http://antispam.yahoo.com/tools

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: cvs commit: ant/src/main/org/apache/tools/ant UnknownElement.java

2004-02-25 Thread Steve Loughran
Matt Benson wrote:
--- Steve Loughran <[EMAIL PROTECTED]> wrote:
Matt Benson wrote:
Do we get to have another long discussion about
the spellings of words related to spelling now?  ;)
I thought I'd tried to phrase my use of misspelling
so it was suitable 
everywhere

I was just remembering last time, no complaints
here...
Of course, the fact that I am from the state of
Tennessee may contribute to the fact that I accept
"misspelt" more readily than people from other regions
of the US.  :)
Actually I didnt add the word misspelt; that bit was already there. I 
just indented the text there in a desparate attempt to improve 
readability. I worry that that error message is too long.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


cvs commit: ant/src/main/org/apache/tools/ant/taskdefs PumpStreamHandler.java

2004-02-25 Thread mbenson
mbenson 2004/02/25 10:58:40

  Modified:src/main/org/apache/tools/ant/taskdefs
PumpStreamHandler.java
  Log:
  Javadoc all public methods.
  
  Revision  ChangesPath
  1.18  +57 -4 
ant/src/main/org/apache/tools/ant/taskdefs/PumpStreamHandler.java
  
  Index: PumpStreamHandler.java
  ===
  RCS file: 
/home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/PumpStreamHandler.java,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- PumpStreamHandler.java9 Feb 2004 21:05:20 -   1.17
  +++ PumpStreamHandler.java25 Feb 2004 18:58:40 -  1.18
  @@ -25,8 +25,6 @@
* Copies standard output and error of subprocesses to standard output and
* error of the parent process.
*
  - * TODO: standard input of the subprocess is not implemented.
  - *
* @author [EMAIL PROTECTED]
* @since Ant 1.2
*/
  @@ -40,6 +38,12 @@
   private OutputStream err;
   private InputStream input;
   
  +/**
  + * Construct a new PumpStreamHandler.
  + * @param out the output OutputStream.
  + * @param err the error OutputStream.
  + * @param in the input InputStream.
  + */
   public PumpStreamHandler(OutputStream out, OutputStream err,
InputStream input) {
   this.out = out;
  @@ -47,29 +51,55 @@
   this.input = input;
   }
   
  +/**
  + * Construct a new PumpStreamHandler.
  + * @param out the output OutputStream.
  + * @param err the error OutputStream.
  + */
   public PumpStreamHandler(OutputStream out, OutputStream err) {
   this(out, err, null);
   }
   
  +/**
  + * Construct a new PumpStreamHandler.
  + * @param outAndErr the output/error OutputStream.
  + */
   public PumpStreamHandler(OutputStream outAndErr) {
   this(outAndErr, outAndErr);
   }
   
  +/**
  + * Construct a new PumpStreamHandler.
  + */
   public PumpStreamHandler() {
   this(System.out, System.err);
   }
   
  +/**
  + * Set the InputStream from which to read the
  + * standard output of the process.
  + * @param is the InputStream.
  + */
   public void setProcessOutputStream(InputStream is) {
   createProcessOutputPump(is, out);
   }
   
  -
  +/**
  + * Set the InputStream from which to read the
  + * standard error of the process.
  + * @param is the InputStream.
  + */
   public void setProcessErrorStream(InputStream is) {
   if (err != null) {
   createProcessErrorPump(is, err);
   }
   }
   
  +/**
  + * Set the OutputStream by means of which
  + * input can be sent to the process.
  + * @param os the OutputStream.
  + */
   public void setProcessInputStream(OutputStream os) {
   if (input != null) {
   inputThread = createPump(input, os, true);
  @@ -82,6 +112,9 @@
   }
   }
   
  +/**
  + * Start the Threads.
  + */
   public void start() {
   outputThread.start();
   errorThread.start();
  @@ -90,6 +123,9 @@
   }
   }
   
  +/**
  + * Stop pumping the streams.
  + */
   public void stop() {
   try {
   outputThread.join();
  @@ -122,22 +158,39 @@
   }
   }
   
  +/**
  + * Get the error stream.
  + * @return OutputStream.
  + */
   protected OutputStream getErr() {
   return err;
   }
   
  +/**
  + * Get the output stream.
  + * @return OutputStream.
  + */
   protected OutputStream getOut() {
   return out;
   }
   
  +/**
  + * Create the pump to handle process output.
  + * @param is the InputStream.
  + * @param os the OutputStream.
  + */
   protected void createProcessOutputPump(InputStream is, OutputStream os) {
   outputThread = createPump(is, os);
   }
   
  +/**
  + * Create the pump to handle error output.
  + * @param is the InputStream.
  + * @param os the OutputStream.
  + */
   protected void createProcessErrorPump(InputStream is, OutputStream os) {
   errorThread = createPump(is, os);
   }
  -
   
   /**
* Creates a stream pumper to copy the given input stream to the
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 26257] - [PATCH] Add ignoreRemoved attribute to CvsTagDiff

2004-02-25 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=26257

[PATCH] Add ignoreRemoved attribute to CvsTagDiff

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |ASSIGNED

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 27219] - in an macro outputs wrong

2004-02-25 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=27219

 in an  macro outputs wrong





--- Additional Comments From [EMAIL PROTECTED]  2004-02-25 17:09 ---
The backtrace is part of the macrodef for two purposes:
1) macrodefs can be difficult to get correct - esp, macrodefs
   calling macrodefs.
2) It is not obvious where to say the location of the error is-
   at the point of call, or within the macro
For example:


  
the macro failed  
  


   

Should the error location be (1) or (2)

For a proper emulation of a real task, it should (2).

I propose to add a attribute backtraceonerror (default true) to
macrodef control the generation of the backtrace.

3:
4:  
5:A fail message
6:  
7:
8:

Will only:
BUILD FAILED
/home/preilly/learning/ant/backtrace.xml:8: A fail message

and
3:
4:  
5:A fail message
6:  
7:
8:

will generate:
BUILD FAILED
/home/preilly/learning/ant/backtrace.xml:8: Following error occured while
executing this line
/home/preilly/learning/ant/backtrace.xml:5: A fail message

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 27226] - Tar files with compression ="gzip" cannot be unzipped on Solaris

2004-02-25 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=27226

Tar  files with compression ="gzip" cannot be unzipped on Solaris





--- Additional Comments From [EMAIL PROTECTED]  2004-02-25 16:45 ---
Maybe this is long file name problem? In that case you need to use GNU tar on 
Solaris.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: cvs commit: ant/src/main/org/apache/tools/ant UnknownElement.java

2004-02-25 Thread Matt Benson
--- Steve Loughran <[EMAIL PROTECTED]> wrote:
> Matt Benson wrote:
> > Do we get to have another long discussion about
> the spellings of words related to spelling now?  ;)
> 
> I thought I'd tried to phrase my use of misspelling
> so it was suitable 
> everywhere

I was just remembering last time, no complaints
here...
Of course, the fact that I am from the state of
Tennessee may contribute to the fact that I accept
"misspelt" more readily than people from other regions
of the US.  :)

-Matt

__
Do you Yahoo!?
Yahoo! Mail SpamGuard - Read only the mail you want.
http://antispam.yahoo.com/tools

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: cvs commit: ant/src/main/org/apache/tools/ant UnknownElement.java

2004-02-25 Thread Steve Loughran
Matt Benson wrote:
--- [EMAIL PROTECTED] wrote:
  + " - You have misspelt '" +
have spelt wrong or not " + lSep

Do we get to have another long discussion about the
spellings of words related to spelling now?  ;)

I thought I'd tried to phrase my use of misspelling so it was suitable 
everywhere

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


DO NOT REPLY [Bug 27226] - Tar files with compression ="gzip" cannot be unzipped on Solaris

2004-02-25 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=27226

Tar  files with compression ="gzip" cannot be unzipped on Solaris





--- Additional Comments From [EMAIL PROTECTED]  2004-02-25 16:28 ---
I cannot reproduce this.  I have used:





And opened the resulting file with gunzip on Intel and Sun Solaris.  Gnu tar 
ztf seems able to read the resulting tar.gz as well.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 27226] - Tar files with compression ="gzip" cannot be unzipped on Solaris

2004-02-25 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=27226

Tar  files with compression ="gzip" cannot be unzipped on Solaris





--- Additional Comments From [EMAIL PROTECTED]  2004-02-25 16:08 ---
Forgot to mention that winzip 8.1 is working even with those files that unix
gzip refuses.
Regards,  Gabriele.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 27226] New: - Tar files with compression ="gzip" cannot be unzipped on Solaris

2004-02-25 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=27226

Tar  files with compression ="gzip" cannot be unzipped on Solaris

   Summary: Tar  files with compression ="gzip" cannot be unzipped
on Solaris
   Product: Ant
   Version: 1.6.1
  Platform: PC
OS/Version: Windows XP
Status: NEW
  Severity: Critical
  Priority: Other
 Component: Core tasks
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


Ant 1.6.0 and 1.6.1
Here we are again with zip files.

Tar task with compression="gzip" on windows XP, produces files that cannot be
uncompressed on Sun Solaris.
Gzip spit this message:
gunzip: test.tar.gz: invalid compressed data--format violated

Last good known release is 1.5.3.1 (it's the last i installed before trying to
move to 1.6). This release produces files that can be uncompressed without 
problems.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: cvs commit: ant/src/main/org/apache/tools/ant UnknownElement.java

2004-02-25 Thread Matt Benson
--- [EMAIL PROTECTED] wrote:
>+ " - You have misspelt '" +
> have spelt wrong or not " + lSep

Do we get to have another long discussion about the
spellings of words related to spelling now?  ;)

__
Do you Yahoo!?
Yahoo! Mail SpamGuard - Read only the mail you want.
http://antispam.yahoo.com/tools

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: ant/src/main/org/apache/tools/ant/taskdefs Java.java

2004-02-25 Thread stevel
stevel  2004/02/25 06:38:51

  Modified:src/main/org/apache/tools/ant/taskdefs Java.java
  Log:
  nothing wrong with setFailOnError(false) and spawn.
  
  Revision  ChangesPath
  1.85  +1 -2  ant/src/main/org/apache/tools/ant/taskdefs/Java.java
  
  Index: Java.java
  ===
  RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/Java.java,v
  retrieving revision 1.84
  retrieving revision 1.85
  diff -u -r1.84 -r1.85
  --- Java.java 9 Feb 2004 21:05:19 -   1.84
  +++ Java.java 25 Feb 2004 14:38:51 -  1.85
  @@ -405,9 +405,8 @@
*/
   public void setFailonerror(boolean fail) {
   failOnError = fail;
  -incompatibleWithSpawn = true;
  +incompatibleWithSpawn |= fail;
   }
  -
   /**
* The working directory of the process
*
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



unknown

2004-02-25 Thread peter
something about you!
<>
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

cvs commit: ant WHATSNEW

2004-02-25 Thread stevel
stevel  2004/02/25 05:02:52

  Modified:.WHATSNEW
  Log:
  documented
  
  Revision  ChangesPath
  1.555 +3 -0  ant/WHATSNEW
  
  Index: WHATSNEW
  ===
  RCS file: /home/cvs/ant/WHATSNEW,v
  retrieving revision 1.554
  retrieving revision 1.555
  diff -u -r1.554 -r1.555
  --- WHATSNEW  24 Feb 2004 14:27:51 -  1.554
  +++ WHATSNEW  25 Feb 2004 13:02:52 -  1.555
  @@ -21,6 +21,9 @@
   
   * AntLikeTasksAtTopLevelTest failed on cygwin.
   
  +*  and  are working together. Bugzilla report 27218
  +
  +
   Other changes:
   --
   
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 27218] - arent cloneable

2004-02-25 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=27218

 arent cloneable

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED



--- Additional Comments From [EMAIL PROTECTED]  2004-02-25 12:59 ---
Committed a fix; I suppose a test may be nice too. There will be an implit test
on gump once I get smartfrog compiling and testing there.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: ant/src/main/org/apache/tools/ant/types Assertions.java

2004-02-25 Thread stevel
stevel  2004/02/25 04:57:12

  Modified:src/main/org/apache/tools/ant/types Assertions.java
  Log:
  added cloning support; bug #27218
  
  Revision  ChangesPath
  1.12  +2 -2  ant/src/main/org/apache/tools/ant/types/Assertions.java
  
  Index: Assertions.java
  ===
  RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/types/Assertions.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- Assertions.java   9 Feb 2004 21:05:36 -   1.11
  +++ Assertions.java   25 Feb 2004 12:57:12 -  1.12
  @@ -65,7 +65,7 @@
* @since Ant 1.6
* @author steve loughran
*/
  -public class Assertions extends DataType {
  +public class Assertions extends DataType implements Cloneable {
   
   /**
* enable/disable sys assertions; null means undefined
  @@ -221,7 +221,7 @@
* @return a cli
* @throws CloneNotSupportedException
*/
  -protected Object clone() throws CloneNotSupportedException {
  +public Object clone() throws CloneNotSupportedException {
   Assertions that = (Assertions) super.clone();
   that.assertionList = (ArrayList) assertionList.clone();
   return that;
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 27219] New: - in an macro outputs wrong

2004-02-25 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=27219

 in an  macro outputs wrong

   Summary:  in an  macro outputs wrong
   Product: Ant
   Version: 1.7Alpha (nightly)
  Platform: Other
OS/Version: Other
Status: NEW
  Severity: Minor
  Priority: Other
 Component: Core
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


write a macro, with  and add it to a file that you . Then run
in it. I would have expected to see the fail message, as you normally see, but
instead you see nesting information:

build.xml:184: Following error occured while executing this line
common.xml:121: Unit tests failed see

Is this appropriate?

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 27218] New: - arent cloneable

2004-02-25 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=27218

 arent cloneable

   Summary:  arent cloneable
   Product: Ant
   Version: 1.7Alpha (nightly)
  Platform: Other
OS/Version: Other
Status: NEW
  Severity: Normal
  Priority: Other
 Component: Core
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


because assertions arent cloneable, you cannot use them in the cvs_head version
of junit as it tries to clone the vm. This is not an issue with the 1.6 branch,
as cloning only went into cvs later

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: ant/src/main/org/apache/tools/ant UnknownElement.java

2004-02-25 Thread stevel
stevel  2004/02/25 04:44:42

  Modified:src/main/org/apache/tools/ant UnknownElement.java
  Log:
  adding hints about presetdef/macrodef to the errors. Now that I am using 
them, they are the main source of this error :)
  
  Revision  ChangesPath
  1.77  +6 -3  ant/src/main/org/apache/tools/ant/UnknownElement.java
  
  Index: UnknownElement.java
  ===
  RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/UnknownElement.java,v
  retrieving revision 1.76
  retrieving revision 1.77
  diff -u -r1.76 -r1.77
  --- UnknownElement.java   9 Feb 2004 21:05:16 -   1.76
  +++ UnknownElement.java   25 Feb 2004 12:44:42 -  1.77
  @@ -456,19 +456,22 @@
   + " - You have misspelt '" + elementName + "'." + lSep
   + "   Fix: check your spelling." + lSep
   + " - The task needs an external JAR file to execute" + lSep
  -+ "   and this is not found at the right place in the 
classpath." + lSep
  ++ " and this is not found at the right place in the 
classpath." + lSep
   + "   Fix: check the documentation for dependencies." + lSep
   + "   Fix: declare the task." + lSep
   + " - The task is an Ant optional task and optional.jar is 
absent" + lSep
   + "   Fix: look for optional.jar in ANT_HOME/lib, download if 
needed" + lSep
   + " - The task was not built into optional.jar as dependent"  + 
lSep
  -+ "   libraries were not found at build time." + lSep
  ++ " libraries were not found at build time." + lSep
   + "   Fix: look in the JAR to verify, then rebuild with the 
needed" + lSep
   + "   libraries, or download a release version from apache.org" 
+ lSep
   + " - The build file was written for a later version of Ant" + 
lSep
   + "   Fix: upgrade to at least the latest release version of 
Ant" + lSep
   + " - The task is not an Ant core or optional task " + lSep
  -+ "   and needs to be declared using ." + lSep
  ++ " and needs to be declared using ." + lSep
  ++ " - You are attempting to use a task defined using " + lSep
  ++ " or  but have spelt wrong or not " + 
lSep
  ++ "   defined it at the point of use" + lSep
   + lSep
   + "Remember that for JAR files to be visible to Ant tasks 
implemented" + lSep
   + "in ANT_HOME/lib, the files must be in the same directory or 
on the" + lSep
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: ant/docs/manual/CoreTasks macrodef.html

2004-02-25 Thread peterreilly
peterreilly2004/02/25 03:34:22

  Modified:docs/manual/CoreTasks Tag: ANT_16_BRANCH macrodef.html
  Log:
  Sync with HEAD
  
  Revision  ChangesPath
  No   revision
  No   revision
  1.2.2.13  +5 -3  ant/docs/manual/CoreTasks/macrodef.html
  
  Index: macrodef.html
  ===
  RCS file: /home/cvs/ant/docs/manual/CoreTasks/macrodef.html,v
  retrieving revision 1.2.2.12
  retrieving revision 1.2.2.13
  diff -u -r1.2.2.12 -r1.2.2.13
  --- macrodef.html 9 Feb 2004 22:12:07 -   1.2.2.12
  +++ macrodef.html 25 Feb 2004 11:34:22 -  1.2.2.13
  @@ -58,9 +58,11 @@
 task using a notation similar to the ant property notation
 - @{attribute name}. (May be remembered as "put the substitution
 AT this location").
  -  The escape sequence @@{x} is used to allow @{x} to be
  -  placed in the text without substitution of x.
  -  This corresponds to the $${x} escape sequence for properties.
  +
  +
  +  The escape sequence @@ is used to escape @. This allows @{x} to be
  +  placed in the text without substitution of x by using @@{x}.
  +  This corresponds to the $$ escape sequence for properties.
   
   
 The case of the attribute is ignored, so @{myAttribute} is treated the
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: ant/docs/manual/CoreTasks macrodef.html

2004-02-25 Thread peterreilly
peterreilly2004/02/25 03:33:34

  Modified:docs/manual/CoreTasks macrodef.html
  Log:
  manual page update for @@ change in macrodef
  
  Revision  ChangesPath
  1.13  +5 -3  ant/docs/manual/CoreTasks/macrodef.html
  
  Index: macrodef.html
  ===
  RCS file: /home/cvs/ant/docs/manual/CoreTasks/macrodef.html,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- macrodef.html 27 Jan 2004 17:43:25 -  1.12
  +++ macrodef.html 25 Feb 2004 11:33:34 -  1.13
  @@ -57,9 +57,11 @@
 task using a notation similar to the ant property notation
 - @{attribute name}. (May be remembered as "put the substitution
 AT this location").
  -  The escape sequence @@{x} is used to allow @{x} to be
  -  placed in the text without substitution of x.
  -  This corresponds to the $${x} escape sequence for properties.
  +
  +
  +  The escape sequence @@ is used to escape @. This allows @{x} to be
  +  placed in the text without substitution of x by using @@{x}.
  +  This corresponds to the $$ escape sequence for properties.
   
   
 The case of the attribute is ignored, so @{myAttribute} is treated the
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 27192] - fixcrlf task does not work when source=target

2004-02-25 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=27192

fixcrlf task does not work when source=target

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||WORKSFORME



--- Additional Comments From [EMAIL PROTECTED]  2004-02-25 09:49 ---
As Matt says, if the file does not need to changed, fixcrlf will
not change it.
The following works for me:
  


  Hello World
  line 2




  diff inplace/test.txt inplace_test.copy

  

output:
inplace:
   [delete] Deleting directory /home/preilly/learning/ant/inplace
 [copy] Copying 1 file to /home/preilly/learning/ant
[ac:shellscript] 1c1,4
[ac:shellscript] < 
[ac:shellscript]   Hello World  line 2\ No newline at end of file
[ac:shellscript] ---
[ac:shellscript] > 
[ac:shellscript] >   Hello World
[ac:shellscript] >   line 2
[ac:shellscript] > 
[ac:shellscript] \ No newline at end of file


[ac:shellscript] Result: 1

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 27211] New: - Add charset property to MailLogger

2004-02-25 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=27211

Add charset property to MailLogger

   Summary: Add charset property to MailLogger
   Product: Ant
   Version: 1.6.1
  Platform: PC
OS/Version: Windows XP
Status: NEW
  Severity: Enhancement
  Priority: Other
 Component: Core
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


Add a charset property to the MailLogger so that the charset of the email can be
set.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



AntStructure and optional tasks

2004-02-25 Thread Dale Anson
I noticed that the AntStructure task doesn't include the optional tasks
in the dtd that it produces. I've read through the source for
AntStructure, which led me to Project, which led me to ComponentHelper,
which led me to realize there isn't an obvious way (or at least not
obvious to me) to get a dtd generated for the optional tasks. Any ideas
on how to do this?

Thanks,

Dale




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 18267] - ejbjar does not work with WebSphere 5

2004-02-25 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=18267

ejbjar does not work with WebSphere 5





--- Additional Comments From [EMAIL PROTECTED]  2004-02-25 00:06 ---
you might want to take a look at wsanttasks.jar in $(WAS_HOME)/lib.  the 
javadocs are in:
$(WAS_HOME)/web/apidocs/com/ibm/websphere/ant/tasks/package-summary.html

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]