August 2003 Commit Log

Number of Commits:
153
Number of Active Developers:
6
antoine 2003-08-29 13:05

Rollback temporarily the setting of new permissions when failonerror="true"

and fork="false"

7 lines of code changed in:

  • docs/manual/CoreTasks: java.html (+3 -2)
  • src/main/org/apache/tools/ant/taskdefs: Java.java (+2 -1)
  • src/testcases/org/apache/tools/ant/taskdefs: JavaTest.java (+2 -1)
antoine 2003-08-29 11:10

Adding a permission to read file.encoding in the default set of permissions

1 lines of code changed in:

antoine 2003-08-28 13:46

Set default permissions appropriate to fail the builds when failonerror is

true (and fork false) and no other permissions were set.

Suggestion of Steve Loughran.

39 lines of code changed in:

  • docs/manual/CoreTasks: java.html (+6 -1)
  • src/etc/testcases/taskdefs: java.xml (+16)
  • src/main/org/apache/tools/ant/taskdefs: Java.java (+8 -1)
  • src/testcases/org/apache/tools/ant/taskdefs: JavaTest.java (+9)
antoine 2003-08-28 12:24

Make the tests pass under Gump

7 lines of code changed in:

bodewig 2003-08-28 07:10

Make <sshexec> evaluate the exit code of the remote command.



PR: 19237

Based on a submission by: Rob Meyer <rob at bigdis dot com>

18 lines of code changed in:

antoine 2003-08-27 19:12

Save the nerves of future generations of committers,

by failing the JavaTest if tests-classpath.value is not set

Also removed an unused path definition.

2 lines of code changed in:

  • src/etc/testcases/taskdefs: java.xml (+2 -4)
antoine 2003-08-27 14:23

PR: 22533

Submitted by: J.M. (Martijn) Kruithof (ant at kruithof dot xs4all dot nl)

688 lines of code changed in:

bodewig 2003-08-27 10:08

whitespace changes only

25 lines of code changed in:

  • src/main/org/apache/tools/ant/taskdefs: Redirector.java (+8 -8)
  • src/main/org/apache/tools/ant/taskdefs/optional/ssh: Scp.java (+17 -19)
bodewig 2003-08-27 10:07

Don't connect to remote site when you know there is nothing to transfer.



also fixes PR: 22726

12 lines of code changed in:

  • src/main/org/apache/tools/ant/taskdefs/optional/ssh: Scp.java (+12 -3)
bodewig 2003-08-27 09:34

resolve relative paths in file and todir attributes like all other Ant tasks do - i.e. relative to basedir

7 lines of code changed in:

  • src/main/org/apache/tools/ant/taskdefs/optional/ssh: Scp.java (+7 -7)
bodewig 2003-08-27 08:45

Improve symmetry

1 lines of code changed in:

  • src/main/org/apache/tools/ant: Main.java (+1 -1)
bodewig 2003-08-27 08:40

A JUnit TestSuite can contain tests from multiple classes. In particular it

can contain tests from two different classes but with the same method

name.



Add a new classname attribute to the <testcase> element in the

XML report so that people know which test the report is talking about.

12 lines of code changed in:

bodewig 2003-08-26 12:32

Don't open the file used for <exec output="file"> and friends before

it gets actually written.



Needed to fix PR: 13652

4 lines of code changed in:

bodewig 2003-08-26 08:34

explicitly cast StringBuffer to Object so that the "right" append

method gets chosen. This ensures that a JDK 1.4 compiled Ant can be

run on JDK 1.2. Well, makes it more likely.



PR: 22705

1 lines of code changed in:

bodewig 2003-08-26 08:21

Make tests pass on OpenVMS.



PR: 22696

Submitted by: Knut Wannheden <knut at paranor dot ch>

2 lines of code changed in:

antoine 2003-08-25 15:58

Add example supplied by Rob Oxspring

14 lines of code changed in:

  • docs/manual/OptionalTasks: image.html (+14 -3)
