cvs commit: ant/docs/manual install.html

2005-05-26 Thread scohen
scohen  2005/05/26 16:16:35

  Modified:docs/manual install.html
  Log:
  add installation information for the jpackage distirbution
  
  Revision  ChangesPath
  1.84  +38 -1 ant/docs/manual/install.html
  
  Index: install.html
  ===
  RCS file: /home/cvs/ant/docs/manual/install.html,v
  retrieving revision 1.83
  retrieving revision 1.84
  diff -u -r1.83 -r1.84
  --- install.html  13 May 2005 10:26:20 -  1.83
  +++ install.html  26 May 2005 23:16:35 -  1.84
  @@ -122,7 +122,8 @@
   h3Setup/h3
   p
   Before you can run ant there is some additional set up you
  -will need to do:/p
  +will need to do unless you are installing the a href=#jpackageRPM 
  +version from jpackage.org/a:/p
   ul
   liAdd the codebin/code directory to your path./li
   liSet the codeANT_HOME/code environment variable to the
  @@ -168,6 +169,42 @@
   setenv JAVA_HOME /usr/local/jdk-1.2.2
   set path=( $path $ANT_HOME/bin )/pre
   
  +a name=jpackage/a
  +h3RPM version from jpackage.org/h3
  +p
  +The a href=www.jpackage.orgJPackage project/a distributes an RPM 
version of Ant.  
  +With this version, it is not necessary to set code JAVA_HOME /codeor 
  +code ANT_HOME /codeenvironment variables and the RPM installer will 
correctly
  +place the Ant executable on your path.  The code ANT_HOME 
/codeenvironment variable will
  +be ignored, if set, when running the JPackage version of Ant.
  +/pp
  +Optional jars for the JPackage version are handled in two ways.  The 
easiest, and
  +best way is to get these external libraries from JPackage if JPackage has 
