@@ -28,7 +28,7 @@ <h2 id="get">Get</h2>
2828< h3 > Description</ h3 >
2929< p > Gets files from URLs. When the < var > verbose</ var > option is < q > on</ q > , this task displays
3030a < q > .</ q > for every 100 Kb retrieved. Any URL schema supported by the runtime is valid here,
31- including < q > http:</ q > , < q > ftp:</ q > and < q > jar:</ q > .</ p >
31+ including < q > http:</ q > , < q > https: </ q > , < q > ftp:</ q > and < q > jar:</ q > .</ p >
3232< p > The < var > usetimestamp</ var > option enables you to control downloads so that the remote file is
3333only fetched if newer than the local copy. If there is no local copy, the download always takes
3434place. When a file is downloaded, the timestamp of the downloaded file is set to the remote
@@ -175,14 +175,14 @@ <h4>header</h4>
175175
176176< h3 > Examples</ h3 >
177177
178- < p > Get the index page of < samp > http ://ant.apache.org/</ samp > , and store it in the
178+ < p > Get the index page of < samp > https ://ant.apache.org/</ samp > , and store it in the
179179file < samp > help/index.html</ samp > .</ p >
180- < pre > <get src="http ://ant.apache.org/" dest="help/index.html"/></ pre >
180+ < pre > <get src="https ://ant.apache.org/" dest="help/index.html"/></ pre >
181181
182182< p > Get the PGP keys of Ant's (current and past) release managers, if the local copy is missing or
183183out of date. Use the < var > verbose</ var > option for progress information.</ p >
184184< pre >
185- <get src="http ://www.apache.org/dist/ant/KEYS"
185+ <get src="https ://www.apache.org/dist/ant/KEYS"
186186 dest="KEYS"
187187 verbose="true"
188188 usetimestamp="true"/></ pre >
@@ -230,20 +230,20 @@ <h3>Examples</h3>
230230
231231< pre >
232232<get dest="downloads">
233- <url url="http ://ant.apache.org/index.html"/>
234- <url url="http ://ant.apache.org/faq.html"/>
233+ <url url="https ://ant.apache.org/index.html"/>
234+ <url url="https ://ant.apache.org/faq.html"/>
235235</get></ pre >
236236
237237< p > Using custom HTTP headers</ p >
238238
239239< pre >
240- <get src="http ://ant.apache.org/index.html" dest="downloads">
240+ <get src="https ://ant.apache.org/index.html" dest="downloads">
241241 <header name="header1" value="headerValue1"/>
242242 <header name="header2" value="headerValue2"/>
243243 <header name="header3" value="headerValue3"/>
244244</get></ pre >
245245
246- < p > get the index and FAQ pages of < samp > http ://ant.apache.org/</ samp > , and store them in the
246+ < p > get the index and FAQ pages of < samp > https ://ant.apache.org/</ samp > , and store them in the
247247directory < samp > downloads</ samp > which will be created if necessary.</ p >
248248</ body >
249249</ html >
0 commit comments