bodewig 2003-08-25 15:29

remove must be synchronized, too. Thanks Antoine

1 lines of code changed in:

bodewig 2003-08-25 08:28

Switch BuildListener management from "copy on each event" to "copy on

add/remove".



Suggested by: Sylvain Wallez <sylvain dot wallez at anyware dash tech dot com>

34 lines of code changed in:

bodewig 2003-08-25 07:44

Explain gpg invocation line to myself

2 lines of code changed in:

bodewig 2003-08-25 07:36

2003

1 lines of code changed in:

antoine 2003-08-24 14:24

Add an example with an octal permission for chmod's documentation.

PR: 22445

5 lines of code changed in:

antoine 2003-08-22 17:32

Change anchor name (thanks Dominique).

1 lines of code changed in:

antoine 2003-08-22 15:25

Remove direct call to deprecated project, location, tasktype Task field,

replaced by an accessor way into tasks.

Remove too some unused variable declaration and some unused imports.

PR: 22515

Submitted by: Emmanuel Feller ( Emmanuel dot Feller at free dot fr)

61 lines of code changed in:

antoine 2003-08-22 14:24

Define better the case sensitive attribute of the fileset type

1 lines of code changed in:

antoine 2003-08-22 14:08

make the script to start ant from python use the new launcher

Submitted by: Knut Wannheden (knut dot wannheden at paranor dot ch)

31 lines of code changed in:

antoine 2003-08-22 11:23

Fixes unsensitive searches on case sensitive remote file systems

39 lines of code changed in:

  • src/main/org/apache/tools/ant/taskdefs/optional/net: FTP.java (+39 -3)
antoine 2003-08-22 10:48

Added a new testcase which fails on UNIX.

I need to change the inner class AntFTPFile so that it scans subdir

on case sensitive systems when case sensitive is set to false

and a path element is not found with its original spelling.

13 lines of code changed in:

  • src/testcases/org/apache/tools/ant/taskdefs/optional/net: FTPTest.java (+13)
antoine 2003-08-22 10:00

fixed title

1 lines of code changed in:

antoine 2003-08-22 09:20

Quoting Rob Oxspring :



I was using the image task to create thumbnails and couldn't figure out

how to keep proportions of an image but keep it within a fixed size.

My solution was to change the keepproportions attribute to be a little cleverer.

The keepproportions attribute is no more and has been replaced by the proportions

attribute, which has been added with the following features:



proportions="ignore" - treat the dimensions independently (==keepproportions="false" and is default)

proportions="width" - keep proportions based on the width (==keepproportions="true")

proportions="height" - keep proportions based on the height

proportions="fit" - keep proportions and fit in the supplied dimensions

proportions="cover" - keep proportions and cover the supplied dimensions



Submitted by: Rob Oxspring (roxspring at imapmail dot org)

51 lines of code changed in:

  • WHATSNEW (+3)
  • docs/manual/OptionalTasks: image.html (+9 -5)
  • src/etc/testcases/taskdefs/optional/image: image.xml (+5 -5)
  • src/main/org/apache/tools/ant/types/optional/image: Scale.java (+34 -5)
bodewig 2003-08-22 09:20

2003

1 lines of code changed in:

bodewig 2003-08-22 09:20

close document, add copyright line

6 lines of code changed in:

antoine 2003-08-21 19:42

Avoid altering unnecessarily the timestamps of the directories of the

files processed by replaceregexp

PR: 22541

37 lines of code changed in:

antoine 2003-08-21 18:14

finish off the bug report of Martijn.

Note that the diffs of StyleTest.java is big, the file contained

control M characters at the end of each line

PR: 22549

Submitted by: J.M. (Martijn) Kruithof ant at kruithof dot xs4all dot nl

3 lines of code changed in:

antoine 2003-08-21 18:00

Make JavaTest pass under JDK 1.2 (and 1.3) under linux

The same problem was seen on JDK 1.3 on FreeBSD

