You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by bo...@apache.org on 2019/05/25 14:16:56 UTC

[ant-antlibs-props] branch master updated: TLS

This is an automated email from the ASF dual-hosted git repository.

bodewig pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ant-antlibs-props.git


The following commit(s) were added to refs/heads/master by this push:
     new ed44fdf  TLS
ed44fdf is described below

commit ed44fdfc0fe48f81ab6f70e197857e0052918aa5
Author: Stefan Bodewig <bo...@apache.org>
AuthorDate: Sat May 25 16:16:45 2019 +0200

    TLS
---
 NOTICE                               |  2 +-
 common                               |  2 +-
 docs/index.html                      |  6 +++---
 prepare.xml                          |  2 +-
 src/tests/antunit/encodeURL-test.xml | 10 +++++-----
 5 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/NOTICE b/NOTICE
index 960b0aa..744b1a6 100644
--- a/NOTICE
+++ b/NOTICE
@@ -2,5 +2,5 @@ Apache Ant Property Extensions
 Copyright 2007-2013 The Apache Software Foundation
 
 This product includes software developed at
-The Apache Software Foundation (http://www.apache.org/).
+The Apache Software Foundation (https://www.apache.org/).
 
diff --git a/common b/common
index 0a4d365..a715465 160000
--- a/common
+++ b/common
@@ -1 +1 @@
-Subproject commit 0a4d3650f72e8ec0a27f2f9e41287d96c23136b2
+Subproject commit a715465514e3aaa5e6e06a91345c0292c3642539
diff --git a/docs/index.html b/docs/index.html
index c025b72..937eed2 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -32,8 +32,8 @@
 
     <h2>Where is it?</h2>
 
-    <p>The source code for the library lives in the antlibs subspace of Ant's SVN -
-    <a href="http://svn.apache.org/viewvc/ant/antlibs/props/trunk/">http://svn.apache.org/viewvc/ant/antlibs/props/trunk/</a>.</p>
+    <p>The source code for the library lives in the antlibs subspace of Ant's git -
+    <a href="https://gitbox.apache.org/repos/asf?p=ant-antlibs-props.git">https://gitbox.apache.org/repos/asf?p=ant-antlibs-props.git</a>.</p>
 
     <h2>Installation</h2>
 
@@ -91,7 +91,7 @@
 
     <p>The types provided are instances of
        <code>org.apache.tools.ant.PropertyHelper.Delegate</code> and can be invoked using the
-       <code>&lt;<a href="http://ant.apache.org/manual/CoreTasks/propertyhelper.html">propertyhelper</a>&gt;</code>
+       <code>&lt;<a href="https://ant.apache.org/manual/CoreTasks/propertyhelper.html">propertyhelper</a>&gt;</code>
        task provided by Ant:</p>
 
     <table border="1" cellspacing="0" cellpadding="2" width="100%">
diff --git a/prepare.xml b/prepare.xml
index 8499ea6..b3a64f4 100644
--- a/prepare.xml
+++ b/prepare.xml
@@ -27,7 +27,7 @@ The original of this snippet is maintained in the antlib-common project.
 
   <!-- Which released version of AntUnit to use, where to download, where to store. -->
   <property name="antunit.version" value="1.3"/>
-  <property name="antunit.url" value="http://repo1.maven.org/maven2/org/apache/ant/ant-antunit/${antunit.version}/ant-antunit-${antunit.version}.jar"/>
+  <property name="antunit.url" value="https://repo1.maven.org/maven2/org/apache/ant/ant-antunit/${antunit.version}/ant-antunit-${antunit.version}.jar"/>
   <property name="antunit.file" value="ant-antunit.jar"/>
 
   <!-- Skip unnecessary tasks. -->
diff --git a/src/tests/antunit/encodeURL-test.xml b/src/tests/antunit/encodeURL-test.xml
index d671a73..9b9e6c2 100644
--- a/src/tests/antunit/encodeURL-test.xml
+++ b/src/tests/antunit/encodeURL-test.xml
@@ -28,18 +28,18 @@
 
   <target name="testBasic" depends="setUp">
     <au:assertTrue>
-      <equals arg1="${encodeURL:http://ant.apache.org}" arg2="http://ant.apache.org" />
+      <equals arg1="${encodeURL:https://ant.apache.org}" arg2="https://ant.apache.org" />
     </au:assertTrue>
     <au:assertTrue>
-      <equals arg1="${encodeURL:http://ant.apache.org/foo bar}"
-              arg2="http://ant.apache.org/foo%20bar" />
+      <equals arg1="${encodeURL:https://ant.apache.org/foo bar}"
+              arg2="https://ant.apache.org/foo%20bar" />
     </au:assertTrue>
   </target>
 
   <target name="testDelimiter" depends="setUp">
     <au:assertTrue>
-      <equals arg1="${encodeURL,http://ant.apache.org/foo bar?baz}"
-              arg2="http://ant.apache.org/foo%20bar?baz" />
+      <equals arg1="${encodeURL,https://ant.apache.org/foo bar?baz}"
+              arg2="https://ant.apache.org/foo%20bar?baz" />
     </au:assertTrue>
   </target>