Browse Source

bug id 41904; -autoproxy broken.

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@520382 13f79535-47bb-0310-9956-ffa450edef68
master
Steve Loughran 18 years ago
parent
commit
71812c8dc2
2 changed files with 7 additions and 3 deletions
  1. +6
    -2
      WHATSNEW
  2. +1
    -1
      src/main/org/apache/tools/ant/Main.java

+ 6
- 2
WHATSNEW View File

@@ -54,8 +54,7 @@ Fixed bugs:


* <concat binary="true" append="true"> did not append. Bugzilla 41399. * <concat binary="true" append="true"> did not append. Bugzilla 41399.
* <junitreport> xsl stylesheets allow setting the title used in <title> and <h1> tags by
using <report><param> element. Bugzilla 41742.
* -autoproxy turns Java1.5+ automatic proxy support on. Bugzilla 41904


Other changes: Other changes:
-------------- --------------
@@ -88,6 +87,11 @@ Other changes:


* Add new <truncate> task. * Add new <truncate> task.


* <junitreport> xsl stylesheets allow setting the title used in <title> and <h1> tags by
using <report><param> element. Bugzilla 41742.

Changes from Ant 1.6.5 to Ant 1.7.0 Changes from Ant 1.6.5 to Ant 1.7.0
=================================== ===================================




+ 1
- 1
src/main/org/apache/tools/ant/Main.java View File

@@ -382,7 +382,7 @@ public class Main implements AntMain {
+ "the ant script/.bat file and Ant itself."; + "the ant script/.bat file and Ant itself.";
throw new BuildException(msg); throw new BuildException(msg);
} else if (arg.equals("-autoproxy")) { } else if (arg.equals("-autoproxy")) {
proxy = false;
proxy = true;
} else if (arg.startsWith("-")) { } else if (arg.startsWith("-")) {
// we don't have any more args to recognize! // we don't have any more args to recognize!
String msg = "Unknown argument: " + arg; String msg = "Unknown argument: " + arg;


Loading…
Cancel
Save