PR: 22549

Submitted by: J.M. (Martijn) Kruithof ant at kruithof dot xs4all dot nl

5 lines of code changed in:

  • src/etc/testcases/taskdefs: java.xml (+4 -4)
  • src/testcases/org/apache/tools/ant/taskdefs: JavaTest.java (+1 -1)
antoine 2003-08-21 17:45

Let the unzip testEncoding testcase use UnicodeBig instead of UTF16

UnicodeBig is supported by rt.jar of 1.2.2 as opposed to UTF16.

UTF16 is not even listed on

http://java.sun.com/products/jdk/1.2/docs/guide/internat/encoding.doc.html

PR: 22549

Submitted by: J.M. (Martijn) Kruithof (ant at kruithof dot xs4all dot nl)

2 lines of code changed in:

  • src/etc/testcases/taskdefs: unzip.xml (+2 -2)
antoine 2003-08-21 16:56

Optimize scanning in FTP.FTPDirectoryScanner, using similar algorithms

to the ones introduced in DirectoryScanner.

There is a gain when

- the include patterns look like some/very/long/path

- the remote file system is case sensitive

- the casesensitive and followsymlinks options of the fileset are set

to true (the default)

PR: 20103

630 lines of code changed in:

antoine 2003-08-21 16:15

Prevent empty headers from being sent in plain mail messages.

Make the order of the headers of plain mail predictable by using

two parallel vectors instead of a hashset to store the headers internally.

Style corrections

PR: 22088

Submitted by: Michael Davey (michael dot davey at coderage dot org)

191 lines of code changed in:

antoine 2003-08-21 15:26

Make PlainMailer also work with foreign character sets.

PR: 15434

9 lines of code changed in:

stevel 2003-08-21 00:34

Documented assertions..still need the tests

177 lines of code changed in:

ehatcher 2003-08-20 23:28

Joe Ottinger asked me to add the JDJ award

19 lines of code changed in:

antoine 2003-08-20 16:07

Added information about how to configure Winzip to see better what is

in a war file

Submitted by: Neil Pitman (neil dot pitman at sympatico dot ca)

9 lines of code changed in:

antoine 2003-08-19 12:15

Changes to the constructor of EmailAddress(String address) to make it support

addresses containing also the name such as name <address> or (name) address.

This allows these syntaxes to be used in the attributes from, tolist, cclist, replyto

of the email task.

PR: 22474

Submitted by: Michael Davey ( michael dot davey at coderage dot org)

181 lines of code changed in:

antoine 2003-08-18 13:58

Added GnuPG key

30 lines of code changed in:

bodewig 2003-08-18 10:30

fix numbering

3 lines of code changed in:

bodewig 2003-08-18 10:22

revise Release Instructions

24 lines of code changed in:

bodewig 2003-08-18 10:01

Add Tom's email address, fix typo

4 lines of code changed in:

bodewig 2003-08-18 09:58

Move old releases to archive.apache.org

4 lines of code changed in:

bodewig 2003-08-18 09:55

One more place that mentions Ant's current version

2 lines of code changed in:

antoine 2003-08-15 21:18

Date selector's behavior was inconsistent with the documentation

PR: 22473

Submitted by: gudnabrsam at yahoo dot com

1 lines of code changed in:

peterreilly 2003-08-15 15:04

* add equality and similar methods for the ant definitions

used to check if a new definition overriding a previous

definition is actually the same definition via a ant or

antcall command

* remove pointless check for antlib: in setUri

301 lines of code changed in:

peterreilly 2003-08-15 09:33

macrodef changes:

* change nested element name from param to attribute

(now the same as scriptdef)

* expermintal testing for @attribute notation - controlled

by an attributeStyle attribute

* checking if correct attribute/element names are used

* samedefinition method overloaded

233 lines of code changed in:

bodewig 2003-08-15 09:11

Add example for sourcepath="".



PR: 22427

Submitted by: Jaroslav Tulach <jtulach at netbeans dot org>

