Author: stevel
Date: Tue Mar 20 06:30:24 2007
New Revision: 520382
URL: http://svn.apache.org/viewvc?view=rev&rev=520382
Log:
bug id 41904; -autoproxy broken.
Modified:
ant/core/trunk/WHATSNEW
ant/core/trunk/src/main/org/apache/tools/ant/Main.java
Modified: ant/core/trunk/WHATSNEW
URL:
http://svn.apache.org/viewvc/ant/core/trunk/WHATSNEW?view=diff&rev=520382&r1=520381&r2=520382
==============================================================================
--- ant/core/trunk/WHATSNEW (original)
+++ ant/core/trunk/WHATSNEW Tue Mar 20 06:30:24 2007
@@ -54,8 +54,7 @@
* <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:
--------------
@@ -87,6 +86,11 @@
* Add a <last> resource collection, corresponding to <first>.
* 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
===================================
Modified: ant/core/trunk/src/main/org/apache/tools/ant/Main.java
URL:
http://svn.apache.org/viewvc/ant/core/trunk/src/main/org/apache/tools/ant/Main.java?view=diff&rev=520382&r1=520381&r2=520382
==============================================================================
--- ant/core/trunk/src/main/org/apache/tools/ant/Main.java (original)
+++ ant/core/trunk/src/main/org/apache/tools/ant/Main.java Tue Mar 20 06:30:24
2007
@@ -382,7 +382,7 @@
+ "the ant script/.bat file and Ant itself.";
throw new BuildException(msg);
} else if (arg.equals("-autoproxy")) {
- proxy = false;
+ proxy = true;
} else if (arg.startsWith("-")) {
// we don't have any more args to recognize!
String msg = "Unknown argument: " + arg;
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]