Return-Path: Mailing-List: contact ant-dev-help@jakarta.apache.org; run by ezmlm Delivered-To: mailing list ant-dev@jakarta.apache.org Received: (qmail 24938 invoked from network); 5 Mar 2000 17:53:42 -0000 Received: from wolf.sneakerlabs.com (205.201.53.24) by locus.apache.org with SMTP; 5 Mar 2000 17:53:42 -0000 Received: from sneakerlabs.com (bloodhound.sneakerlabs.com [205.201.53.7]) by wolf.sneakerlabs.com (8.9.3/8.9.3) with ESMTP id MAA22661 for ; Sun, 5 Mar 2000 12:56:12 -0500 Message-ID: <38C29F25.271B2511@sneakerlabs.com> Date: Sun, 05 Mar 2000 12:53:41 -0500 From: Michael Smith Organization: SneakerLabs, Inc. X-Mailer: Mozilla 4.61 [en] (WinNT; U) X-Accept-Language: en MIME-Version: 1.0 To: ant-dev@jakarta.apache.org Subject: [PATCH] Small documentation fix Content-Type: multipart/mixed; boundary="------------083CA082D410FB08ACA226B4" X-Spam-Rating: locus.apache.org 1.6.2 0/1000/N This is a multi-part message in MIME format. --------------083CA082D410FB08ACA226B4 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Copydir has attributes src and dest, and there was an example in the docs with it using srcdir and destdir. See attached diff. Regards, Michael -- michael@sneakerlabs.com http://www.sneakerlabs.com --------------083CA082D410FB08ACA226B4 Content-Type: text/html; charset=us-ascii; name="docs.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="docs.diff" Index: docs/index.html =================================================================== RCS file: /home/cvspublic/jakarta-ant/docs/index.html,v retrieving revision 1.13 diff -u -r1.13 index.html --- docs/index.html 2000/03/05 09:19:46 1.13 +++ docs/index.html 2000/03/05 17:49:40 @@ -429,8 +429,8 @@

When these patterns are used in inclusion and exclusion, you have a powerful way to select just the files you want.

Examples

-
  <copydir srcdir="${src}"
-           destdir="${dist}"
+
  <copydir src="${src}"
+           dest="${dist}"
            includes="**/images/*"
            excludes="**/*.gif" />

This copies all files in directories called "images", that are --------------083CA082D410FB08ACA226B4--