14 lines of code changed in:

peterreilly 2003-08-15 09:09

make the fields private

2 lines of code changed in:

peterreilly 2003-08-15 08:52

stylecheck

1 lines of code changed in:

peterreilly 2003-08-15 08:51

make scriptdef an antlibbable definition

derive from DefBase and use the uri for the name

this change also provides the classloader attributes

and elements from DefBase to ScriptDef

use the DefBase classloader

14 lines of code changed in:

  • src/main/org/apache/tools/ant/taskdefs/optional/script: ScriptDef.java (+14 -3)
peterreilly 2003-08-15 08:42

implement sameDefinition for preset definition

12 lines of code changed in:

peterreilly 2003-08-15 08:40

move same definition to AntTypeDefinition

23 lines of code changed in:

bodewig 2003-08-15 07:05

Add blurb for Tom.



Submitted by: Thomas Haas <tha at whitestein dot com>

6 lines of code changed in:

antoine 2003-08-14 21:01

Add two new attributes timediffmillis and timediffauto for the ftp task

so that the newer attribute can take into account time differences between local

machine and remote server.

PR: 19358

128 lines of code changed in:

  • WHATSNEW (+5)
  • docs/manual/OptionalTasks: ftp.html (+18 -1)
  • src/main/org/apache/tools/ant/taskdefs/optional/net: FTP.java (+105 -5)
antoine 2003-08-14 17:23

removed useless <property environment="env"/>

0 lines of code changed in:

  • src/etc/testcases/taskdefs/optional/net: ftp.xml (-1)
bodewig 2003-08-14 16:25

Newer versions of Kaffe have a filesystem layout similar to Sun's VMs,

don't exclude rt.jar and friends.



PR: 22297

14 lines of code changed in:

  • src/main/org/apache/tools/ant/types: Path.java (+14 -8)
bodewig 2003-08-14 16:16

Avoid "useless use of cat" award by using a real world example.

20 lines of code changed in:

antoine 2003-08-14 15:47

mistake found ... oops ... corrected

1 lines of code changed in:

  • src/main/org/apache/tools/ant/taskdefs/optional/net: FTP.java (+1 -1)
antoine 2003-08-14 15:32

changed the info concerning followsymlinks

5 lines of code changed in:

  • docs/manual/OptionalTasks: ftp.html (+5 -2)
antoine 2003-08-14 15:24

added comments concerning support of remote symbolic links in the ftp task

7 lines of code changed in:

bodewig 2003-08-14 14:52

Make <jjtree>'s outputdirectory and outputfile attributes work as

expected (i.e. consistent with the command line of jjtree).



PR: 21526

Submitted by: Jene Jasper <jjasper at abz dot nl>

439 lines of code changed in:

  • docs/manual/OptionalTasks: jjtree.html (+346)
  • src/main/org/apache/tools/ant/taskdefs/optional/javacc: JJTree.java (+93 -10)
antoine 2003-08-14 14:47

Go on working on the followsymlinks support in the FTP task.

The scanner was working previously, but the retrieving of links was not working

because the followsymlinks attribute was not passed through.

77 lines of code changed in:

  • src/etc/testcases/taskdefs/optional/net: ftp.xml (+26)
  • src/main/org/apache/tools/ant/taskdefs/optional/net: FTP.java (+2 -2)
  • src/main/org/apache/tools/ant/types: AbstractFileSet.java (+15)
  • src/testcases/org/apache/tools/ant/taskdefs/optional/net: FTPTest.java (+34)
bodewig 2003-08-14 14:37

Record default for <javac>'s verbose attribute, submitted by Larry Shatzer

2 lines of code changed in:

bodewig 2003-08-14 14:29

Update AntRunner info, submitted by Dirk Schnelle

8 lines of code changed in:

peterreilly 2003-08-14 14:06

add link to custom condition

10 lines of code changed in:

peterreilly 2003-08-14 13:22

