Return-Path: Delivered-To: apmail-ant-dev-archive@www.apache.org Received: (qmail 57672 invoked from network); 4 Aug 2006 16:55:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 4 Aug 2006 16:55:00 -0000 Received: (qmail 64229 invoked by uid 500); 4 Aug 2006 16:54:59 -0000 Delivered-To: apmail-ant-dev-archive@ant.apache.org Received: (qmail 63902 invoked by uid 500); 4 Aug 2006 16:54:58 -0000 Mailing-List: contact dev-help@ant.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "Ant Developers List" Reply-To: "Ant Developers List" Delivered-To: mailing list dev@ant.apache.org Received: (qmail 63891 invoked by uid 500); 4 Aug 2006 16:54:58 -0000 Received: (qmail 63888 invoked by uid 99); 4 Aug 2006 16:54:58 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 04 Aug 2006 09:54:58 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 04 Aug 2006 09:54:57 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 8F31A1A981A; Fri, 4 Aug 2006 09:54:37 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r428778 - /ant/antlibs/svn/trunk/docs/svn.html Date: Fri, 04 Aug 2006 16:54:37 -0000 To: ant-cvs@apache.org From: stevel@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20060804165437.8F31A1A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: stevel Date: Fri Aug 4 09:54:36 2006 New Revision: 428778 URL: http://svn.apache.org/viewvc?rev=428778&view=rev Log: patch the examples to use the current attribute name. Incidentally, we could call it "command" for better consistency with the cvs task. Modified: ant/antlibs/svn/trunk/docs/svn.html Modified: ant/antlibs/svn/trunk/docs/svn.html URL: http://svn.apache.org/viewvc/ant/antlibs/svn/trunk/docs/svn.html?rev=428778&r1=428777&r2=428778&view=diff ============================================================================== --- ant/antlibs/svn/trunk/docs/svn.html (original) +++ ant/antlibs/svn/trunk/docs/svn.html Fri Aug 4 09:54:36 2006 @@ -117,7 +117,7 @@

updates the working copy that has previously been checked out into "${ws.dir}".

-
  <svn command="-q diff" output="patch.txt"/>
+
  <svn subcommand="-q diff" output="patch.txt"/>

silently (-q) creates a file called patch.txt which contains a unified diff which can be used as input to patch. The equivalent, using <commandline> elements, is: @@ -144,7 +144,7 @@ from the <svn> element.

-
  <svn command="update"/>
+
  <svn subcommand="update"/>

Updates from the head of repository creating any new directories as necessary.

See Version Control with Subversion for details, specifically the The Subversion Command Line Client: svn

--------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org For additional commands, e-mail: dev-help@ant.apache.org