Return-Path: Delivered-To: apmail-ant-notifications-archive@minotaur.apache.org Received: (qmail 62657 invoked from network); 29 Jul 2009 22:15:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 29 Jul 2009 22:15:36 -0000 Received: (qmail 3938 invoked by uid 500); 29 Jul 2009 22:15:37 -0000 Delivered-To: apmail-ant-notifications-archive@ant.apache.org Received: (qmail 3887 invoked by uid 500); 29 Jul 2009 22:15:37 -0000 Mailing-List: contact notifications-help@ant.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ant.apache.org Delivered-To: mailing list notifications@ant.apache.org Received: (qmail 3878 invoked by uid 99); 29 Jul 2009 22:15:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Jul 2009 22:15:37 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Jul 2009 22:15:35 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 6817323888CF; Wed, 29 Jul 2009 22:15:15 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r799097 - in /ant/ivy/core/trunk: CHANGES.txt src/java/org/apache/ivy/plugins/repository/url/URLResource.java Date: Wed, 29 Jul 2009 22:15:15 -0000 To: notifications@ant.apache.org From: maartenc@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090729221515.6817323888CF@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: maartenc Date: Wed Jul 29 22:15:14 2009 New Revision: 799097 URL: http://svn.apache.org/viewvc?rev=799097&view=rev Log: FIX: URLResource does not properly support authentication (IVY-1106) (thanks to Heschi Kreinick) Modified: ant/ivy/core/trunk/CHANGES.txt ant/ivy/core/trunk/src/java/org/apache/ivy/plugins/repository/url/URLResource.java Modified: ant/ivy/core/trunk/CHANGES.txt URL: http://svn.apache.org/viewvc/ant/ivy/core/trunk/CHANGES.txt?rev=799097&r1=799096&r2=799097&view=diff ============================================================================== --- ant/ivy/core/trunk/CHANGES.txt (original) +++ ant/ivy/core/trunk/CHANGES.txt Wed Jul 29 22:15:14 2009 @@ -47,6 +47,7 @@ Matthias Kilian Alexey Kiselev Gregory Kisling + Heschi Kreinick Tat Leung Costin Leau Antoine Levy-Lambert @@ -90,6 +91,10 @@ trunk ===================================== +- FIX: URLResource does not properly support authentication (IVY-1106) (thanks to Heschi Kreinick) + + 2.1.0-rc2 +===================================== - DOCUMENTATION: not all attributes of publish task are documented (IVY-963) (thanks to Jon Schneider) - DOCUMENTATION: missing documentation for the 'Version Pattern Matcher' (IVY-871) (thanks to Jon Schneider) - DOCUMENTATION: added missing documentation for the 'keep' attribute on the (post)resolve Ant tasks (IVY-1091) Modified: ant/ivy/core/trunk/src/java/org/apache/ivy/plugins/repository/url/URLResource.java URL: http://svn.apache.org/viewvc/ant/ivy/core/trunk/src/java/org/apache/ivy/plugins/repository/url/URLResource.java?rev=799097&r1=799096&r2=799097&view=diff ============================================================================== --- ant/ivy/core/trunk/src/java/org/apache/ivy/plugins/repository/url/URLResource.java (original) +++ ant/ivy/core/trunk/src/java/org/apache/ivy/plugins/repository/url/URLResource.java Wed Jul 29 22:15:14 2009 @@ -96,6 +96,6 @@ } public InputStream openStream() throws IOException { - return url.openStream(); + return URLHandlerRegistry.getDefault().openStream(url); } }