Add in Ant 1.6 javadocs for presetdef and macrodef

3 lines of code changed in:

peterreilly 2003-08-14 13:17

some unittests for presetdef and macrodef

67 lines of code changed in:

peterreilly 2003-08-14 12:48

adding doc for presetdef and macrodef

255 lines of code changed in:

peterreilly 2003-08-14 12:46

Adding tasks presetdef and macrodef

855 lines of code changed in:

antoine 2003-08-14 11:37

files which are pointed to by symbolic links should be excluded if followsymlinks="false"

4 lines of code changed in:

  • src/main/org/apache/tools/ant/taskdefs/optional/net: FTP.java (+4 -3)
peterreilly 2003-08-14 09:45

fix head as DefBase.java is a new file

1 lines of code changed in:

  • src/main/org/apache/tools/ant/taskdefs: DefBase.java (+1 -1)
bodewig 2003-08-14 07:04

2003

9 lines of code changed in:

bodewig 2003-08-14 07:02

make definitions work for Mono

6 lines of code changed in:

peterreilly 2003-08-13 15:19

enum change

2 lines of code changed in:

  • src/main/org/apache/tools/ant/taskdefs/optional/junit: JUnitTest.java (+2 -2)
peterreilly 2003-08-13 15:14

remove enum variable

PR: 22336

Obtained from: Robert Stupp, using Jan Mat??rne's checkstyle check

35 lines of code changed in:

peterreilly 2003-08-13 15:02

removing enum variabe

PR: 22345

Obtained from:

Submitted by:

Reviewed by:

69 lines of code changed in:

peterreilly 2003-08-13 14:46

removing enum variable

PR: 22345

Obtained from:

Submitted by:

Reviewed by:

70 lines of code changed in:

peterreilly 2003-08-13 14:22

some 1.1 isms

PR: 22326

Obtained from: Martijn Kruithof

Submitted by:

Reviewed by:

9 lines of code changed in:

bodewig 2003-08-13 14:06

execute mono instead of .EXE

4 lines of code changed in:

  • src/etc/testcases/taskdefs/optional: dotnet.xml (+4 -2)
peterreilly 2003-08-13 14:06

remove some deprecated methods and 1.1 holdovers

Bugzilla: 22326

12 lines of code changed in:

peterreilly 2003-08-13 13:44

Two of the files in 22326

PR: 22326

Obtained from: Martijn Kruithof

Submitted by:

Reviewed by:

2 lines of code changed in:

bodewig 2003-08-13 13:42

More Mono tests

90 lines of code changed in:

  • src/etc/testcases/taskdefs/optional: dotnet.xml (+90 -34)
peterreilly 2003-08-13 13:36

typeo use use -> use

2 lines of code changed in:

  • src/main/org/apache/tools/ant/taskdefs: DefBase.java (+1 -1)
  • src/testcases/org/apache/tools/ant/taskdefs: XmlnsTest.java (+1 -1)
bodewig 2003-08-13 13:28

enable assertions for <junit> the same way as <java> uses them

10 lines of code changed in:

  • src/main/org/apache/tools/ant/taskdefs/optional/junit: JUnitTask.java (+10)
peterreilly 2003-08-13 13:26

unit tests for namespace support

PR: 19897

Submitted by: Peter Reilly

81 lines of code changed in:

  • src/etc/testcases/taskdefs: xmlns.xml (new 40)
  • src/testcases/org/apache/tools/ant/taskdefs: XmlnsTest.java (new 41)
peterreilly 2003-08-13 13:22

add in attribute uri for typedef

9 lines of code changed in:

peterreilly 2003-08-13 13:18

Add ns support

Also split Definer.java in a base class (DefBase) to allow

it to be used for other defining tasks

Also add AntlibInterface to allow antlib to set uri and

classloader for other tasks/types that Definer.



Bugzilla: 19897

570 lines of code changed in:

peterreilly 2003-08-13 12:45

remove unused copy method

0 lines of code changed in:

