Repository: ant Updated Branches: refs/heads/master 20b4dabc0 -> 06bdb4521
clearly document the effect of empty includesfile attribute Bugzilla Issue 26814 Project: http://git-wip-us.apache.org/repos/asf/ant/repo Commit: http://git-wip-us.apache.org/repos/asf/ant/commit/06bdb452 Tree: http://git-wip-us.apache.org/repos/asf/ant/tree/06bdb452 Diff: http://git-wip-us.apache.org/repos/asf/ant/diff/06bdb452 Branch: refs/heads/master Commit: 06bdb4521d318d621d46259c34ee30ff4e4f33e7 Parents: 20b4dab Author: Stefan Bodewig <[email protected]> Authored: Sat Mar 7 12:32:13 2015 +0100 Committer: Stefan Bodewig <[email protected]> Committed: Sat Mar 7 12:32:13 2015 +0100 ---------------------------------------------------------------------- manual/Types/dirset.html | 5 ++++- manual/Types/fileset.html | 5 ++++- manual/Types/patternset.html | 5 ++++- 3 files changed, 12 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ant/blob/06bdb452/manual/Types/dirset.html ---------------------------------------------------------------------- diff --git a/manual/Types/dirset.html b/manual/Types/dirset.html index 1a046a6..0434e9c 100644 --- a/manual/Types/dirset.html +++ b/manual/Types/dirset.html @@ -61,7 +61,10 @@ equivalent to an <code><and></code> selector container.</p> <tr> <td valign="top">includesfile</td> <td valign="top">The name of a file; each line of this file is - taken to be an include pattern.</td> + taken to be an include pattern. + <b>Note:</b> if the file is empty and there are no other + patterns defined for the fileset, all directories will be included. + </td> <td valign="top" align="center">No</td> </tr> <tr> http://git-wip-us.apache.org/repos/asf/ant/blob/06bdb452/manual/Types/fileset.html ---------------------------------------------------------------------- diff --git a/manual/Types/fileset.html b/manual/Types/fileset.html index 10e78f7..9a7c7d7 100644 --- a/manual/Types/fileset.html +++ b/manual/Types/fileset.html @@ -71,7 +71,10 @@ equivalent to an <code><and></code> selector container.</p> <tr> <td valign="top">includesfile</td> <td valign="top">the name of a file; each line of this file is - taken to be an include pattern.</td> + taken to be an include pattern.<br/> + <b>Note:</b> if the file is empty and there are no other + patterns defined for the fileset, all files will be included. + </td> <td valign="top" align="center">No</td> </tr> <tr> http://git-wip-us.apache.org/repos/asf/ant/blob/06bdb452/manual/Types/patternset.html ---------------------------------------------------------------------- diff --git a/manual/Types/patternset.html b/manual/Types/patternset.html index d060d04..4ad433d 100644 --- a/manual/Types/patternset.html +++ b/manual/Types/patternset.html @@ -50,7 +50,10 @@ or the following attributes.</p> <td valign="top">includesfile</td> <td valign="top">the name of a file; each line of this file is taken to be an include pattern. You can specify more than one - include file by using a nested includesfile elements.</td> + include file by using a nested includesfile elements. + <b>Note:</b> if the file is empty and there are no other + patterns defined for the fileset, all files will be included. + </td> </tr> <tr> <td valign="top">excludes</td>
