Return-Path: Delivered-To: apmail-ant-dev-archive@www.apache.org Received: (qmail 50118 invoked from network); 2 Aug 2004 14:32:49 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 2 Aug 2004 14:32:49 -0000 Received: (qmail 72861 invoked by uid 500); 2 Aug 2004 14:32:47 -0000 Delivered-To: apmail-ant-dev-archive@ant.apache.org Received: (qmail 72725 invoked by uid 500); 2 Aug 2004 14:32:45 -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 72710 invoked by uid 500); 2 Aug 2004 14:32:45 -0000 Received: (qmail 72706 invoked by uid 99); 2 Aug 2004 14:32:45 -0000 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.27.1) with SMTP; Mon, 02 Aug 2004 07:32:45 -0700 Received: (qmail 50039 invoked by uid 1146); 2 Aug 2004 14:32:44 -0000 Date: 2 Aug 2004 14:32:44 -0000 Message-ID: <20040802143244.50038.qmail@minotaur.apache.org> From: bodewig@apache.org To: ant-cvs@apache.org Subject: cvs commit: ant/docs/manual/CoreTypes mapper.html X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N bodewig 2004/08/02 07:32:44 Modified: . CONTRIBUTORS docs/manual/CoreTypes mapper.html Log: Add example regexp that maps from Java class files to the corresponding source files. Submitted by: Paul Galbraith Revision Changes Path 1.29 +1 -0 ant/CONTRIBUTORS Index: CONTRIBUTORS =================================================================== RCS file: /home/cvs/ant/CONTRIBUTORS,v retrieving revision 1.28 retrieving revision 1.29 diff -u -r1.28 -r1.29 --- CONTRIBUTORS 28 Jul 2004 19:55:37 -0000 1.28 +++ CONTRIBUTORS 2 Aug 2004 14:32:43 -0000 1.29 @@ -150,6 +150,7 @@ Patrick G. Heck (Gus Heck) Paul Austin Paul Christmann +Paul Galbraith Paulo Gaspar Peter B. West Peter Donald 1.18 +26 -0 ant/docs/manual/CoreTypes/mapper.html Index: mapper.html =================================================================== RCS file: /home/cvs/ant/docs/manual/CoreTypes/mapper.html,v retrieving revision 1.17 retrieving revision 1.18 diff -u -r1.17 -r1.18 --- mapper.html 22 Apr 2004 20:27:21 -0000 1.17 +++ mapper.html 2 Aug 2004 14:32:44 -0000 1.18 @@ -362,6 +362,32 @@ properties.Classes/dir/dir2/A +
  +<mapper type="regexp" from="^(.*?)(\$$[^/\\\.]*)?\.class$$" to="\1.java"/>
  +<regexpmapper from="^(.*?)(\$$[^/\\\.]*)?\.class$$" to="\1.java"/>
  +
+ + + + + + + + + + + + + + + + + + + + + +
Source file nameTarget file name
ClassLoader.classClassLoader.java
java/lang/ClassLoader.classjava/lang/ClassLoader.java
java\lang\ClassLoader$1.classjava\lang\ClassLoader.java
java/lang/ClassLoader$foo$1.classjava/lang/ClassLoader.java

package

Sharing the same syntax as the glob mapper, --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org For additional commands, e-mail: dev-help@ant.apache.org