Return-Path: Delivered-To: apmail-ant-dev-archive@www.apache.org Received: (qmail 20196 invoked from network); 20 Mar 2007 13:30:48 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 20 Mar 2007 13:30:48 -0000 Received: (qmail 2373 invoked by uid 500); 20 Mar 2007 13:30:56 -0000 Delivered-To: apmail-ant-dev-archive@ant.apache.org Received: (qmail 2110 invoked by uid 500); 20 Mar 2007 13:30:55 -0000 Mailing-List: contact dev-help@ant.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "Ant Developers List" Reply-To: "Ant Developers List" Delivered-To: mailing list dev@ant.apache.org Received: (qmail 2099 invoked by uid 500); 20 Mar 2007 13:30:55 -0000 Received: (qmail 2096 invoked by uid 99); 20 Mar 2007 13:30:55 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 Mar 2007 06:30:55 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 Mar 2007 06:30:46 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 77FC41A9838; Tue, 20 Mar 2007 06:30:26 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r520382 - in /ant/core/trunk: WHATSNEW src/main/org/apache/tools/ant/Main.java Date: Tue, 20 Mar 2007 13:30:26 -0000 To: ant-cvs@apache.org From: stevel@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070320133026.77FC41A9838@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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 @@ * did not append. Bugzilla 41399. -* xsl stylesheets allow setting the title used in 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: dev-unsubscribe@ant.apache.org For additional commands, e-mail: dev-help@ant.apache.org