peterreilly 2003-08-13 09:05

fix selector example

23 lines of code changed in:

peterreilly 2003-08-13 08:35

initial attempt to describe introspection based components

397 lines of code changed in:

bodewig 2003-08-13 06:47

Fix list names, two mails bounced for me

2 lines of code changed in:

bodewig 2003-08-13 06:11

Announce 1.5.4

162 lines of code changed in:

conor 2003-08-12 15:15

Rename some enums ...

6 lines of code changed in:

bodewig 2003-08-12 07:25

mail-archives should be used now, even if it doesn't work either

6 lines of code changed in:

peterreilly 2003-08-11 13:43

checkstyle

120 lines of code changed in:

  • src/main/org/apache/tools/ant/taskdefs: Javac.java (+120 -16)
conor 2003-08-11 13:24

The user list is high traffic

21 lines of code changed in:

conor 2003-08-11 13:18

Copy parser jars into the bootstrap and dist areas. Makes it

easier to run Ant from the result of dist-lite

14 lines of code changed in:

conor 2003-08-08 14:33

Don't include ext dir for microsoft jvc when java runtime is excluded.



PR: 18055

5 lines of code changed in:

  • src/main/org/apache/tools/ant/taskdefs/compilers: Jvc.java (+5 -3)
bodewig 2003-08-08 07:59

.NET "executables" are not executable on Linux

3 lines of code changed in:

  • src/etc/testcases/taskdefs/optional: dotnet.xml (+3 -1)
stevel 2003-08-08 00:15

compiles but doesnt run. Path issues?

1 lines of code changed in:

  • src/etc/testcases/taskdefs/optional: dotnet.xml (+1)
stevel 2003-08-08 00:11

Lets try this as a fix: A new option to turn standardlib on

or off that overrides the defaultreferences switch

31 lines of code changed in:

antoine 2003-08-07 22:23

Removed unused variable

0 lines of code changed in:

  • src/main/org/apache/tools/ant/taskdefs/optional/net: FTP.java (-1)
antoine 2003-08-07 22:20

There have been several bug reports showing that users did not understand

the meaning of remotedir and of the nested fileset(s) for the different actions

of the ftp task.

I have added a table to explain this.

Also removed the warning concerning Win2000 ftp servers (I am not sure the problem

is still actual) and added instead a warning concerning the newer option.

PR: 13876

95 lines of code changed in:

  • docs/manual/OptionalTasks: ftp.html (+95 -8)
bodewig 2003-08-07 11:17

Add missing import

1 lines of code changed in:

bodewig 2003-08-07 11:14

2003 and missing license

54 lines of code changed in:

conor 2003-08-06 15:15

Fix extraction of long file names in Tar



PR: 15230

Submitted by: J. David Beutel

6 lines of code changed in:

conor 2003-08-06 14:35

oops

0 lines of code changed in:

conor 2003-08-06 14:12

Change the check for the external resolver catalog impl to

ensure it can be loaded by the resolver classes.

35 lines of code changed in:

antoine 2003-08-06 12:24

Issue a warning message indicating that selectors within filesets

are not supported in the ftp task when the fileset is remote

(all actions except put)

PR: 18280

62 lines of code changed in:

  • src/etc/testcases/taskdefs/optional/net: ftp.xml (+22)
  • src/main/org/apache/tools/ant/taskdefs/optional/net: FTP.java (+5)
  • src/testcases/org/apache/tools/ant/taskdefs/optional/net: FTPTest.java (+35 -23)
bodewig 2003-08-06 11:56

Add pointer to Antmerge, submitted by Phillip Lord

71 lines of code changed in:

antoine 2003-08-06 10:58

Fix the ftp task, its documentation and testcases to maintain backward

compatibility.

22 lines of code changed in:

  • docs/manual/OptionalTasks: ftp.html (+13)
  • src/main/org/apache/tools/ant/taskdefs/optional/net: FTP.java (+4 -11)
  • src/testcases/org/apache/tools/ant/taskdefs/optional/net: FTPTest.java (+5 -5)
