Browse Source

Allow selectors for remote filesets in <ftp>. Submitted by Mario Frasca. PR 44726. (unfortunately some whitespace changes slipped in as well, sorry for that).

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@699336 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 16 years ago
parent
commit
a4e5c13b86
5 changed files with 314 additions and 182 deletions
  1. +1
    -0
      CONTRIBUTORS
  2. +3
    -0
      WHATSNEW
  3. +4
    -0
      contributors.xml
  4. +0
    -3
      docs/manual/OptionalTasks/ftp.html
  5. +306
    -179
      src/main/org/apache/tools/ant/taskdefs/optional/net/FTP.java

+ 1
- 0
CONTRIBUTORS View File

@@ -168,6 +168,7 @@ Magesh Umasankar
Maneesh Sahu Maneesh Sahu
Marcel Schutte Marcel Schutte
Marcus B&ouml;rger Marcus B&ouml;rger
Mario Frasca
Mariusz Nowostawski Mariusz Nowostawski
Mark Hecker Mark Hecker
Mark R. Diggory Mark R. Diggory


+ 3
- 0
WHATSNEW View File

@@ -394,6 +394,9 @@ Other changes:
are taking too long. are taking too long.
Bugzilla Report 45181. Bugzilla Report 45181.


* <ftp> now supports selectors for remote directories as well.
Bugzilla Report 44726.

Changes from Ant 1.7.0 TO Ant 1.7.1 Changes from Ant 1.7.0 TO Ant 1.7.1
============================================= =============================================




+ 4
- 0
contributors.xml View File

@@ -694,6 +694,10 @@
<first>Marcus</first> <first>Marcus</first>
<last>B&amp;ouml;rger</last> <last>B&amp;ouml;rger</last>
</name> </name>
<name>
<first>Mario</first>
<last>Frasca</last>
</name>
<name> <name>
<first>Mariusz</first> <first>Mariusz</first>
<last>Nowostawski</last> <last>Nowostawski</last>


+ 0
- 3
docs/manual/OptionalTasks/ftp.html View File

@@ -491,9 +491,6 @@ you need to explicitly set <code>followsymlinks</code> to <code>false</code>.</e
On remote filesets hidden files are not checked for being symbolic links. Hidden On remote filesets hidden files are not checked for being symbolic links. Hidden
files are currently assumed to not be symbolic links. files are currently assumed to not be symbolic links.
</p> </p>
<p>
Remote filesets do not support selectors.<br>
</p>


<h3>Sending Files</h3> <h3>Sending Files</h3>
<p>The easiest way to describe how to send files is with a couple of examples:</p> <p>The easiest way to describe how to send files is with a couple of examples:</p>


+ 306
- 179
src/main/org/apache/tools/ant/taskdefs/optional/net/FTP.java
File diff suppressed because it is too large
View File


Loading…
Cancel
Save