Return-Path: Delivered-To: apmail-ant-dev-archive@www.apache.org Received: (qmail 83257 invoked from network); 30 Sep 2003 00:10:17 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 30 Sep 2003 00:10:17 -0000 Received: (qmail 11356 invoked by uid 500); 30 Sep 2003 00:09:58 -0000 Delivered-To: apmail-ant-dev-archive@ant.apache.org Received: (qmail 11316 invoked by uid 500); 30 Sep 2003 00:09:58 -0000 Mailing-List: contact dev-help@ant.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Ant Developers List" Reply-To: "Ant Developers List" Delivered-To: mailing list dev@ant.apache.org Received: (qmail 11302 invoked by uid 500); 30 Sep 2003 00:09:58 -0000 Received: (qmail 11298 invoked from network); 30 Sep 2003 00:09:57 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 30 Sep 2003 00:09:57 -0000 Received: (qmail 83217 invoked by uid 1365); 30 Sep 2003 00:10:13 -0000 Date: 30 Sep 2003 00:10:13 -0000 Message-ID: <20030930001013.83216.qmail@minotaur.apache.org> From: stevel@apache.org To: ant-cvs@apache.org Subject: cvs commit: ant/docs/manual conceptstypeslist.html X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N stevel 2003/09/29 17:10:12 Modified: docs/manual/CoreTypes Tag: ANT_16_BRANCH assertions.html docs/manual Tag: ANT_16_BRANCH conceptstypeslist.html Log: assert docs go in Revision Changes Path No revision No revision 1.2.2.2 +14 -6 ant/docs/manual/CoreTypes/assertions.html Index: assertions.html =================================================================== RCS file: /home/cvs/ant/docs/manual/CoreTypes/assertions.html,v retrieving revision 1.2.2.1 retrieving revision 1.2.2.2 diff -u -r1.2.2.1 -r1.2.2.2 --- assertions.html 27 Sep 2003 03:19:49 -0000 1.2.2.1 +++ assertions.html 30 Sep 2003 00:10:12 -0000 1.2.2.2 @@ -147,11 +147,15 @@ Example: set system assertions and all org.apache packages except for ant, and the class org.apache.tools.ant.Main.
  -<assertions enableSystemAssertions="true" >
  -  <enable package="org.apache" />
  -  <disable package="org.apache.ant" />
  -  <enable class="org.apache.tools.ant.Main"/>
  -</assertions>
  +    <java fork="true" failonerror="true"
  +      classname="${classname}"
  +      classpathref="assert.classpath">
  +      <assertions enableSystemAssertions="true" >
  +        <enable package="org.apache" />
  +        <disable package="org.apache.ant" />
  +        <enable class="org.apache.tools.ant.Main"/>
  +      </assertions>
  +    </java>
   
Example: disabled and anonymous package assertions
@@ -173,7 +177,11 @@ <enable package="org.apache.test" /> </assertions> -<assertions refid="project.assertions" /> +<java fork="true" failonerror="true" + classname="${classname}" + classpathref="assert.classpath"> + <assertions refid="project.assertions"/> +</java>
No revision No revision 1.13.2.1 +1 -0 ant/docs/manual/conceptstypeslist.html Index: conceptstypeslist.html =================================================================== RCS file: /home/cvs/ant/docs/manual/conceptstypeslist.html,v retrieving revision 1.13 retrieving revision 1.13.2.1 diff -u -r1.13 -r1.13.2.1 --- conceptstypeslist.html 1 Sep 2003 14:22:04 -0000 1.13 +++ conceptstypeslist.html 30 Sep 2003 00:10:12 -0000 1.13.2.1 @@ -15,6 +15,7 @@ Common Attributes

Core Types

+Assertions Type
Description Type
Directory-based Tasks
DirSet
--------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org For additional commands, e-mail: dev-help@ant.apache.org