antoine 2003-08-06 10:27

use user.name as default for ftp.user

new target for testing scanning a file which is a symbolic link

7 lines of code changed in:

  • src/etc/testcases/taskdefs/optional/net: ftp.xml (+7 -16)
bodewig 2003-08-06 10:20

Add pointer to Jegustator, submitted by Pavel Vlasov

73 lines of code changed in:

bodewig 2003-08-06 09:53

Remove trailing delimiter from addReferenceFileset

5 lines of code changed in:

bodewig 2003-08-06 09:43

2003

2 lines of code changed in:

  • src/testcases/org/apache/tools/ant/taskdefs: StyleTest.java (+2 -2)
antoine 2003-08-05 23:18

Added a testcase showing resolution of PR 14063

Ant ftp did not download file it is a symlink

PR: 14063

21 lines of code changed in:

antoine 2003-08-05 22:59

removed output on System.out, sorry

0 lines of code changed in:

  • src/main/org/apache/tools/ant/taskdefs/optional/net: FTP.java (-2)
antoine 2003-08-05 22:23

Make the FTP.FTPDirectoryScanner behave like the DirectoryScanner

in terms of following symbolic links which are directories.

This will make a change of behavior in comparison with ant 1.5.3

where the behavior of the ftp task was to never follow symbolic links.



Also select symbolic links which are files

PR: 14063

94 lines of code changed in:

antoine 2003-08-05 17:38

fix a problem of protected access to FTP.resolveFile

7 lines of code changed in:

  • src/testcases/org/apache/tools/ant/taskdefs/optional/net: FTPTest.java (+7 -4)
antoine 2003-08-05 16:44

Make the FTP.FTPDirectoryScanner class also register the root of a fileset

when the root matches include exclude patterns.

This is the behavior of the DirectoryScanner for normal filesets.

This change should only possibly impact the RMDIR modus of the ftp task

when the root directory is included.

12 lines of code changed in:

  • src/main/org/apache/tools/ant/taskdefs/optional/net: FTP.java (+12)
bodewig 2003-08-05 16:13

Add a keepcompression attribute to control the compression of entries

that come from existing archives.



PR: 16084

88 lines of code changed in:

peterreilly 2003-08-05 16:05

add <style/> change to WHATSNEW

3 lines of code changed in:

peterreilly 2003-08-05 16:01

Add if/unless attributes to <param/> element of <style/> task

PR: 22044

Obtained from: Jens

Submitted by: Peter Reilly & Jan Mat??rne

171 lines of code changed in:

bodewig 2003-08-05 15:40

ant -Debug would cause a NullPointerException



PR: 22065

3 lines of code changed in:

  • src/main/org/apache/tools/ant: Main.java (+3)
bodewig 2003-08-05 15:08

Slowly approaching <csc> with Mono

52 lines of code changed in:

  • src/etc/testcases/taskdefs/optional: dotnet.xml (+52 -7)
peterreilly 2003-08-05 13:56

test case to show bug report 11418

PR: 11418

Obtained from: John-Mason P. Shackelford

21 lines of code changed in:

bodewig 2003-08-05 13:49

Add pointer to Zelix Klaasmaster, submitted by Svet Kovich

57 lines of code changed in:

peterreilly 2003-08-05 11:47

Remove unneeded setting of properties in reinit()

1 lines of code changed in:

  • src/main/org/apache/tools/ant/taskdefs: Ant.java (+1 -30)
antoine 2003-08-04 22:23

new test for the ftp task

requires ftp.properties in ant's root directory (with your password in it) and a local ftp server.

The test is disabled by default in build.xml

46 lines of code changed in:

  • src/etc/testcases/taskdefs/exec: exec.xml (changed)
  • src/etc/testcases/taskdefs/optional/net: ftp.xml (new 42)
  • src/testcases/org/apache/tools/ant/taskdefs/optional/net: FTPTest.java (new 4)