them 
  +available.  (Note: for each such library, you will have to get both the 
external 
  +package itself (e.g. codeoro-2.0.8-2jpp.noarch.rpm/code) and the small 
library that links 
  +ant and the external package (e.g. 
codeant-apache-oro-1.6.2-3jpp.noarch.rpm/code).
  +/pp
  +However, JPackage does not package proprietary software, and since some of 
the
  +optional packages depend on proprietary jars, they must be handled as 
follows.  
  +This may violate the spirit of JPackage, but it is necessary if you need 
these proprietary packages.
  +For example, suppose you want to install support for starteam, which 
jpackage does not 
  +support:
  +ol
  +liDecide where you want to deploy the extra jars.  One option is in 
code$ANT_HOME/lib/code, 
  +which, for JPackage is usually code/usr/share/ant/lib/code.  Another, 
less messy option
  +is to create an code.ant/lib/code subdirectory of your home directory 
and place your 
  +non-jpackage ant jars there, thereby avoiding mixing jpackage
  +libraries with non-jpacakge stuff in the same folder.  More information on 
where Ant finds its libraries is available 
  +a href=http://ant.apache.org/manual/running.html#libs;here/a/li
  +liDownload a non-jpackage binary distribution from the regular a 
href=http://ant.apache.org/bindownload.cgi;Apache Ant site/a/li
  +liUnzip or untar the distribution into a temporary directory/li
  +liCopy the linking jar, in this case codeant-starteam.jar/code, into 
the library directory you 
  +chose in step 1 above./li
  +liCopy the proprietary jar itself into the same directory./li
  +/ol
  +Finally, if for some reason you are running on a system with both the 
JPackage and Apache versions of Ant
  +available, if you should want to run the Apache version (which will have to 
be specified with an absolute file name,
  +not found on the path), you should use Ant's code--noconfig/code 
command-line switch to avoid JPackage's classpath mechanism.
   
   h3a name=advancedAdvanced/a/h3
   
  
  
  

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



Re: cvs commit: ant/docs/manual install.html

2005-05-13 Thread Stefan Bodewig
On Thu, 12 May 2005, Steve Cohen [EMAIL PROTECTED] wrote:

 I don't know, though, guys.  What do you think?  Is it really worth
 it to avoid making the users upgrade?

For me it depends on when you wanted to see the new task.

If you wanted to include it in 1.6.4 (which is unlikely to happen
anyway, given Steve's and Matt's comments) then you wouldn't get a +1
from me if it forced people to upgrade commons-net.  This is just too
fresh IMHO.

If you are shooting for 1.7, having the code depend on commons-net
1.4.x is fine with me.

Stefan

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



cvs commit: ant/docs/manual install.html

2005-05-13 Thread scohen
scohen  2005/05/13 03:26:20

  Modified:src/main/org/apache/tools/ant/taskdefs/optional/net FTP.java
   docs/manual install.html
  Added:   src/main/org/apache/tools/ant/taskdefs/optional/net
FTPConfigurator.java
  Log:
  Add FTPConfigurator class so as to avoid forcing users to upgrade to version 
1.4.0 of commons-net.
  As long as users use the ftp task as they have previously, they do not need 
1.4.0.
  
  Revision  ChangesPath
  1.69  +48 -37
ant/src/main/org/apache/tools/ant/taskdefs/optional/net/FTP.java
  
  Index: FTP.java
  ===
  RCS file: 
/home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/optional/net/FTP.java,v
  retrieving revision 1.68
  retrieving revision 1.69
  diff -u -r1.68 -r1.69
  --- FTP.java  12 May 2005 04:04:59 -  1.68
  +++ FTP.java  13 May 2005 10:26:20 -  1.69
  @@ -17,7 +17,6 @@
   package org.apache.tools.ant.taskdefs.optional.net;
   
   import org.apache.commons.net.ftp.FTPClient;
  -import org.apache.commons.net.ftp.FTPClientConfig;
   import org.apache.commons.net.ftp.FTPFile;
   import org.apache.commons.net.ftp.FTPReply;
   import java.io.BufferedInputStream;
  @@ -1323,11 +1322,47 @@
   
   
   /**
  + * @return Returns the systemKeyConfig.
  + */
  +String getSystemKeyConfig() {
  +return systemKeyConfig;
  +}
  +/**
  + * @return Returns the defaultDateFormatConfig.
  + */
  +String getDefaultDateFormatConfig() {
  +return defaultDateFormatConfig;
  +}
  +/**
  + * @return Returns the recentDateFormatConfig.
  + */
  +String getRecentDateFormatConfig() {
  +return recentDateFormatConfig;
  +}
  +/**
  + * @return Returns the serverLanguageCodeConfig.
  + */
  +String getServerLanguageCodeConfig() {
  +return serverLanguageCodeConfig;
  +}
  +/**
  + * @return Returns the serverTimeZoneConfig.
  + */
  +String getServerTimeZoneConfig() {
  +return serverTimeZoneConfig;
  +}
  +/**
  + * @return Returns the shortMonthNamesConfig.
  + */
  +String getShortMonthNamesConfig() {
  +return shortMonthNamesConfig;
  +}
  +/**
* Checks to see that all required parameters are set.
*
* @throws BuildException if the configuration is not valid.
*/
  -protected void checkConfiguration() throws BuildException {
  +protected void checkAttributes() throws BuildException {
   if (server == null) {
   throw new BuildException(server attribute must be set!);
   }
  @@ -1352,6 +1387,15 @@
   throw new BuildException(chmod attribute must be set for chmod 
+ action!);
   }
  +
  +if (this.isConfigurationSet) {
  +try {
  +Class.forName(org.apache.commons.net.ftp.FTPClientConfig);
  +} catch (ClassNotFoundException e) {
  +throw new BuildException(
  + commons-net.jar = 1.4.0 is required for at least one of 
the attributes specified.);
  +}
  +}
   }
   
   
  @@ -2025,40 +2069,7 @@
   
   private void configure(FTPClient ftp) {
   if (this.isConfigurationSet) {
  -FTPClientConfig config;
  -if (this.systemKeyConfig != null) {
  -config = new FTPClientConfig(this.systemKeyConfig);
  -log(custom config: system key =  
  -+ this.systemKeyConfig, Project.MSG_VERBOSE);
  -} else {
  -config = new FTPClientConfig();
  -}
  -if (this.defaultDateFormatConfig != null) {
  -config.setDefaultDateFormatStr(this.defaultDateFormatConfig);
  -log(custom config: default date format =  
  -+ this.defaultDateFormatConfig, Project.MSG_VERBOSE);
  -}
  -if (this.recentDateFormatConfig != null) {
  -config.setRecentDateFormatStr(this.recentDateFormatConfig);
  -log(custom config: recent date format =  
  -+ this.recentDateFormatConfig, Project.MSG_VERBOSE);
  -}
  -if (this.serverLanguageCodeConfig != null) {
  -config.setServerLanguageCode(this.serverLanguageCodeConfig);
  -log(custom config: server language code =  
  -+ this.serverLanguageCodeConfig, 
Project.MSG_VERBOSE);
  -}
  -if (this.serverTimeZoneConfig != null) {
  -config.setServerTimeZoneId(this.serverTimeZoneConfig);
  -log(custom config: server time zone ID =  
  -+ this.serverTimeZoneConfig, Project.MSG_VERBOSE);
  -}
  -if (this.shortMonthNamesConfig != null) {
  -  

Re: cvs commit: ant/docs/manual install.html

2005-05-13 Thread Steve Cohen
Stefan Bodewig wrote:
On Thu, 12 May 2005, Steve Cohen [EMAIL PROTECTED] wrote:

I don't know, though, guys.  What do you think?  Is it really worth
it to avoid making the users upgrade?

For me it depends on when you wanted to see the new task.
If you wanted to include it in 1.6.4 (which is unlikely to happen
anyway, given Steve's and Matt's comments) then you wouldn't get a +1
from me if it forced people to upgrade commons-net.  This is just too
fresh IMHO.
If you are shooting for 1.7, having the code depend on commons-net
1.4.x is fine with me.
Stefan
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Well, I've done it.  1.4.0 is no longer required.  Have a look.  It 
isn't too ugly.

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


Re: cvs commit: ant/docs/manual install.html

2005-05-12 Thread Stefan Bodewig
On 12 May 2005, [EMAIL PROTECTED] wrote:

   +For all users, a minimum version of commons-net of 1.4.0 is now 
 required.

Is this really true?

I understand it is required to compile ftp or if you use one of
the new features.  But if you use ftp the same way you did
before and use a binary installation of Ant, 1.2.x should work as
well, not?

Stefan

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



Re: cvs commit: ant/docs/manual install.html

2005-05-12 Thread Steve Cohen
Stefan Bodewig wrote:
On 12 May 2005, [EMAIL PROTECTED] wrote:

 +For all users, a minimum version of commons-net of 1.4.0 is now required.

Is this really true?
I understand it is required to compile ftp or if you use one of
the new features.  But if you use ftp the same way you did
before and use a binary installation of Ant, 1.2.x should work as
well, not?
Stefan
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

You are correct, sir.  It won't compile but it will run against the 
older jar, as long as the new functionalities are not called.  I forget 
that not everyone wants to build ant :-).

The existing tests can be run successfully if you ignore the errors. 
You see, Antoine, your tests have already proven their value!

I will revise this documentation, and also change the code to output a 
more meaningful error message if anyone tries to use the new features 
with an older jar.

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


Re: cvs commit: ant/docs/manual install.html

2005-05-12 Thread Steve Cohen
Steve Cohen wrote:
Stefan Bodewig wrote:
On 12 May 2005, [EMAIL PROTECTED] wrote:

 +For all users, a minimum version of commons-net of 1.4.0 is now 
required.

Is this really true?
I understand it is required to compile ftp or if you use one of
the new features.  But if you use ftp the same way you did
before and use a binary installation of Ant, 1.2.x should work as
well, not?
Stefan
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

You are correct, sir.  It won't compile but it will run against the 
older jar, as long as the new functionalities are not called.  I forget 
that not everyone wants to build ant :-).

The existing tests can be run successfully if you ignore the errors. You 
see, Antoine, your tests have already proven their value!

I will revise this documentation, and also change the code to output a 
more meaningful error message if anyone tries to use the new features 
with an older jar.

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

Nope, spoke too soon.  I wasn't running against what I thought I was.
With commons-net-1.2.2 jar, the bad import statement makes the test 
constructor throw.

This is so ugly.
I wonder if I could do a Class.forName(), and if it doesn't throw, I 
know I can use reflection to do the new stuff, and avoid importing the 
new class.

This is so ugly.

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


Re: cvs commit: ant/docs/manual install.html

2005-05-12 Thread Steve Cohen
Steve Cohen wrote:
Steve Cohen wrote:
Stefan Bodewig wrote:
On 12 May 2005, [EMAIL PROTECTED] wrote:

 +For all users, a minimum version of commons-net of 1.4.0 is 
now required.


Is this really true?
I understand it is required to compile ftp or if you use one of
the new features.  But if you use ftp the same way you did
before and use a binary installation of Ant, 1.2.x should work as
well, not?
Stefan
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

You are correct, sir.  It won't compile but it will run against the 
older jar, as long as the new functionalities are not called.  I 
forget that not everyone wants to build ant :-).

The existing tests can be run successfully if you ignore the errors. 
You see, Antoine, your tests have already proven their value!

I will revise this documentation, and also change the code to output a 
more meaningful error message if anyone tries to use the new features 
with an older jar.

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

Nope, spoke too soon.  I wasn't running against what I thought I was.
With commons-net-1.2.2 jar, the bad import statement makes the test 
constructor throw.

This is so ugly.
I wonder if I could do a Class.forName(), and if it doesn't throw, I 
know I can use reflection to do the new stuff, and avoid importing the 
new class.

This is so ugly.

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

OK.  I found a way that isn't quite so ugly.  I moved all the code that 
references the new class in commons-net off to a separate compilation 
unit, a new class in the org.apache.tools.ant.taskdefs.optional.net 
package.  Now there are no issues with bad import statements in the FTP 
class itself.

Since the new class is in the same package as FTP.java it doesn't need 
to be imported in order to compile.  The new class isn't referenced 
unless the right commons-net version is present.

As long as the new code isn't called, there is no problem when using 
older versions of commons-net.  Otherwise, a BuildException is thrown.

I don't know, though, guys.  What do you think?  Is it really worth it 
to avoid making the users upgrade?

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


cvs commit: ant/docs/manual install.html

2005-05-11 Thread scohen
scohen  2005/05/11 21:04:59

  Modified:src/main/org/apache/tools/ant/taskdefs/optional/net FTP.java
   docs/manual install.html
  Log:
  Adapt Ant to use the new functionalities of commons-net 1.4.0 to enable 
greater configurability of the server:
  Month names other than English, date formats other than the standard ones 
(such as all-numeric timestamps
  on unix), and different server time zones can now be supported in Ant.
  PR:30706, 33443
  Submitted by: Neeme Praks
  Reviewed by: Steve Cohen
  CVS: --
  CVS: PR:
  CVS:   If this change addresses a PR in the problem report tracking
  CVS:   database, then enter the PR number(s) here.
  CVS: Obtained from:
  CVS:   If this change has been taken from another system, such as NCSA,
  CVS:   then name the system in this line, otherwise delete it.
  CVS: Submitted by:
  CVS:   If this code has been contributed to Apache by someone else; i.e.,
  CVS:   they sent us a patch or a new module, then include their name/email
  CVS:   address here. If this is your work then delete this line.
  CVS: Reviewed by:
  CVS:   If we are doing pre-commit code reviews and someone else has
  CVS:   reviewed your changes, include their name(s) here.
  CVS:   If you have not had it reviewed then delete this line.
  
  Revision  ChangesPath
  1.68  +118 -0
ant/src/main/org/apache/tools/ant/taskdefs/optional/net/FTP.java
  
  Index: FTP.java
  ===
  RCS file: 
/home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/optional/net/FTP.java,v
  retrieving revision 1.67
  retrieving revision 1.68
  diff -u -r1.67 -r1.68
  --- FTP.java  14 Mar 2005 19:24:58 -  1.67
  +++ FTP.java  12 May 2005 04:04:59 -  1.68
  @@ -17,6 +17,7 @@
   package org.apache.tools.ant.taskdefs.optional.net;
   
   import org.apache.commons.net.ftp.FTPClient;
  +import org.apache.commons.net.ftp.FTPClientConfig;
   import org.apache.commons.net.ftp.FTPFile;
   import org.apache.commons.net.ftp.FTPReply;
   import java.io.BufferedInputStream;
  @@ -109,6 +110,13 @@
   private boolean preserveLastModified = false;
   private String chmod = null;
   private String umask = null;
  +private String systemKeyConfig = null;
  +private String defaultDateFormatConfig = null;
  +private String recentDateFormatConfig = null;
  +private String serverLanguageCodeConfig = null;
  +private String serverTimeZoneConfig = null;
  +private String shortMonthNamesConfig = null;
  +private boolean isConfigurationSet = false;
   
   protected static final String[] ACTION_STRS = {
   sending,
  @@ -1243,6 +1251,76 @@
   this.ignoreNoncriticalErrors = ignoreNoncriticalErrors;
   }
   
  +private void configurationHasBeenSet() {
  +this.isConfigurationSet = true;
  +}
  +
  +/**
  + * Method for setting codeFTPClientConfig/code remote system key.
  + * 
  + * @param systemKeyConfig
  + * @see org.apache.commons.net.ftp.FTPClientConfig
  + */
  +public void setSystemKeyConfig(String systemKey) {
  +this.systemKeyConfig = systemKey;
  +configurationHasBeenSet();
  +}
  +
  +/**
  + * Delegate method for 
codeFTPClientConfig.setDefaultDateFormatStr(String)/code.
  + * 
  + * @param defaultDateFormatConfig
  + * @see org.apache.commons.net.ftp.FTPClientConfig
  + */
  +public void setDefaultDateFormatConfig(String defaultDateFormat) {
  +this.defaultDateFormatConfig = defaultDateFormat;
  +configurationHasBeenSet();
  +}
  +
  +/**
  + * Delegate method for 
codeFTPClientConfig.setRecentDateFormatStr(String)/code.
  + * 
  + * @param recentDateFormatConfig
  + * @see org.apache.commons.net.ftp.FTPClientConfig
  + */
  +public void setRecentDateFormatConfig(String recentDateFormat) {
  +this.recentDateFormatConfig = recentDateFormat;
  +configurationHasBeenSet();
  +}
  +
  +/**
  + * Delegate method for 
codeFTPClientConfig.setServerLanguageCode(String)/code.
  + * 
  + * @param serverLanguageCodeConfig
  + * @see org.apache.commons.net.ftp.FTPClientConfig
  + */
  +public void setServerLanguageCodeConfig(String serverLanguageCode) {
  +this.serverLanguageCodeConfig = serverLanguageCode;
  +configurationHasBeenSet();
  +}
  +
  +/**
  + * Delegate method for 
codeFTPClientConfig.setServerTimeZoneId(String)/code.
  + * 
  + * @param serverTimeZoneConfig
  + * @see org.apache.commons.net.ftp.FTPClientConfig
  + */
  +public void setServerTimeZoneConfig(String serverTimeZoneId) {
  +this.serverTimeZoneConfig = serverTimeZoneId;
  +configurationHasBeenSet();
  +}
  +
  +/**
  + * Delegate method for 

cvs commit: ant/docs/manual install.html

2005-03-14 Thread bodewig
bodewig 2005/03/14 01:44:42

  Modified:docs/manual install.html
  Log:
  We need a greedy compiler for bootstrap
  
  Revision  ChangesPath
  1.78  +4 -0  ant/docs/manual/install.html
  
  Index: install.html
  ===
  RCS file: /home/cvs/ant/docs/manual/install.html,v
  retrieving revision 1.77
  retrieving revision 1.78
  diff -u -r1.77 -r1.78
  --- install.html  7 Mar 2005 18:38:26 -   1.77
  +++ install.html  14 Mar 2005 09:44:42 -  1.78
  @@ -210,6 +210,10 @@
   See a href=#installingInstalling Ant/a
   for examples on how to do this for your operating system. /p
   
  +pbNote/b: The bootstrap process of Ant requires a greedy
  +compiler like Sun's javac or jikes.  It does not work with gcj or
  +kjc./b
  +
   pMake sure you have downloaded any auxiliary jars required to
   build tasks you are interested in. These should either be available
   on the CLASSPATH or added to the codelib/code
  
  
  

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



cvs commit: ant/docs/manual install.html

2005-03-14 Thread bodewig
bodewig 2005/03/14 01:45:03

  Modified:docs/manual Tag: ANT_16_BRANCH install.html
  Log:
  merge
  
  Revision  ChangesPath
  No   revision
  No   revision
  1.59.2.16 +4 -0  ant/docs/manual/install.html
  
  Index: install.html
  ===
  RCS file: /home/cvs/ant/docs/manual/install.html,v
  retrieving revision 1.59.2.15
  retrieving revision 1.59.2.16
  diff -u -r1.59.2.15 -r1.59.2.16
  --- install.html  30 Sep 2004 08:30:32 -  1.59.2.15
  +++ install.html  14 Mar 2005 09:45:03 -  1.59.2.16
  @@ -210,6 +210,10 @@
   See a href=#installingInstalling Ant/a
   for examples on how to do this for your operating system. /p
   
  +pbNote/b: The bootstrap process of Ant requires a greedy
  +compiler like Sun's javac or jikes.  It does not work with gcj or
  +kjc./b
  +
   pMake sure you have downloaded any auxiliary jars required to
   build tasks you are interested in. These should either be available
   on the CLASSPATH or added to the codelib/code
  
  
  

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



cvs commit: ant/docs/manual install.html

2005-02-03 Thread mbenson
mbenson 2005/02/03 14:31:48

  Modified:docs/manual install.html
  Log:
  Typo
  
  Revision  ChangesPath
  1.76  +2 -3  ant/docs/manual/install.html
  
  Index: install.html
  ===
  RCS file: /home/cvs/ant/docs/manual/install.html,v
  retrieving revision 1.75
  retrieving revision 1.76
  diff -u -r1.75 -r1.76
  --- install.html  30 Sep 2004 08:28:03 -  1.75
  +++ install.html  3 Feb 2005 22:31:48 -   1.76
  @@ -474,7 +474,7 @@
   target=_tophttp://www.jcraft.com/jsch/index.html/a/td
 /tr
 tr
  -tdJAI - Java Advanded Imaging/td
  +tdJAI - Java Advanced Imaging/td
   tdimage task/td
   tda href=http://java.sun.com/products/java-media/jai/;
   target=_tophttp://java.sun.com/products/java-media/jai//a/td
  @@ -491,9 +491,8 @@
   /table
   br
   hr
  -p align=centerCopyright copy; 2000-2004 The Apache Software Foundation. 
All rights
  +p align=centerCopyright copy; 2000-2005 The Apache Software Foundation. 
All rights
   Reserved./p
   
   /body
   /html
  -
  
  
  

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



cvs commit: ant/docs/manual install.html

2004-09-30 Thread peterreilly
peterreilly2004/09/30 01:28:04

  Modified:docs/manual install.html
  Log:
  update for groovy 1.0 beta 7
  
  Revision  ChangesPath
  1.75  +2 -2  ant/docs/manual/install.html
  
  Index: install.html
  ===
  RCS file: /home/cvs/ant/docs/manual/install.html,v
  retrieving revision 1.74
  retrieving revision 1.75
  diff -u -r1.74 -r1.75
  --- install.html  15 Sep 2004 12:41:01 -  1.74
  +++ install.html  30 Sep 2004 08:28:03 -  1.75
  @@ -346,8 +346,8 @@
   tdGroovy with script and scriptdef tasksbr/
 You need to get the groovy jar and two asm jars from a groovy
 installation. The jars are groovy-[version].jar, asm-[vesion].jar and
  -  asm-util-[version].jar. As of groovy version 1.0-beta-6, the jars are
  -  groovy-1.0-beta-6.jar, asm-1.4.1.jar and asm-util-1.4.3.jar.
  +  asm-util-[version].jar. As of groovy version 1.0-beta-7, the jars are
  +  groovy-1.0-beta-7.jar, asm-1.4.3.jar and asm-util-1.4.3.jar.
   /td
   td
 a href=http://groovy.codehaus.org/;http://groovy.codehaus.org//a
  
  
  

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



cvs commit: ant/docs/manual install.html

2004-09-30 Thread peterreilly
peterreilly2004/09/30 01:30:32

  Modified:docs/manual Tag: ANT_16_BRANCH install.html
  Log:
  sync
  
  Revision  ChangesPath
  No   revision
  No   revision
  1.59.2.15 +2 -2  ant/docs/manual/install.html
  
  Index: install.html
  ===
  RCS file: /home/cvs/ant/docs/manual/install.html,v
  retrieving revision 1.59.2.14
  retrieving revision 1.59.2.15
  diff -u -r1.59.2.14 -r1.59.2.15
  --- install.html  15 Sep 2004 12:42:42 -  1.59.2.14
  +++ install.html  30 Sep 2004 08:30:32 -  1.59.2.15
  @@ -347,8 +347,8 @@
   tdGroovy with script and scriptdef tasksbr/
 You need to get the groovy jar and two asm jars from a groovy
 installation. The jars are groovy-[version].jar, asm-[vesion].jar and
  -  asm-util-[version].jar. As of groovy version 1.0-beta-6, the jars are
  -  groovy-1.0-beta-6.jar, asm-1.4.1.jar and asm-util-1.4.3.jar.
  +  asm-util-[version].jar. As of groovy version 1.0-beta-7, the jars are
  +  groovy-1.0-beta-7.jar, asm-1.4.3.jar and asm-util-1.4.3.jar.
   /td
   td
 a href=http://groovy.codehaus.org/;http://groovy.codehaus.org//a
  
  
  

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



cvs commit: ant/docs/manual install.html

2004-09-15 Thread peterreilly
peterreilly2004/09/15 05:41:02

  Modified:docs/manual install.html
  Log:
  Doc for groovy jars installation
  
  Revision  ChangesPath
  1.74  +15 -0 ant/docs/manual/install.html
  
  Index: install.html
  ===
  RCS file: /home/cvs/ant/docs/manual/install.html,v
  retrieving revision 1.73
  retrieving revision 1.74
  diff -u -r1.73 -r1.74
  --- install.html  6 Sep 2004 22:09:20 -   1.73
  +++ install.html  15 Sep 2004 12:41:01 -  1.74
  @@ -342,6 +342,21 @@
   tda href=http://jakarta.apache.org/bsf/; 
target=_tophttp://jakarta.apache.org/bsf//a/td
 /tr
 tr
  +tdGroovy jars/td
  +tdGroovy with script and scriptdef tasksbr/
  +  You need to get the groovy jar and two asm jars from a groovy
  +  installation. The jars are groovy-[version].jar, asm-[vesion].jar and
  +  asm-util-[version].jar. As of groovy version 1.0-beta-6, the jars are
  +  groovy-1.0-beta-6.jar, asm-1.4.1.jar and asm-util-1.4.3.jar.
  +/td
  +td
  +  a href=http://groovy.codehaus.org/;http://groovy.codehaus.org//a
  +  br/
  +  The asm jars are also available from the creators of asm -
  +  a href=http://asm.objectweb.org/;http://asm.objectweb.org//a
  +/td
  +  /tr
  +  tr
   tdnetrexx.jar/td
   tdnetrexx task, Rexx with the script task/td
   tda href=http://www2.hursley.ibm.com/netrexx/; target=_top
  
  
  

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



cvs commit: ant/docs/manual install.html

2004-09-15 Thread peterreilly
peterreilly2004/09/15 05:42:42

  Modified:docs/manual Tag: ANT_16_BRANCH install.html
  Log:
  sync
  
  Revision  ChangesPath
  No   revision
  No   revision
  1.59.2.14 +15 -0 ant/docs/manual/install.html
  
  Index: install.html
  ===
  RCS file: /home/cvs/ant/docs/manual/install.html,v
  retrieving revision 1.59.2.13
  retrieving revision 1.59.2.14
  diff -u -r1.59.2.13 -r1.59.2.14
  --- install.html  6 Sep 2004 22:11:37 -   1.59.2.13
  +++ install.html  15 Sep 2004 12:42:42 -  1.59.2.14
  @@ -343,6 +343,21 @@
   tda href=http://jakarta.apache.org/bsf/; 
target=_tophttp://jakarta.apache.org/bsf//a/td
 /tr
 tr
  +tdGroovy jars/td
  +tdGroovy with script and scriptdef tasksbr/
  +  You need to get the groovy jar and two asm jars from a groovy
  +  installation. The jars are groovy-[version].jar, asm-[vesion].jar and
  +  asm-util-[version].jar. As of groovy version 1.0-beta-6, the jars are
  +  groovy-1.0-beta-6.jar, asm-1.4.1.jar and asm-util-1.4.3.jar.
  +/td
  +td
  +  a href=http://groovy.codehaus.org/;http://groovy.codehaus.org//a
  +  br/
  +  The asm jars are also available from the creators of asm -
  +  a href=http://asm.objectweb.org/;http://asm.objectweb.org//a
  +/td
  +  /tr
  +  tr
   tdnetrexx.jar/td
   tdnetrexx task, Rexx with the script task/td
   tda href=http://www2.hursley.ibm.com/netrexx/; target=_top
  
  
  

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



cvs commit: ant/docs/manual install.html

2004-09-06 Thread antoine
antoine 2004/09/06 15:09:20

  Modified:docs/manual install.html
  Log:
  add a caveat concerning jython.jar
  
  Revision  ChangesPath
  1.73  +3 -1  ant/docs/manual/install.html
  
  Index: install.html
  ===
  RCS file: /home/cvs/ant/docs/manual/install.html,v
  retrieving revision 1.72
  retrieving revision 1.73
  diff -u -r1.72 -r1.73
  --- install.html  30 Jun 2004 11:16:15 -  1.72
  +++ install.html  6 Sep 2004 22:09:20 -   1.73
  @@ -356,7 +356,9 @@
 /tr
 tr
   tdjython.jar/td
  -tdPython with script task/td
  +tdPython with script taskbr
  +Warning : jython.jar also contains classes from jakarta-oro.
  +Remove these classes if you are also using jakarta-oro./td
   tda href=http://jython.sourceforge.net/; 
target=_tophttp://jython.sourceforge.net//a/td
 /tr
 tr
  
  
  

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



cvs commit: ant/docs/manual install.html

2004-09-06 Thread antoine
antoine 2004/09/06 15:11:37

  Modified:docs/manual Tag: ANT_16_BRANCH install.html
  Log:
  Merge from HEAD
  Caveat concerning jython.jar
  
  Revision  ChangesPath
  No   revision
  No   revision
  1.59.2.13 +3 -1  ant/docs/manual/install.html
  
  Index: install.html
  ===
  RCS file: /home/cvs/ant/docs/manual/install.html,v
  retrieving revision 1.59.2.12
  retrieving revision 1.59.2.13
  diff -u -r1.59.2.12 -r1.59.2.13
  --- install.html  2 Jul 2004 08:56:51 -   1.59.2.12
  +++ install.html  6 Sep 2004 22:11:37 -   1.59.2.13
  @@ -357,7 +357,9 @@
 /tr
 tr
   tdjython.jar/td
  -tdPython with script task/td
  +tdPython with script taskbr
  +Warning : jython.jar also contains classes from jakarta-oro.
  +Remove these classes if you are also using jakarta-oro./td
   tda href=http://jython.sourceforge.net/; 
target=_tophttp://jython.sourceforge.net//a/td
 /tr
 tr
  
  
  

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



cvs commit: ant/docs/manual install.html

2004-07-02 Thread antoine
antoine 2004/07/02 01:56:52

  Modified:docs/manual Tag: ANT_16_BRANCH install.html
  Log:
  Merge last changes of Steve Cohen
  (commons-net 1.2.2 recommended)
  
  Revision  ChangesPath
  No   revision
  No   revision
  1.59.2.12 +2 -1  ant/docs/manual/install.html
  
  Index: install.html
  ===
  RCS file: /home/cvs/ant/docs/manual/install.html,v
  retrieving revision 1.59.2.11
  retrieving revision 1.59.2.12
  diff -u -r1.59.2.11 -r1.59.2.12
  --- install.html  2 Jun 2004 21:22:36 -   1.59.2.11
  +++ install.html  2 Jul 2004 08:56:51 -   1.59.2.12
  @@ -404,7 +404,8 @@
   tda name=commons-netcommons-net.jar/td
   tdftp, rexec and telnet tasksbr
   jakarta-oro 2.0.1 or later is required in any case together with 
commons-net.br
  -For a use with a Microsoft FTP server, a minimum version of commons-net 
of 1.2.1 is required.
  +For all users, a minimum version of commons-net of 1.2.2 is recommended. 
 Earlier 
  +versions did not support autodetection of system type or had significant 
bugs.
   /td
   tda href=http://jakarta.apache.org/commons/net/index.html;
  
target=_tophttp://jakarta.apache.org/commons/net/index.html/a/td
  
  
  

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



cvs commit: ant/docs/manual install.html

2004-06-30 Thread scohen
scohen  2004/06/30 04:16:15

  Modified:docs/manual install.html
  Log:
  explain why 1.2.2 of commons-net is recommended.
  
  Revision  ChangesPath
  1.72  +2 -1  ant/docs/manual/install.html
  
  Index: install.html
  ===
  RCS file: /home/cvs/ant/docs/manual/install.html,v
  retrieving revision 1.71
  retrieving revision 1.72
  diff -u -r1.71 -r1.72
  --- install.html  29 Jun 2004 02:27:45 -  1.71
  +++ install.html  30 Jun 2004 11:16:15 -  1.72
  @@ -403,7 +403,8 @@
   tda name=commons-netcommons-net.jar/td
   tdftp, rexec and telnet tasksbr
   jakarta-oro 2.0.1 or later is required in any case together with 
commons-net.br
  -For all users, a minimum version of commons-net of 1.2.2 is recommended.
  +For all users, a minimum version of commons-net of 1.2.2 is recommended. 
 Earlier 
  +versions did not support autodetection of system type or had significant 
bugs.
   /td
   tda href=http://jakarta.apache.org/commons/net/index.html;
  
target=_tophttp://jakarta.apache.org/commons/net/index.html/a/td
  
  
  

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



cvs commit: ant/docs/manual install.html

2004-06-29 Thread scohen
scohen  2004/06/28 19:27:45

  Modified:docs/manual install.html
  Log:
  update to reflect the latest release of commons-net which fixed some
  bugs that interfered with the Ant interface.
  
  Revision  ChangesPath
  1.71  +1 -1  ant/docs/manual/install.html
  
  Index: install.html
  ===
  RCS file: /home/cvs/ant/docs/manual/install.html,v
  retrieving revision 1.70
  retrieving revision 1.71
  diff -u -r1.70 -r1.71
  --- install.html  2 Jun 2004 21:18:41 -   1.70
  +++ install.html  29 Jun 2004 02:27:45 -  1.71
  @@ -403,7 +403,7 @@
   tda name=commons-netcommons-net.jar/td
   tdftp, rexec and telnet tasksbr
   jakarta-oro 2.0.1 or later is required in any case together with 
commons-net.br
  -For a use with a Microsoft FTP server, a minimum version of commons-net 
of 1.2.1 is required.
  +For all users, a minimum version of commons-net of 1.2.2 is recommended.
   /td
   tda href=http://jakarta.apache.org/commons/net/index.html;
  
target=_tophttp://jakarta.apache.org/commons/net/index.html/a/td
  
  
  

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



Re: cvs commit: ant/docs/manual install.html

2004-06-29 Thread Antoine Levy-Lambert
Hi Steve,
glad to read a commit mail from you on the ant list.
Can you merge your change on the ANT_16 branch ?
Cheers,
Antoine

 scohen  2004/06/28 19:27:45
 
   Modified:docs/manual install.html
   Log:
   update to reflect the latest release of commons-net which fixed some
   bugs that interfered with the Ant interface.
   
   Revision  ChangesPath
   1.71  +1 -1  ant/docs/manual/install.html
   
   Index: install.html
   ===
   RCS file: /home/cvs/ant/docs/manual/install.html,v
   retrieving revision 1.70
   retrieving revision 1.71
   diff -u -r1.70 -r1.71
   --- install.html2 Jun 2004 21:18:41 -   1.70
   +++ install.html29 Jun 2004 02:27:45 -  1.71
   @@ -403,7 +403,7 @@
tda name=commons-netcommons-net.jar/td
tdftp, rexec and telnet tasksbr
jakarta-oro 2.0.1 or later is required in any case together with
 commons-net.br
   -For a use with a Microsoft FTP server, a minimum version of
 commons-net of 1.2.1 is required.
   +For all users, a minimum version of commons-net of 1.2.2 is
 recommended.
/td
tda href=http://jakarta.apache.org/commons/net/index.html;
  
 target=_tophttp://jakarta.apache.org/commons/net/index.html/a/td
   
   
   
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 


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



cvs commit: ant/docs/manual install.html

2003-12-23 Thread antoine
antoine 2003/12/23 07:28:19

  Modified:docs/manual install.html
  Log:
  Remind user that JDK 1.4+ includes its own regexp impl
  PR: 25709
  Submitted by: Jesse Glick (jglick at netbeans dot org)
  
  Revision  ChangesPath
  1.64  +4 -1  ant/docs/manual/install.html
  
  Index: install.html
  ===
  RCS file: /home/cvs/ant/docs/manual/install.html,v
  retrieving revision 1.63
  retrieving revision 1.64
  diff -u -r1.63 -r1.64
  --- install.html  8 Dec 2003 22:59:54 -   1.63
  +++ install.html  23 Dec 2003 15:28:19 -  1.64
  @@ -269,7 +269,10 @@
   pThe following libraries are needed in your CLASSPATH or in the
   install directory's codelib/code directory if you are using the
   indicated feature. Note that only one of the regexp libraries is
  -needed for use with the mappers. You will also need to install the
  +needed for use with the mappers
  +(and Java 1.4 and higher includes a regexp implementation which
  +Ant will find automatically).
  +You will also need to install the
   Ant optional jar containing the task definitions to make these
   tasks available. Please refer to the a href=#optionalTasks
   Installing Ant / Optional Tasks/a section above./p
  
  
  

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



cvs commit: ant/docs/manual install.html

2003-12-23 Thread antoine
antoine 2003/12/23 07:28:51

  Modified:docs/manual Tag: ANT_16_BRANCH install.html
  Log:
  Merge from HEAD
  Remind user that JDK 1.4+ includes its own regexp impl
  PR: 25709
  Submitted by: Jesse Glick (jglick at netbeans dot org)
  
  Revision  ChangesPath
  No   revision
  No   revision
  1.59.2.6  +4 -1  ant/docs/manual/install.html
  
  Index: install.html
  ===
  RCS file: /home/cvs/ant/docs/manual/install.html,v
  retrieving revision 1.59.2.5
  retrieving revision 1.59.2.6
  diff -u -r1.59.2.5 -r1.59.2.6
  --- install.html  8 Dec 2003 23:01:52 -   1.59.2.5
  +++ install.html  23 Dec 2003 15:28:51 -  1.59.2.6
  @@ -270,7 +270,10 @@
   pThe following libraries are needed in your CLASSPATH or in the
   install directory's codelib/code directory if you are using the
   indicated feature. Note that only one of the regexp libraries is
  -needed for use with the mappers. You will also need to install the
  +needed for use with the mappers
  +(and Java 1.4 and higher includes a regexp implementation which
  +Ant will find automatically).
  +You will also need to install the
   Ant optional jar containing the task definitions to make these
   tasks available. Please refer to the a href=#optionalTasks
   Installing Ant / Optional Tasks/a section above./p
  
  
  

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



cvs commit: ant/docs/manual install.html

2003-12-08 Thread antoine
antoine 2003/12/08 14:59:54

  Modified:docs/manual/CoreTasks style.html
   docs/manual install.html
  Log:
  Improve documentation concerning external libs for the style task.
  Basically no external libs are required if using JDK 1.4
  PR: 25274
  Submitted by: Jesse Glick (jglick at netbeans dot org)
  
  Revision  ChangesPath
  1.30  +3 -2  ant/docs/manual/CoreTasks/style.html
  
  Index: style.html
  ===
  RCS file: /home/cvs/ant/docs/manual/CoreTasks/style.html,v
  retrieving revision 1.29
  retrieving revision 1.30
  diff -u -r1.29 -r1.30
  --- style.html5 Aug 2003 16:01:10 -   1.29
  +++ style.html8 Dec 2003 22:59:53 -   1.30
  @@ -12,8 +12,9 @@
   pProcess a set of documents via XSLT./p
   pThis is useful for building views of XML based documentation,
   or for generating code./p
  -pbNote:/b This task depends on external libraries not included in the 
Ant distribution.
  -See a href=../install.html#librarydependenciesLibrary Dependencies/a 
for more information./p
  +pbNote:/b If you are using JDK 1.4 or higher, this task does not 
require external libraries
  +not supplied in the Ant distribution. Otherwise,
  +see a href=../install.html#librarydependenciesLibrary Dependencies/a 
for more information./p
   pIt is possible to refine the set of files that are being processed. This 
can be
   done with the iincludes/i, iincludesfile/i, iexcludes/i, 
iexcludesfile/i and idefaultexcludes/i
   attributes. With the iincludes/i or iincludesfile/i attribute you 
specify the files you want to
  
  
  
  1.63  +7 -4  ant/docs/manual/install.html
  
  Index: install.html
  ===
  RCS file: /home/cvs/ant/docs/manual/install.html,v
  retrieving revision 1.62
  retrieving revision 1.63
  diff -u -r1.62 -r1.63
  --- install.html  28 Nov 2003 09:01:36 -  1.62
  +++ install.html  8 Dec 2003 22:59:54 -   1.63
  @@ -283,11 +283,14 @@
 tr
   tdAn XSL transformer like Xalan or XSL:P/td
   tdstyle task/td
  -tda href=http://xml.apache.org/xalan-j/index.html;
  -target=_tophttp://xml.apache.org/xalan-j/index.html/a for Xalan.br
  -XSL:P used to live at a href=http://www.clc-marketing.com/xslp/;
  +td
  +bIf you use JDK 1.4, an XSL transformer is already included, so you 
need not do anything special./bbr
  +ulliXALAN : a href=http://xml.apache.org/xalan-j/index.html;
  +target=_tophttp://xml.apache.org/xalan-j/index.html/a/li
  +liXSL:P : used to live at a href=http://www.clc-marketing.com/xslp/;
   target=_tophttp://www.clc-marketing.com/xslp//a, but the link
  -doesn't work any longer and we are not aware of a replacement site./td
  +doesn't work any longer and we are not aware of a replacement 
site./li/ul
  +/td
 /tr
 tr
   tdjakarta-regexp-1.3.jar/td
  
  
  

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



cvs commit: ant/docs/manual install.html

2003-11-28 Thread peterreilly
peterreilly2003/11/28 01:01:36

  Modified:docs/manual install.html
  Log:
  Add note on version of beanshell required for ant 1.6
  
  Revision  ChangesPath
  1.62  +4 -1  ant/docs/manual/install.html
  
  Index: install.html
  ===
  RCS file: /home/cvs/ant/docs/manual/install.html,v
  retrieving revision 1.61
  retrieving revision 1.62
  diff -u -r1.61 -r1.62
  --- install.html  20 Oct 2003 10:36:27 -  1.61
  +++ install.html  28 Nov 2003 09:01:36 -  1.62
  @@ -363,7 +363,10 @@
 /tr
 tr
   tdBeanShell JAR(s)/td
  -tdBeanShell with script task/td
  +tdBeanShell with script task.
  +  br/
  +strongNote/strong: Ant 1.6 and later require BeanShell version 1.3 or
  +  later/td
   tda href=http://www.beanshell.org/; 
target=_tophttp://www.beanshell.org//a/td
 /tr
 tr
  
  
  

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



cvs commit: ant/docs/manual install.html

2003-11-28 Thread peterreilly
peterreilly2003/11/28 01:04:56

  Modified:docs/manual Tag: ANT_16_BRANCH install.html
  Log:
  Sync with head
  
  Revision  ChangesPath
  No   revision
  No   revision
  1.59.2.4  +4 -1  ant/docs/manual/install.html
  
  Index: install.html
  ===
  RCS file: /home/cvs/ant/docs/manual/install.html,v
  retrieving revision 1.59.2.3
  retrieving revision 1.59.2.4
  diff -u -r1.59.2.3 -r1.59.2.4
  --- install.html  20 Oct 2003 10:52:42 -  1.59.2.3
  +++ install.html  28 Nov 2003 09:04:56 -  1.59.2.4
  @@ -364,7 +364,10 @@
 /tr
 tr
   tdBeanShell JAR(s)/td
  -tdBeanShell with script task/td
  +tdBeanShell with script task.
  +  br/
  +strongNote/strong: Ant 1.6 and later require BeanShell version 1.3 or
  +  later/td
   tda href=http://www.beanshell.org/; 
target=_tophttp://www.beanshell.org//a/td
 /tr
 tr
  
  
  

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



cvs commit: ant/docs/manual install.html

2003-10-20 Thread peterreilly
peterreilly2003/10/20 03:36:27

  Modified:docs/manual install.html
  Log:
  Remove reference to jdk 1.1
  PR: 23910
  Obtained from: Jose Alberto Fernandez
  
  Revision  ChangesPath
  1.61  +2 -6  ant/docs/manual/install.html
  
  Index: install.html
  ===
  RCS file: /home/cvs/ant/docs/manual/install.html,v
  retrieving revision 1.60
  retrieving revision 1.61
  diff -u -r1.60 -r1.61
  --- install.html  14 Oct 2003 13:25:49 -  1.60
  +++ install.html  20 Oct 2003 10:36:27 -  1.61
  @@ -52,13 +52,9 @@
   
   p
   For the current version of Ant, you will also need a JDK installed on
  -your system, version 1.1 or later. Some tasks work better on post-1.1 
systems;
  -some tasks only work on Java 1.2 and successors.
  -A future version of Ant -Ant 2.0- will require JDK 1.2 or later, though
  -Ant 1.x strives to retain 1.1 compatibility.
  +your system, version 1.2 or later.
   /pp
  -strongNote: /strongThe Microsoft JVM/JDK is not adequate on its own, 
although the MS
  -compiler is supported.
  +strongNote: /strongThe Microsoft JVM/JDK is not supported.
   /p
   p
   strongNote #2: /strongIf a JDK is not present, only the JRE runtime, 
then many tasks will not work.
  
  
  

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



cvs commit: ant/docs/manual install.html

2003-10-20 Thread peterreilly
peterreilly2003/10/20 03:52:42

  Modified:docs/manual Tag: ANT_16_BRANCH install.html
  Log:
  Merge with HEAD
  
  Revision  ChangesPath
  No   revision
  No   revision
  1.59.2.3  +2 -6  ant/docs/manual/install.html
  
  Index: install.html
  ===
  RCS file: /home/cvs/ant/docs/manual/install.html,v
  retrieving revision 1.59.2.2
  retrieving revision 1.59.2.3
  diff -u -r1.59.2.2 -r1.59.2.3
  --- install.html  14 Oct 2003 13:25:55 -  1.59.2.2
  +++ install.html  20 Oct 2003 10:52:42 -  1.59.2.3
  @@ -53,13 +53,9 @@
   
   p
   For the current version of Ant, you will also need a JDK installed on
  -your system, version 1.1 or later. Some tasks work better on post-1.1 
systems;
  -some tasks only work on Java 1.2 and successors.
  -A future version of Ant -Ant 2.0- will require JDK 1.2 or later, though
  -Ant 1.x strives to retain 1.1 compatibility.
  +your system, version 1.2 or later.
   /pp
  -strongNote: /strongThe Microsoft JVM/JDK is not adequate on its own, 
although the MS
  -compiler is supported.
  +strongNote: /strongThe Microsoft JVM/JDK is not supported.
   /p
   p
   strongNote #2: /strongIf a JDK is not present, only the JRE runtime, 
then many tasks will not work.
  
  
  

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



cvs commit: ant/docs/manual install.html

2003-10-14 Thread bodewig
bodewig 2003/10/14 06:25:49

  Modified:docs/manual install.html
  Log:
  Thanks, Shane! resolver 1.1beta has been released
  
  Revision  ChangesPath
  1.60  +3 -7  ant/docs/manual/install.html
  
  Index: install.html
  ===
  RCS file: /home/cvs/ant/docs/manual/install.html,v
  retrieving revision 1.59
  retrieving revision 1.60
  diff -u -r1.59 -r1.60
  --- install.html  3 Sep 2003 07:58:04 -   1.59
  +++ install.html  14 Oct 2003 13:25:49 -  1.60
  @@ -434,14 +434,10 @@
   target=_tophttp://www.clarkware.com/software/JDepend.html/a/td
 /tr
 tr
  -tdresolver.jar bafter the 1.0 release/b/td
  +tdresolver.jar b1.1beta or later/b/td
   tdxmlcatalog datatype emonly if support for external catalog files 
is desired/em/td
  -tda href=http://xml.apache.org/dist/commons/;
  -target=_tophttp://xml.apache.org/dist/commons//a for released
  -versions, a
  -href=http://gump.covalent.net/jars/latest/xml-commons/;
  -target=_tophttp://gump.covalent.net/jars/latest/xml-commons//a
  -for a nightly snapshot./td
  +tda href=http://xml.apache.org/commons/;
  +target=_tophttp://xml.apache.org/commons//a./td
 /tr
 tr
   tdjsch.jar/td
  
  
  

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



cvs commit: ant/docs/manual install.html

2003-10-14 Thread bodewig
bodewig 2003/10/14 06:25:56

  Modified:docs/manual Tag: ANT_16_BRANCH install.html
  Log:
  Merge from HEAD
  
  Revision  ChangesPath
  No   revision
  No   revision
  1.59.2.2  +3 -7  ant/docs/manual/install.html
  
  Index: install.html
  ===
  RCS file: /home/cvs/ant/docs/manual/install.html,v
  retrieving revision 1.59.2.1
  retrieving revision 1.59.2.2
  diff -u -r1.59.2.1 -r1.59.2.2
  --- install.html  9 Oct 2003 21:01:14 -   1.59.2.1
  +++ install.html  14 Oct 2003 13:25:55 -  1.59.2.2
  @@ -435,14 +435,10 @@
   target=_tophttp://www.clarkware.com/software/JDepend.html/a/td
 /tr
 tr
  -tdresolver.jar bafter the 1.0 release/b/td
  +tdresolver.jar b1.1beta or later/b/td
   tdxmlcatalog datatype emonly if support for external catalog files 
is desired/em/td
  -tda href=http://xml.apache.org/dist/commons/;
  -target=_tophttp://xml.apache.org/dist/commons//a for released
  -versions, a
  -href=http://gump.covalent.net/jars/latest/xml-commons/;
  -target=_tophttp://gump.covalent.net/jars/latest/xml-commons//a
  -for a nightly snapshot./td
  +tda href=http://xml.apache.org/commons/;
  +target=_tophttp://xml.apache.org/commons//a./td
 /tr
 tr
   tdjsch.jar/td
  
  
  

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



cvs commit: ant/docs/manual install.html

2003-09-03 Thread bodewig
bodewig 2003/09/03 00:58:04

  Modified:docs/manual install.html
  Log:
  Use valid URLs even in the text links, some people use copy'n'paste instead 
of clicking links
  
  Revision  ChangesPath
  1.59  +19 -19ant/docs/manual/install.html
  
  Index: install.html
  ===
  RCS file: /home/cvs/ant/docs/manual/install.html,v
  retrieving revision 1.58
  retrieving revision 1.59
  diff -u -r1.58 -r1.59
  --- install.html  17 Jul 2003 23:06:36 -  1.58
  +++ install.html  3 Sep 2003 07:58:04 -   1.59
  @@ -294,29 +294,29 @@
   doesn't work any longer and we are not aware of a replacement site./td
 /tr
 tr
  -tdjakarta-regexp-1.2.jar/td
  +tdjakarta-regexp-1.3.jar/td
   tdregexp type with mappers/td
  -tda href=http://jakarta.apache.org/regexp/; 
target=_topjakarta.apache.org/regexp//a/td
  +tda href=http://jakarta.apache.org/regexp/; 
target=_tophttp://jakarta.apache.org/regexp//a/td
 /tr
 tr
  -tdjakarta-oro-2.0.6.jar/td
  +tdjakarta-oro-2.0.7.jar/td
   tdregexp type with mappers and the perforce tasks/td
  -tda href=http://jakarta.apache.org/oro/; 
target=_topjakarta.apache.org/oro//a/td
  +tda href=http://jakarta.apache.org/oro/; 
target=_tophttp://jakarta.apache.org/oro//a/td
 /tr
 tr
   tdjunit.jar/td
   tdjunit tasks/td
  -tda href=http://www.junit.org/; target=_topwww.junit.org/a/td
  +tda href=http://www.junit.org/; 
target=_tophttp://www.junit.org//a/td
 /tr
 tr
   tdxalan.jar/td
   tdjunitreport task/td
  -tda href=http://xml.apache.org/; 
target=_topxml.apache.org/a/td
  +tda href=http://xml.apache.org/xalan-j/; 
target=_tophttp://xml.apache.org/xalan-j//a/td
 /tr
 tr
   tdstylebook.jar/td
   tdstylebook task/td
  -tdCVS repository of a href=http://xml.apache.org; 
target=_topxml.apache.org/a/td
  +tdCVS repository of a href=http://xml.apache.org/; 
target=_tophttp://xml.apache.org//a/td
 /tr
 tr
   tdtestlet.jar/td
  @@ -328,7 +328,7 @@
 tr
   tdantlr.jar/td
   tdantlr task/td
  -tda href=http://www.antlr.org/; target=_topwww.antlr.org/a/td
  +tda href=http://www.antlr.org/; 
target=_tophttp://www.antlr.org//a/td
 /tr
 tr
   td bsf.jar/td
  @@ -340,45 +340,45 @@
 tr
   tdnetrexx.jar/td
   tdnetrexx task, Rexx with the script task/td
  -tda href=http://www2.hursley.ibm.com/netrexx; target=_top
  -www2.hursley.ibm.com/netrexx/a/td
  +tda href=http://www2.hursley.ibm.com/netrexx/; target=_top
  +http://www2.hursley.ibm.com/netrexx//a/td
 /tr
 tr
   tdjs.jar/td
   tdJavascript with script taskbr/
   If you use Apache BSF 2.3.0-rc1, you must use rhino 1.5R3 - later
   versions of BSF work with 1.5R4 as well./td
  -tda href=http://www.mozilla.org/rhino/; 
target=_topwww.mozilla.org/rhino/a/td
  +tda href=http://www.mozilla.org/rhino/; 
target=_tophttp://www.mozilla.org/rhino//a/td
 /tr
 tr
   tdjython.jar/td
   tdPython with script task/td
  -tda href=http://jython.sourceforge.net/; 
target=_topjython.sourceforge.net/a/td
  +tda href=http://jython.sourceforge.net/; 
target=_tophttp://jython.sourceforge.net//a/td
 /tr
 tr
   tdjpython.jar/td
   tdPython with script task bdeprecated, jython is the prefered 
engine/b/td
  -tda href=http://www.jpython.org/; 
target=_topwww.jpython.org/a/td
  +tda href=http://www.jpython.org/; 
target=_tophttp://www.jpython.org//a/td
 /tr
 tr
   tdjacl.jar and tcljava.jar/td
   tdTCL with script task/td
  -tda href=http://www.scriptics.com/java; 
target=_topwww.scriptics.com/java/a/td
  +tda href=http://www.scriptics.com/software/java/; 
target=_tophttp://www.scriptics.com/software/java//a/td
 /tr
 tr
   tdBeanShell JAR(s)/td
   tdBeanShell with script task/td
  -tda href=http://www.beanshell.org; 
target=_topwww.beanshell.org/a/td
  +tda href=http://www.beanshell.org/; 
target=_tophttp://www.beanshell.org//a/td
 /tr
 tr
   tdjruby.jar/td
   tdRuby with script task/td
  -tda href=http://jruby.sourceforge.net/; 
target=_topjruby.sourceforge.net/a/td
  +tda href=http://jruby.sourceforge.net/; 
target=_tophttp://jruby.sourceforge.net//a/td
 /tr
 tr
   tdjudo.jar/td
   tdJudoscript with script task/td
  -tda href=http://www.judoscript.com/index.html; 
target=_topwww.judoscript.com/index.html/a/td
  +tda href=http://www.judoscript.com/index.html; 
target=_tophttp://www.judoscript.com/index.html/a/td
 /tr
 tr
   tdcommons-logging.jar/td
  @@ -404,7 +404,7 @@
   JavaClassHelper used by the ClassConstants filter reader and
   optionally used by ejbjar for dependency determination
   /td
  -tda href=http://jakarta.apache.org/bcel/; 

cvs commit: ant/docs/manual install.html

2003-09-03 Thread bodewig
bodewig 2003/09/03 01:02:13

  Modified:docs/manual Tag: ANT_15_BRANCH install.html
  Log:
  Use valid URLs even in the text links, some people use copy'n'paste instead 
of clicking links
  
  Revision  ChangesPath
  No   revision
  No   revision
  1.29.2.20 +16 -16ant/docs/manual/install.html
  
  Index: install.html
  ===
  RCS file: /home/cvs/ant/docs/manual/install.html,v
  retrieving revision 1.29.2.19
  retrieving revision 1.29.2.20
  diff -u -r1.29.2.19 -r1.29.2.20
  --- install.html  10 Apr 2003 06:11:22 -  1.29.2.19
  +++ install.html  3 Sep 2003 08:02:13 -   1.29.2.20
  @@ -294,29 +294,29 @@
   doesn't work any longer and we are not aware of a replacement site./td
 /tr
 tr
  -tdjakarta-regexp-1.2.jar/td
  +tdjakarta-regexp-1.3.jar/td
   tdregexp type with mappers/td
  -tda href=http://jakarta.apache.org/regexp/; 
target=_topjakarta.apache.org/regexp//a/td
  +tda href=http://jakarta.apache.org/regexp/; 
target=_tophttp://jakarta.apache.org/regexp//a/td
 /tr
 tr
  -tdjakarta-oro-2.0.6.jar/td
  +tdjakarta-oro-2.0.7.jar/td
   tdregexp type with mappers and the perforce tasks/td
  -tda href=http://jakarta.apache.org/oro/; 
target=_topjakarta.apache.org/oro//a/td
  +tda href=http://jakarta.apache.org/oro/; 
target=_tophttp://jakarta.apache.org/oro//a/td
 /tr
 tr
   tdjunit.jar/td
   tdjunit tasks/td
  -tda href=http://www.junit.org/; target=_topwww.junit.org/a/td
  +tda href=http://www.junit.org/; 
target=_tophttp://www.junit.org//a/td
 /tr
 tr
   tdxalan.jar/td
   tdjunitreport task/td
  -tda href=http://xml.apache.org/; 
target=_topxml.apache.org/a/td
  +tda href=http://xml.apache.org/xalan-j/; 
target=_tophttp://xml.apache.org/xalan-j//a/td
 /tr
 tr
   tdstylebook.jar/td
   tdstylebook task/td
  -tdCVS repository of a href=http://xml.apache.org; 
target=_topxml.apache.org/a/td
  +tdCVS repository of a href=http://xml.apache.org/; 
target=_tophttp://xml.apache.org//a/td
 /tr
 tr
   tdtestlet.jar/td
  @@ -328,45 +328,45 @@
 tr
   tdantlr.jar/td
   tdantlr task/td
  -tda href=http://www.antlr.org/; target=_topwww.antlr.org/a/td
  +tda href=http://www.antlr.org/; 
target=_tophttp://www.antlr.org//a/td
 /tr
 tr
   td bsf.jar/td
   tdscript task/td
   tda href=http://oss.software.ibm.com/developerworks/projects/bsf; 
target=_top
  -oss.software.ibm.com/developerworks/projects/bsf/a/td
  +http://oss.software.ibm.com/developerworks/projects/bsf/a/td
 /tr
 tr
   tdnetrexx.jar/td
   tdnetrexx task/td
   tda href=http://www2.hursley.ibm.com/netrexx; target=_top
  -www2.hursley.ibm.com/netrexx/a/td
  +http://www2.hursley.ibm.com/netrexx//a/td
 /tr
 tr
   tdjs.jar/td
   tdjavascript with script task/td
  -tda href=http://www.mozilla.org/rhino/; 
target=_topwww.mozilla.org/rhino/a/td
  +tda href=http://www.mozilla.org/rhino/; 
target=_tophttp://www.mozilla.org/rhino//a/td
 /tr
 tr
   tdjpython.jar/td
   tdpython with script task/td
  -tda href=http://www.jpython.org/; 
target=_topwww.jpython.org/a/td
  +tda href=http://www.jpython.org/; 
target=_tophttp://www.jpython.org//a/td
 /tr
 tr
   tdjacl.jar and tcljava.jar/td
   tdTCL with script task/td
  -tda href=http://www.scriptics.com/java; 
target=_topwww.scriptics.com/java/a/td
  +tda href=http://www.scriptics.com/software/java/; 
target=_tophttp://www.scriptics.com/software/java//a/td
 /tr
 tr
   tdBeanShell JAR(s)/td
   tdBeanShell with script task/td
  -tda href=http://www.beanshell.org; 
target=_topwww.beanshell.org/a/td
  +tda href=http://www.beanshell.org/; 
target=_tophttp://www.beanshell.org//a/td
 /tr
 tr
   tdnetcomponents.jar/td
   tdftp and telnet tasks/td
   tda 
href=http://www.savarese.org/oro/downloads/index.html#NetComponents;
  -   target=_topwww.savarese.org/oro/downloads/a/td
  +   
target=_tophttp://www.savarese.org/oro/downloads/index.html#NetComponents/a/td
 /tr
 tr
   tdbcel.jar/td
  @@ -374,7 +374,7 @@
   JavaClassHelper used by the ClassConstants filter reader and
   optionally used by ejbjar for dependency determination
   /td
  -tda href=http://jakarta.apache.org/bcel/; 
target=_topjakarta.apache.org/bcel//a/td
  +tda href=http://jakarta.apache.org/bcel/; 
target=_tophttp://jakarta.apache.org/bcel//a/td
 /tr
 tr
   tdmail.jar/td
  
  
  

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



Re: cvs commit: ant/docs/manual install.html

2003-06-30 Thread Stefan Bodewig
On 28 Jun 2003, [EMAIL PROTECTED] wrote:

   bsf2.3 is recommended.

Uhm, bsf 2.3 or higher is required would be better.  1.6's script
doesn't compile against BSF 2.2.

   rhino 1.5R3 is the recommended version. Do not use 1.5R4.

I'll look into rephrasing that.  This is true for 2.3.0-rc1, but will
hopefully not be true for the final release - BSF's CVS HEAD compiles
fine against Rhino 1.5R4.

Stefan

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



Re: cvs commit: ant/docs/manual install.html

2003-06-30 Thread Antoine Levy-Lambert
Hi Stefan,
my information regarding versions of bsj.jar and js.jar came from this
source :
an email of Peter Reilly :
http://article.gmane.org/gmane.comp.jakarta.ant.user/13887
This information was helpful for me setting up the use of Javascript in ant.
Concerning Rhino 1.5R4, the question is : does ant javascript !!! run !!!
(not compile) properly
with it ?
Cheers,
Antoine

- Original Message -
From: Stefan Bodewig [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, June 30, 2003 8:44 AM
Subject: Re: cvs commit: ant/docs/manual install.html


 On 28 Jun 2003, [EMAIL PROTECTED] wrote:

bsf2.3 is recommended.

 Uhm, bsf 2.3 or higher is required would be better.  1.6's script
 doesn't compile against BSF 2.2.

rhino 1.5R3 is the recommended version. Do not use 1.5R4.

 I'll look into rephrasing that.  This is true for 2.3.0-rc1, but will
 hopefully not be true for the final release - BSF's CVS HEAD compiles
 fine against Rhino 1.5R4.

 Stefan

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





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



Re: cvs commit: ant/docs/manual install.html

2003-06-30 Thread Stefan Bodewig
On Mon, 30 Jun 2003, Antoine Levy-Lambert [EMAIL PROTECTED]
wrote:

 This information was helpful for me setting up the use of Javascript
 in ant.

Oh, I'm sure it was.

 Concerning Rhino 1.5R4, the question is : does ant javascript !!! 
 run !!!  (not compile) properly with it ?

We have a simplistic test case for javascript that also gets run by
Gump IIRC.  Gump uses the CVS versions of Apache BSF as well as Rhino.

Stefan

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



Re: cvs commit: ant/docs/manual install.html

2003-06-30 Thread peter reilly
Yep it works with CVS versions,
but the latest released versions of both
do not work together.

bsf 2.3.0 rc1 
and Rhino 1.5R4 or Rhino 1.5R41
gives the error:
java.lang.NoSuchMethodError:
org.mozilla.javascript.Context.getDebuggableEngine()Lorg/mozilla/javascript/debug/DebuggableEngine;
Peter

On Mon, 2003-06-30 at 10:19, Stefan Bodewig wrote:
 On Mon, 30 Jun 2003, Antoine Levy-Lambert [EMAIL PROTECTED]
 wrote:
 
  This information was helpful for me setting up the use of Javascript
  in ant.
 
 Oh, I'm sure it was.
 
  Concerning Rhino 1.5R4, the question is : does ant javascript !!! 
  run !!!  (not compile) properly with it ?
 
 We have a simplistic test case for javascript that also gets run by
 Gump IIRC.  Gump uses the CVS versions of Apache BSF as well as Rhino.
 
 Stefan
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 


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



Re: cvs commit: ant/docs/manual install.html

2003-06-30 Thread Antoine Levy-Lambert
In this case, I will fill a bug report against bsf in bugzilla, asking them
to support the latest version of rhino. Comments ?

Antoine
- Original Message -
From: peter reilly [EMAIL PROTECTED]
To: Ant Developers List [EMAIL PROTECTED]
Sent: Monday, June 30, 2003 12:28 PM
Subject: Re: cvs commit: ant/docs/manual install.html


 Yep it works with CVS versions,
 but the latest released versions of both
 do not work together.

 bsf 2.3.0 rc1
 and Rhino 1.5R4 or Rhino 1.5R41
 gives the error:
 java.lang.NoSuchMethodError:

org.mozilla.javascript.Context.getDebuggableEngine()Lorg/mozilla/javascript/
debug/DebuggableEngine;
 Peter

 On Mon, 2003-06-30 at 10:19, Stefan Bodewig wrote:
  On Mon, 30 Jun 2003, Antoine Levy-Lambert [EMAIL PROTECTED]
  wrote:
 
   This information was helpful for me setting up the use of Javascript
   in ant.
 
  Oh, I'm sure it was.
 
   Concerning Rhino 1.5R4, the question is : does ant javascript !!!
   run !!!  (not compile) properly with it ?
 
  We have a simplistic test case for javascript that also gets run by
  Gump IIRC.  Gump uses the CVS versions of Apache BSF as well as Rhino.
 
  Stefan
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 


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





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



Re: cvs commit: ant/docs/manual install.html

2003-06-30 Thread Stefan Bodewig
On Mon, 30 Jun 2003, Antoine Levy-Lambert [EMAIL PROTECTED]
wrote:

 In this case, I will fill a bug report against bsf in bugzilla,
 asking them to support the latest version of rhino. Comments ?

They already know - and BSF's CVS works, no need for an additional bug
report IMHO.

Stefan

Apart from that, the bugzilla setup for BSF is still broken and the
only one receiving your report would be me. 8-(

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



Re: cvs commit: ant/docs/manual install.html

2003-06-30 Thread peter reilly
The only thing thats needs to be done is that
the ant manual for 1.6 should be correct.

The contents of the manual would indicate the
versions that do work - this will depend
on when ant 1.6 is released ;-)
and when newer versions of BSF are released.

Peter

On Mon, 2003-06-30 at 12:17, Stefan Bodewig wrote:
 On Mon, 30 Jun 2003, Antoine Levy-Lambert [EMAIL PROTECTED]
 wrote:
 
  In this case, I will fill a bug report against bsf in bugzilla,
  asking them to support the latest version of rhino. Comments ?
 
 They already know - and BSF's CVS works, no need for an additional bug
 report IMHO.
 
 Stefan
 
 Apart from that, the bugzilla setup for BSF is still broken and the
 only one receiving your report would be me. 8-(
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 


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



cvs commit: ant/docs/manual install.html

2003-06-30 Thread bodewig
bodewig 2003/06/30 05:10:36

  Modified:docs/manual install.html
  Log:
  Clarify the BSF/Rhino problem
  
  Revision  ChangesPath
  1.55  +4 -2  ant/docs/manual/install.html
  
  Index: install.html
  ===
  RCS file: /home/cvs/ant/docs/manual/install.html,v
  retrieving revision 1.54
  retrieving revision 1.55
  diff -u -r1.54 -r1.55
  --- install.html  28 Jun 2003 15:43:43 -  1.54
  +++ install.html  30 Jun 2003 12:10:36 -  1.55
  @@ -333,7 +333,8 @@
 tr
   td bsf.jar/td
   tdscript taskbr/
  -bsf2.3 is recommended./td
  +strongNote/strong: Ant 1.6 and later require Apache BSF, not
  +the IBM version.  I.e. you need BSF 2.3.0-rc1 or later./td
   tda href=http://jakarta.apache.org/bsf/; 
target=_tophttp://jakarta.apache.org/bsf//a/td
 /tr
 tr
  @@ -345,7 +346,8 @@
 tr
   tdjs.jar/td
   tdJavascript with script taskbr/
  -rhino 1.5R3 is the recommended version. Do not use 1.5R4./td
  +If you use Apache BSF 2.3.0-rc1, you must use rhino 1.5R3 - later
  +version of BSF work with 1.5R4 as well./td
   tda href=http://www.mozilla.org/rhino/; 
target=_topwww.mozilla.org/rhino/a/td
 /tr
 tr
  
  
  

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



cvs commit: ant/docs/manual install.html

2003-06-30 Thread bodewig
bodewig 2003/06/30 05:11:41

  Modified:docs/manual install.html
  Log:
  Typo
  
  Revision  ChangesPath
  1.56  +1 -1  ant/docs/manual/install.html
  
  Index: install.html
  ===
  RCS file: /home/cvs/ant/docs/manual/install.html,v
  retrieving revision 1.55
  retrieving revision 1.56
  diff -u -r1.55 -r1.56
  --- install.html  30 Jun 2003 12:10:36 -  1.55
  +++ install.html  30 Jun 2003 12:11:41 -  1.56
  @@ -347,7 +347,7 @@
   tdjs.jar/td
   tdJavascript with script taskbr/
   If you use Apache BSF 2.3.0-rc1, you must use rhino 1.5R3 - later
  -version of BSF work with 1.5R4 as well./td
  +versions of BSF work with 1.5R4 as well./td
   tda href=http://www.mozilla.org/rhino/; 
target=_topwww.mozilla.org/rhino/a/td
 /tr
 tr
  
  
  

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



cvs commit: ant/docs/manual install.html

2003-06-28 Thread antoine
antoine 2003/06/28 08:43:43

  Modified:docs/manual install.html
  Log:
  Added the IContract.jar file in the installation dependencies.
  Added recommended versions of bsf.jar and js.jar (Rhino)
  coming from an email of Peter Reilly.
  http://article.gmane.org/gmane.comp.jakarta.ant.user/13887
  
  Revision  ChangesPath
  1.54  +13 -2 ant/docs/manual/install.html
  
  Index: install.html
  ===
  RCS file: /home/cvs/ant/docs/manual/install.html,v
  retrieving revision 1.53
  retrieving revision 1.54
  diff -u -r1.53 -r1.54
  --- install.html  4 Jun 2003 07:08:50 -   1.53
  +++ install.html  28 Jun 2003 15:43:43 -  1.54
  @@ -332,7 +332,8 @@
 /tr
 tr
   td bsf.jar/td
  -tdscript task/td
  +tdscript taskbr/
  +bsf2.3 is recommended./td
   tda href=http://jakarta.apache.org/bsf/; 
target=_tophttp://jakarta.apache.org/bsf//a/td
 /tr
 tr
  @@ -343,7 +344,8 @@
 /tr
 tr
   tdjs.jar/td
  -tdJavascript with script task/td
  +tdJavascript with script taskbr/
  +rhino 1.5R3 is the recommended version. Do not use 1.5R4./td
   tda href=http://www.mozilla.org/rhino/; 
target=_topwww.mozilla.org/rhino/a/td
 /tr
 tr
  @@ -438,6 +440,15 @@
   tdimage task/td
   tda href=http://java.sun.com/products/java-media/jai/;
   target=_tophttp://java.sun.com/products/java-media/jai//a/td
  +  /tr
  +  tr
  +tdIContract/td
  +tdicontract taskbr/
  +Warning : the icontract jar file contains also antlr classes.br/
  +To make the antlr task work properly, remove 
antlr/ANTLRGrammarParseBehavior.class
  +from the icontract jar file installed under $ANT_HOME/lib./td
  +tda href=http://www.reliable-systems.com/tools/;
  +target=_tophttp://www.reliable-systems.com/tools//a/td
 /tr
   /table
   br
  
  
  

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



cvs commit: ant/docs/manual install.html

2003-06-04 Thread antoine
antoine 2003/06/04 00:08:50

  Modified:docs/manual install.html
  Log:
  Added requirement for jsse.jar for SMTP over TLS/SSL
  PR: 19180
  
  Revision  ChangesPath
  1.53  +9 -0  ant/docs/manual/install.html
  
  Index: install.html
  ===
  RCS file: /home/cvs/ant/docs/manual/install.html,v
  retrieving revision 1.52
  retrieving revision 1.53
  diff -u -r1.52 -r1.53
  --- install.html  13 May 2003 14:37:00 -  1.52
  +++ install.html  4 Jun 2003 07:08:50 -   1.53
  @@ -397,6 +397,15 @@
   target=_tophttp://java.sun.com/products/javamail//a/td
 /tr
 tr
  +tdjsse.jar/td
  +td
  +Support for SMTP over TLS/SSL br/
  +in the Mail taskbr/
  +Already included in jdk 1.4/td
  +tda href=http://java.sun.com/products/jsse/;
  +target=_tophttp://java.sun.com/products/jsse//a/td
  +  /tr
  +  tr
   tdactivation.jar/td
   tdMail task with Mime encoding, and the MimeMail task/td
   tda href=http://java.sun.com/products/javabeans/glasgow/jaf.html;