diff --git a/manual/Integration/jext-plugin.html b/manual/Integration/jext-plugin.html index 1d260efe5..dade832a7 100644 --- a/manual/Integration/jext-plugin.html +++ b/manual/Integration/jext-plugin.html @@ -30,8 +30,8 @@ by
You can download the plugin -at: http://sourceforge.net/projects/jext/files/OldFiles/antwork_plugin.zip/download
+at: https://sourceforge.net/projects/jext/files/OldFiles/antwork_plugin.zip/download<condition property="offline"> - <isreachable url="http://ibiblio.org/maven/"/> + <isreachable url="https://ibiblio.org/maven/"/> </condition>
Probe for the Maven repository being reachable.
diff --git a/manual/Tasks/copy.html b/manual/Tasks/copy.html index 03aae8dea..48f07d938 100644 --- a/manual/Tasks/copy.html +++ b/manual/Tasks/copy.html @@ -241,7 +241,7 @@ directory, flattening the directory structure. <copy todir="dest" flatten="true"> <resources> <file file="src_dir/file1.txt"/> - <url url="http://ant.apache.org/index.html"/> + <url url="https://ant.apache.org/index.html"/> </resources> </copy> @@ -260,7 +260,7 @@ an absolute path as their names. <file file="src_dir/file1.txt"/> <file file="src_dir/file2.txt"/> <file file="src_dir/file3.txt"/> - <url url="http://ant.apache.org/index.html"/> + <url url="https://ant.apache.org/index.html"/> </resources> </sort> </first> diff --git a/manual/Tasks/cvstagdiff.html b/manual/Tasks/cvstagdiff.html index 6647a19c3..aef891f2b 100644 --- a/manual/Tasks/cvstagdiff.html +++ b/manual/Tasks/cvstagdiff.html @@ -189,7 +189,7 @@ output. The following example illustrates how to generate an HTML report from th style="${ant.home}/etc/tagdiff.xsl"> <param name="title" expression="Ant Diff"/> <param name="module" expression="ant"/> - <param name="cvsweb" expression="http://cvs.apache.org/viewcvs/"/> + <param name="cvsweb" expression="https://cvs.apache.org/viewcvs/"/> </style>The tasks support:
Gets files from URLs. When the verbose option is on
, this task displays
a .
for every 100 Kb retrieved. Any URL schema supported by the runtime is valid here,
-including http:
, ftp:
and jar:
.
http:,
https:,
ftp:and
jar:.
The usetimestamp option enables you to control downloads so that the remote file is
only fetched if newer than the local copy. If there is no local copy, the download always takes
place. When a file is downloaded, the timestamp of the downloaded file is set to the remote
@@ -175,14 +175,14 @@ nested <header/>
node are as follows:
Get the index page of http://ant.apache.org/, and store it in the +
Get the index page of https://ant.apache.org/, and store it in the file help/index.html.
-<get src="http://ant.apache.org/" dest="help/index.html"/>+
<get src="https://ant.apache.org/" dest="help/index.html"/>
Get the PGP keys of Ant's (current and past) release managers, if the local copy is missing or out of date. Use the verbose option for progress information.
-<get src="http://www.apache.org/dist/ant/KEYS" +<get src="https://www.apache.org/dist/ant/KEYS" dest="KEYS" verbose="true" usetimestamp="true"/>@@ -230,20 +230,20 @@ naming convention for the checksum file, of course) and validate the checksum on
<get dest="downloads"> - <url url="http://ant.apache.org/index.html"/> - <url url="http://ant.apache.org/faq.html"/> + <url url="https://ant.apache.org/index.html"/> + <url url="https://ant.apache.org/faq.html"/> </get>
Using custom HTTP headers
-<get src="http://ant.apache.org/index.html" dest="downloads"> +<get src="https://ant.apache.org/index.html" dest="downloads"> <header name="header1" value="headerValue1"/> <header name="header2" value="headerValue2"/> <header name="header3" value="headerValue3"/> </get>-
get the index and FAQ pages of http://ant.apache.org/, and store them in the +
get the index and FAQ pages of https://ant.apache.org/, and store them in the directory downloads which will be created if necessary.