antoine 2003-08-04 22:19

new test for ftp, disabled by default.

requires ftp.properties with your password in it in ant's root directory

also requires a local ftp server

3 lines of code changed in:

antoine 2003-08-04 16:37

one more VAJ entry in WHATSNEW

3 lines of code changed in:

antoine 2003-08-04 16:06

scan the fileset after having called setupDirectoryScanner

PR: 22080

1 lines of code changed in:

  • src/main/org/apache/tools/ant/taskdefs/optional/ide: VAJImport.java (+1)
bodewig 2003-08-04 12:23

Restore System.in, PR: 22066

2 lines of code changed in:

  • src/main/org/apache/tools/ant: Main.java (+2)
bodewig 2003-08-04 12:12

Revert accidental commit

0 lines of code changed in:

bodewig 2003-08-04 12:11

Only calculate the CRC of STORED entries in <zip> if absolutely necessary.



PR: 21899

80 lines of code changed in:

conor 2003-08-03 11:27

Revert final on System classpath

1 lines of code changed in:

  • src/main/org/apache/tools/ant/types: Path.java (+1 -1)
antoine 2003-08-01 13:36

increase time allocated for shell script to complete,

following failure of the test on August 1st 2003 on cvs.apache.org

2 lines of code changed in:

bodewig 2003-08-01 12:28

Add reference to "Ant pretty build", submitted by Charbel BITAR

83 lines of code changed in:

peterreilly 2003-08-01 10:22

style

10 lines of code changed in:

  • src/main/org/apache/tools/ant: Task.java (+10)
bodewig 2003-08-01 10:08

Revert part of the commit that made tasks use Execute#isFailure.



On OpenVMS the Java VM will exit with a return code of 0 on success,

even though this is going to signal a failure for the OS. All tasks

that spawn new VMs have now been reverted to explicitly check for

retCode != 0 instead of Execite.isFailure(retCode).



We could as well introduce Execute#isJavaFailure or something like

this in case future VM's on OpenVMS will start to do the right thing.

32 lines of code changed in:

peterreilly 2003-08-01 08:34

Fix location when error occurs in running antlib

19 lines of code changed in:

bodewig 2003-08-01 06:45

Upgrade to Xerces-J 2.5.0

2 lines of code changed in:

stevel 2003-08-01 06:44

I always worry when I change something fundamental, and the amount of refactoring here to get assertions in 'cleanly' means the change here is larger than one would expect. The key problem is that the existing code created presized arrays, but sizing these arrays meant resolving every single option and counting the #of commands -effectively creating the command line twice. Once to size it, once to save the results. this was silly and unwieldy, though it made sense given how this command grew and grew.



Most of the diff is changing CommandLine and CommmandLineJava to append their info to a supplied ListIterator, so that we dont need to create string arrays and keep on appending them. All the old stuff is still there, but used less -certainly not used at all by CommandLineJava.



No assertion tests yet...

343 lines of code changed in:

stevel 2003-08-01 06:30

bug #20735 "Resource" is not explained;



explained what a resource is, clarified what property files do, to field off recurrent bugreps and show property expansion.

31 lines of code changed in:

stevel 2003-08-01 05:55

add the ability to set the executable used in .net tasks. Why do this

(a) so you can refer to versions off the path (useful for multiple versions)

(b) so you can use other implementations than the windows one.



Specifically, Mono Csharp compiler, msc, apparently uses the same syntax as csc if desired. We will have to test this... I suppose we could test Rotor too, but I cant be bothered

68 lines of code changed in:

stevel 2003-08-01 05:52

I cant believe we never noticed this typo before

1 lines of code changed in:

stevel 2003-08-01 05:52

want to catch failure to fork here.

1 lines of code changed in:

stevel 2003-08-01 05:02

fix a couple of IDE highighted jdoc typos

3 lines of code changed in:

July 2003 »

Generated by StatSVN 0.3.2-SNAPSHOT