RE: Problem with condition selection property; Help needed

2007-04-10 Thread bill
-Original Message- From: Shailesh Sharma [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 10, 2007 8:13 AM To: Ant Users List Subject: Re: Problem with condition selection property; Help needed actually, the deployer is sometimes suggested to just deploy 1 or 2 or 3 or etc. So, it circum

RE: Problem with condition selection property; Help needed

2007-04-10 Thread bill
proceed. HTH Bill -Original Message- From: Shailesh Sharma [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 10, 2007 8:13 AM To: Ant Users List Subject: Re: Problem with condition selection property; Help needed actually, the deployer is sometimes suggested to just deploy 1 or 2 or 3 or etc. So

RE: ant script autodocumentation

2005-09-08 Thread Bill Rich
I have an xsl file that will format the build file for you and display it in a browser. It works on both IE and Firefox. I have had some problems with it on Opera. I don't have it with me at the moment but if you want it please send me an email offline and I will send it to you. HTH Bill

RE: ant log

2005-09-15 Thread Bill Rich
It could also stand for Problem Report ... -Original Message- From: Ramnish Kalsi [mailto:[EMAIL PROTECTED] Sent: Thursday, September 15, 2005 1:54 AM To: Ant Users List Subject: RE: ant log Previously Reported ? just a guess ... :) -Original Message- From: Giuliano Dessì [ma

RE: FW: problem with using fork in windows xp

2005-09-21 Thread Bill Rich
Gayan, you can redirect the console output to a file using something like this: ant ... -v >log.txt In the log.txt file will be the console output from running the command. Open it with a text editor and you will see the whole command as requested. HTH Bill -Original Message- F

RE: Problem with Environment Variables on Win2000

2005-09-28 Thread Bill Rich
If you set the environment var using MyComputer, did you restart the command window before using it? This is a common issue with windows in that the env vars do not affect the open command windows. HTH Bill -Original Message- From: Jason [mailto:[EMAIL PROTECTED] Sent: Wednesday

RE: Size of zip file

2005-10-18 Thread Bill Rich
eveal what you need. Bill -Original Message- From: Matt Benson [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 18, 2005 8:20 AM To: Ant Users List Subject: Re: Size of zip file Ant >= 1.6.3 includes the task which can get file sizes for you. You could probably (a) write somethi

RE: Size of zip file

2005-10-19 Thread Bill Rich
uld fit on removeable media. I think there was also an index file written that listed the files that had been made so the merge file could put them back together. I am pretty sure it was intended for use with archive/backup files only, but, I could be wrong. Bill -Original Message- From: Gisbert A

RE: Specifiying user properties file

2005-11-05 Thread Bill Rich
. HTH Bill -Original Message- From: Mark McKay [mailto:[EMAIL PROTECTED] Sent: Saturday, November 05, 2005 4:43 PM To: user@ant.apache.org Subject: Specifiying user properties file I'm trying to set up a situation where my users can specify a properties file where they can set prope

RE: Question on how to to debug mapper issues

2005-11-21 Thread Bill Rich
Have you tried the verbose (-v) or debug (-d) command line options? Be warned, they put a lot of stuff on the console. When I use them I redirect the console to a file then browse it with an editor. HTH Bill -Original Message- From: Brown, Carlton [mailto:[EMAIL PROTECTED] Sent

RE: ant not recognizing command line argument

2005-12-01 Thread Bill Rich
ke an Ant problem to me. Bill -Original Message- From: Safak Ökmen [mailto:[EMAIL PROTECTED] Sent: Thursday, December 01, 2005 8:24 AM To: Ant Users List Subject: Re: ant not recognizing command line argument Here is another sample: __ D:\programme\ant\bin>ant -debug clean

Using the bootclasspath

2005-12-27 Thread Bill Winspur
h has been set. I have been unable to discover what this message means. Can somebody direct me to ant's classloading reference material, or explain how I can use the boot classpath? Thanks, Bill - To unsubscribe, e-ma

RE: Debug javac task

2005-12-29 Thread Bill Rich
Only a guess, but it looks like the class files for each of the compile targets go in the same directory. Javac will use that directory to resolve class files it needs as well as the classpath. HTH Bill -Original Message- From: Barak Yaish [mailto:[EMAIL PROTECTED] Sent: Thursday

RE: for-each Task

2005-12-29 Thread Bill Rich
e the extension tasks to do what I want. It is a conscious decision to deviate from the Ant core. Bill -Original Message- From: KrustyDerClown [mailto:[EMAIL PROTECTED] Sent: Thursday, December 29, 2005 9:18 AM To: user@ant.apache.org Subject: for-each Task Hello, why is the for-each

Re: Using the bootclasspath

2006-01-02 Thread Bill Winspur
Thanks for the pointer stephan, I'll continue to experiment and post my results back here. Stefan Bodewig wrote: On Tue, 27 Dec 2005, Bill Winspur <[EMAIL PROTECTED]> wrote: bootclasspath ignored since build.sysclasspath has been set. You can find inform

Re: Using the bootclasspath

2006-01-02 Thread Bill Winspur
Thanks for the input Roger. As you indicated, I ran outside ant and solved the problem I had, but I still need to be able to run my debug classes under ant. I'll experiment with ANT_OPTS and will post back here. Rainer Noack wrote: Hi Bill, Typically one will set the bootclasspath vi

RE: Reading properties

2006-01-09 Thread bill/wilandra
Try changing the \ to / in the file. HTH Bill -Original Message- From: shreedhar natarajan [mailto:[EMAIL PROTECTED] Sent: Monday, January 09, 2006 4:46 PM To: Ant Users List Subject: Reading properties hi all, One of my property file has key/values such as path=something\usb When

RE: "java.io.IOException: Negative seek offset" while expanding .tar file

2006-01-22 Thread bill/wilandra
I don't see TARdistributionDir being set to a value anywhere in the code you provided. Is it set properly prior to the unTar target being run? HTH Bill -Original Message- From: Bob Scaggs [mailto:[EMAIL PROTECTED] Sent: Sunday, January 22, 2006 10:33 AM To: user@ant.apache.org Su

Overriding definition of reference to ?

2006-01-31 Thread Bill Winspur
w weeks ago. I suppose I've changed something, but right now I'm stumped. What does the error message mean? Bill. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Filtering on property values

2006-02-03 Thread bill/wilandra
Try from AntContrib. It will allow you to create a new property value using a regular expression. HTH Bill -Original Message- From: Matthew Hughes [mailto:[EMAIL PROTECTED] Sent: Friday, February 03, 2006 9:33 AM To: user@ant.apache.org Subject: Filtering on property values I have a

RE: problem with exec task

2006-02-05 Thread bill/wilandra
To run a .bat file on Windows you need to start the command shell and have it run the .bat. I would assume that the executable would be something like cmd. IIRC there is a thread on this list that talks about the exact same issue. HTH Bill -Original Message- From: Rhino [mailto:[EMAIL

RE: Custom tasks

2006-02-07 Thread bill/wilandra
There is also an OpenSource project on SourceForge.net called AntForm. It will display a menu or form that can be used for input. I found it fairly easy to use although it has some idiosyncrasies about how it places objects in the dialog window. Bill -Original Message- From: Anderson

RE: Directory and Fileset question

2006-02-08 Thread bill/wilandra
Have you looked at with the "if" attribute for include? I don't know if you have enough info to set it up ahead of time but it may help. Bill -Original Message- From: Mark Russell [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 08, 2006 9:05 AM To: ant develipe

RE: About running a ANT script on UNIX.

2006-02-12 Thread bill/wilandra
specific with your questions. Many of us are consultants who get paid to do this kind of work and are not going to write your Ant file for you for free. It is very very imp for me to get paid for my work. Bill -Original Message- From: Shweta Bodade [mailto:[EMAIL PROTECTED] Sent: Sunday

RE: problem with compiler settings

2006-02-14 Thread bill/wilandra
with -verbose. HTH Bill -Original Message- From: Casey Daniell [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 14, 2006 1:52 PM To: 'Ant Users List' Subject: RE: problem with compiler settings Try setting just the javac process... OR -Original Message- From: [

RE: test for directory existence

2006-02-16 Thread bill/wilandra
there and the create was skipped but I would not want that much info in the standard message. Bill -Original Message- From: Martin Gainty [mailto:[EMAIL PROTECTED] Sent: Thursday, February 16, 2006 6:23 AM To: Ant Users List Subject: Re: test for directory existence If I understand co

RE: Question regarding the Jar task

2006-02-22 Thread bill/wilandra
output useful in understanding the tasks better. It is the most accurate documentation about a task in any given situation. After seeing the first output tweak the zip task slightly and run it again to see the dirrerences. Then keep tweaking until you get what you want. HTH Bill -Original Message

RE: Delete a dir set

2006-03-02 Thread bill/wilandra
hat and see if it works better for you. HTH Bill -Original Message- From: Giovanni Mesturini [mailto:[EMAIL PROTECTED] Sent: Thursday, March 02, 2006 8:10 AM To: user@ant.apache.org Subject: Delete a dir set Hi Community, I have to remove all CVS references from a tree. I've

RE: propertyregex

2006-03-02 Thread bill/wilandra
lowed by one or more whitespace elements. Place everything up to the next whitespace element (if there is at least one element that is not a whitespace element in register 1 then select the rest of the string. HTH Bill -Original Message- From: Mark Lybarger [mailto:[EMAIL PROTECTED] Sent: Thursd

RE: Generating PDF documentation .

2006-03-03 Thread bill/wilandra
d to Forrest. I am sure it is something that can be solved with just a SMOP. Documentation for Forrest is located at http://forrest.apache.org/docs_0_70. Bill -Original Message- From: Daniel Lindner [mailto:[EMAIL PROTECTED] Sent: Friday, March 03, 2006 7:25 AM To: Ant Users L

RE: ANT FTP TASK

2006-03-05 Thread bill/wilandra
you can find the Fileset class and go from there? HTH Bill -Original Message- From: Karthik [mailto:[EMAIL PROTECTED] Sent: Sunday, March 05, 2006 10:20 PM To: user@ant.apache.org Subject: ANT FTP TASK Hi form I found this piece of code on the web and am struck with the API 1)Would

RE: help with exclude patterns

2006-03-20 Thread bill/wilandra
Both the fileset and dirtasks sections of the manual have some discussion about patterns. If you use name="**/*" it would mean that you want all files in all directories in the current directory and below it. HTH Bill -Original Message- From: murthy gandikota [mailto:[EMAIL

RE: help with exclude patterns

2006-03-20 Thread bill/wilandra
dirtasks: http://ant.apache.org/manual/dirtasks.html fileset: http://ant.apache.org/manual/CoreTypes/fileset.html What is it you want to accomplish? Bill -Original Message- From: murthy gandikota [mailto:[EMAIL PROTECTED] Sent: Monday, March 20, 2006 1:19 PM To: Ant Users List

RE: WELCOME to user@ant.apache.org

2006-03-27 Thread bill/wilandra
happening before posting your problem. If you still don't see it, then read the appropriate parts of the docs, then if you still don't see it post exactly what your problem is and the appropriate parts of the build file that cause the problem. Bill -Original Message- From: ilango [mai

RE: Property problem in 1.6.5

2006-04-06 Thread bill/wilandra
ed then the jar target. In your example that is what you accomplished by running "ant update jar". HTH Bill -Original Message- From: Greg Irvine [mailto:[EMAIL PROTECTED] Sent: Thursday, April 06, 2006 4:17 PM To: 'Ant Users List' Subject: RE: Property problem in 1.6.

RE: Exception in Style

2006-04-25 Thread bill/wilandra
Ron, Have you looked at the Forrest project to see how they use ant. http://forrest.apache.org/ They generate a web site from XML input files and use ant to control the process. I have not drilled down into their use of ant but it may give you some ideas. Bill -Original Message- From

RE: Commenting/generate documentation from an ant script

2006-05-19 Thread bill/wilandra
, Opera, and IE. Once in a while I get some glitch in IE but since I don't use IE any more I don't worry about it. HTH Bill -Original Message- From: Scot P. Floess [mailto:[EMAIL PROTECTED] Sent: Friday, May 19, 2006 8:39 AM To: Ant Users List Subject: Commenting/generate doc

RE: Dynamic references to properties files

2006-05-22 Thread bill/wilandra
Isn't env a well known property for retrieving op sys environment vars (e.g., ${env.MYDIR})? If so, can it ever not be set? If it is always set then the will never fail regardless of whether the user sets the env property or not on the command line. Bill -Original Message-

RE: Dynamic references to properties files

2006-05-22 Thread bill/wilandra
Ah yes, I forgot about that. Bill -Original Message- From: Asaf Mesika [mailto:[EMAIL PROTECTED] Sent: Monday, May 22, 2006 12:07 PM To: 'Ant Users List' Subject: RE: Dynamic references to properties files Env is commonly used, but it is not defined unless you define it

RE: Migration problem, Windows to Linux (how to unsubscribe)

2006-07-06 Thread bill/wilandra
Read through all the attachments to this email and you will find the answer stated many times. Bill -Original Message- From: Jian Xu [mailto:[EMAIL PROTECTED] Sent: Thursday, July 06, 2006 5:19 PM To: user@ant.apache.org Subject: Re: Migration problem, Windows to Linux (how to

RE: Escape character of @ in Ant

2006-07-10 Thread bill/wilandra
What I found at http://www.w3schools.com/tags/ref_ascii.asp is that the at sign can be represented at @. I could not find another representation of it. HTH Bill -Original Message- From: Res Pons [mailto:[EMAIL PROTECTED] Sent: Monday, July 10, 2006 8:39 PM To: user@ant.apache.org

RE: Loops

2006-07-17 Thread bill/wilandra
still need looping Ant Contrib is a set of extensions to Ant. In Ant Contrib you will find some looping extensions that can be used to do what you want. Ant Contrib is found at http://ant-contrib.sourceforge.net. HTH Bill -Original Message- From: danielpaval [mailto:[EMAIL PROTECTED

RE: Task help

2006-10-18 Thread bill/wilandra
Try this taskdef instead and see if it helps: HTH Bill -Original Message- From: Muthyala, Sunil [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 18, 2006 11:23 AM To: 'Ant Users List' Subject: RE: Task help Thanks to Jan and Steve Loughran. I tried Jan's suggestion,

RE: Using Ant commands in a batch file; having problem; ant exits

2006-10-23 Thread bill/wilandra
Assuming you are on a Windows machine, then ant is a .bat file and you must call ant from another .bat file. HTH Bill -Original Message- From: Res Pons [mailto:[EMAIL PROTECTED] Sent: Monday, October 23, 2006 3:46 PM To: user@ant.apache.org Subject: Using Ant commands in a batch file

RE: propertyregex regexp construct question

2006-11-10 Thread bill/wilandra
The following reg ex should work for you: [^-]*-[^-]*-(.*) You will need to adjust it so it works in by adding appropriate escapes. I use the RegexCoach tool to check reg exs. It is available from http://weitz.de/regex-coach. HTH Bill -Original Message- From: Rémon van Gijn [mailto

RE: AW: Ant exec find -exec problem

2006-11-16 Thread bill/wilandra
There is an example from Rob Anderson included in the email thread for this topic. It uses to do the math and in to do the selection. Bill -Original Message- From: Elaine Fortin [mailto:[EMAIL PROTECTED] Sent: Thursday, November 16, 2006 8:08 AM To: Ant Users List Subject: Re: AW

RE: HTTP post of binary data?

2003-06-06 Thread Bill Chmura
I don't know if it will help, but if you can do an exec Wget has a --post-data=STRINGuse the POST method; send STRING as the data. --post-file=FILE use the POST method; send contents of FILE. Not sure about the binary part though -Original Message- From: [EMAIL PR

Problem with FixCRLF

2003-06-04 Thread Bill Chmura
. The makeunixlf is in a shared library we have for ant, so I cannot modify it to just exclude certain files unless I pass it in as a variable to use as a default exclude... TIA Bill William B Chmura Director of Internet Technology Explosivo Internet Technology Group http://www.Explosivo.com

RE: Major frustration.

2003-06-12 Thread Bill Chmura
On a non-technical note: Have you tried walking away from it for a little bit? Seriously I cannot count the number of times a solution came to me after smashing the mouse down on the desk and walking away for awhile. -Original Message- From: Gerald D. Anderson [mailto:[EMAIL PROTECTE

RE: Python implementation for Ant

2007-02-09 Thread bill/wilandra
needed looping. Working with Ant I simply added AntContrib and used its looping capabilities. Thanks. Bill Bill Rich Wilandra Consulting LLC [EMAIL PROTECTED] http://www.wilandra.com -Original Message- From: Rick Genter [mailto:[EMAIL PROTECTED] Sent: Friday, February 09, 2007 7:18 AM

RE: fileset and filename under copy task

2007-02-20 Thread bill/wilandra
>From the examples in the 1.6.5 manual I would assume that the following should work. I did not try it. HTH Bill -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 20, 2007 11:55 AM

RE: Information on Ant Dependant libraries and compatibility

2007-03-06 Thread bill/wilandra
set a classpath, the helper scripts do it for you. HTH Bill (1) http://ant.apache.org/manual/install.html#librarydependencies -Original Message- From: magisetty obula prasad [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 06, 2007 2:21 PM To: user@ant.apache.org Subject: Information on

RE: Escaping double quotes in properties?

2007-03-11 Thread bill/wilandra
Try using " -- HTH Bill -Original Message- From: Brown, Carlton [mailto:[EMAIL PROTECTED] Sent: Sunday, March 11, 2007 3:49 PM To: Ant Users List Subject: Escaping double quotes in properties? I'm trying to store double quotes in a property, to print out a phrase like: It

RE: Conditional dependencies

2007-03-19 Thread bill/wilandra
You could make all the targets independent and specify a blank delimited list of targets on the command line. Bill -Original Message- From: Murray, Mike [mailto:[EMAIL PROTECTED] Sent: Monday, March 19, 2007 2:34 PM To: Ant Users List Subject: RE: Conditional dependencies I sympathize

Re: Check if directory is empty or not

2007-04-20 Thread Bill Rich
A little while ago Jan Materne suggested the following for another question about files in a directory. Can you use something similar, maybe with a * or **/*, and check if the length of the file list is 0? HTH Bill Anderson, Rob (Global Trade) wrote: I have a build.xml

Re: -projecthelp option odd error

2007-05-09 Thread Bill Rich
adability issues for anyone familiar with XML. At any rate, I haven't a clue as to exactly what your problem is but IMHO I would remove the "-->" from the descriptions to see what happens. HTH Bill Jesuschrist Superstar wrote: Hello I'm working in my very first ant

Re: buiild.xml & ant

2007-06-16 Thread Bill Rich
Bill ||| Erica A Ramsey wrote: hello, it's me again with another problem. I am using tasks provided by oem. One of these tasks is the task. Inside this task I specify resource files as follows; Problem is that I have a macrodef that generates resources. I don't know the na

Re: Help with iteration in for loop

2007-07-03 Thread Bill Rich
task of ant-contrib. There you will see examples of using a var to do the math. In your case use a var in the loop then assign the value to count as the last thing you do in the task. HTH Bill broken connection wrote: Hi Friends, Is there any way to control iteration in ant. I want to put an if

Re: help with some conditional logic..

2007-07-23 Thread Bill Rich
Create a target named init which will define/set props.someprop to any value. HTH Bill warhero wrote: ##how use some logic based on a property from the props file that will either execute the "exec" or ju

Re: How to use ant in web application without system path setup under linux

2007-08-12 Thread Bill Rich
You might try setting the ANT_HOME env variable and adding the /bin dir of ANT_HOME to your PATH var. I have both of those set on my machine from the installation of ANT. HTH Bill 贾昊林/Albert Jia wrote: Hi,David Thanks for your reply. But sometimes, I have to code between different

Re: Iterating a class list

2007-09-22 Thread Bill Rich
Hi James. Take a look at the Ant task or the antContrib task either of which could be useful to you for this particular case. HTH Bill James Griggs wrote: I am looking for way to iterate through a property that contains a semicolon delimited list of libraries (jars). The property could

Re: AW: Tool for documenting Ant scripts

2007-11-26 Thread Bill Rich
developer and contributors regularly answer questions. Bill Douglas Bullard wrote: Thank you for the constructive (and detailed) feedback! I'm recovering from surgery for the next month or so, and will have plenty of time to incorporate your comments. Most of these were things I overl

Re: Divide And Conquer Ant Question

2007-12-13 Thread Bill Rich
local extensions of the process by importing a file that can contain extension targets or override targets for the process. If this file does not exist ant just ignores it and goes on - no complaints. If the file exists the targets in it are available for use. HTH Bill Z W wrote: Hi I'm usin

well-defined ant/xslt problem: (how) can I do this?

2008-02-07 Thread Bill Milbratz
#x27;, but this gets pretty complex and hard to follow. any suggestions? thanks, bill

Re: well-defined ant/xslt problem: (how) can I do this?

2008-02-07 Thread Bill Milbratz
A follow-up: I tried the using the ant-contrib for each, and manually specifying the versions in a list, but came across a limitation: pe\build-developer.xml:1217: foreach doesn't support the nested "antcall" element. (I've implemented the internals for the for-each using antcall); can anyone c

Re: well-defined ant/xslt problem: (how) can I do this?

2008-02-08 Thread Bill Milbratz
Thanks for the feedback everyone. I used the 'for' with 'sequential' to get get iteration working. Yet Klaus' answer provides what I was looking for. The ant documentation of the xslt task suggests 'destdir' is a specific directory. I didn't realize the destdir would automatlically map the input

checksum task: how can you use hash in a separate directory

2008-02-12 Thread Bill Milbratz
hash. I've looked at the checksum documentation and the source code, but don't see a way I can see which specific files have changed. Yet, I may be missing something. thanks, bill

Re: checksum task: how can you use hash in a separate directory

2008-02-12 Thread Bill Milbratz
hi, a clarification: my subject line doesn't match the question. I originally had wondered about using 'todir' as a destination for the checksum files, but realized I had a more basic question. The body mutated; the subject did not. bill

Re: checksum task: how can you use hash in a separate directory

2008-02-13 Thread Bill Milbratz
, i.e. and backup src/jsp/foo.jsp before overwriting it This may simply be an exercise in string manipulation with Ant or "advanced use of filesets", thanks, bill

Re: conditional statements

2008-02-14 Thread Bill Rich
First I must say that Ant is not a process language it is a rules language so tasks like and do not belong in Ant. Now, is this more like what you want... X is True! X is False! Yadda... Yadda... Yadda... Fully testing this snippet is left as an exerc

howto?: copy file with filename match on regexp

2009-01-23 Thread Bill Milbratz
;does not begin with numeral': .*/\D\w*.css 'does begin with numeral': .*/\d++\w*.css bill

problem with using with the javah task

2009-10-15 Thread Bill Au
org.apache.hadoop.io.compress.zlib.ZlibCompressor What am I doing wrong? Bill

Re: problem with using with the javah task

2009-10-15 Thread Bill Au
I just tried but it seems that is not valid for the javah task: javah doesn't support the nested "jvmarg" element. Bill On Thu, Oct 15, 2009 at 9:53 AM, Francis GALIEGUE wrote: > On Thu, Oct 15, 2009 at 15:37, Bill Au wrote: > > I have a need to limit the max hea

Need help viewing output from failed ant/junit tests

2010-03-05 Thread Bill Moran
r test class Entering test_get_list() Leaving test_get_list() The code is nothing fancy, just: System.out.println("entering setUp() for test class"); Any advice on how to configure the ant task so I can capture that output? Running ant-1.7.1 on FreeBSD 8.0 with JUnit 4.8.1. Thanks in

Re: Need help viewing output from failed ant/junit tests

2010-03-05 Thread Bill Moran
gging framework, what happens with console programs that are supposed to output to stdout? Not being able to see how far along they get makes debugging difficult. -- Bill Moran Collaborative Fusion Inc. http://people.collaborativefusion.com/~wmor

Re: Need help viewing output from failed ant/junit tests

2010-03-05 Thread Bill Moran
there ... thanks for the help so far. -- Bill Moran Collaborative Fusion Inc. http://people.collaborativefusion.com/~wmoran/ - To unsubscribe, e-mail: user-unsubscr...@ant.apache.org For additional commands, e-mail: user-h...@ant.apache.org

RE: Using replace

2004-04-08 Thread Bill Rich
s anything that may do what you want to do. I have been using Ant for about 2 months and _all_ my questions have been answered by reading the manual and trying it out. Thanks. Bill Bill Rich Wilandra Consulting LLC 1325 Addiewell Place San Jose, CA 95120-3905 phone: +1 408 268-2452 mobile:

RE: change to a property

2004-07-31 Thread Bill Rich
three tier approach -- 1. Set from the command line 2. Set from a .properties file loaded by the ant file (before any other target gets control) 3. Set default value in the ant file Bill Rich Wilandra Consulting LLC 1325 Addiewell Place San Jose, CA 95120-3905 phone: +1 408 268-2452 mobile:

RE: AW: parsing ant build scripts from unusual sources

2004-10-15 Thread Bill Rich
directory name. Thanks. Bill Bill Rich Wilandra Consulting LLC 1325 Addiewell Place San Jose, CA 95120-3905 phone: +1 408 268-2452 mobile: +1 408 410-9713 Santa Cruz: +1 831 464-9007 fax:+1 413 669-9716 [EMAIL PROTECTED] http://www.wilandra.com -Original Message- From

RE: AW: parsing ant build scripts from unusual sources

2004-10-16 Thread Bill Rich
as to satisfy a more general requirement. Thanks. Bill Bill Rich Wilandra Consulting LLC 1325 Addiewell Place San Jose, CA 95120-3905 phone: +1 408 268-2452 mobile: +1 408 410-9713 Santa Cruz: +1 831 464-9007 fax:+1 413 669-9716 [EMAIL PROTECTED] http://www.wilandra.com -Ori

RE: winning the case for ANT

2004-10-19 Thread Bill Rich
directory as the Ant build file and add the following line to the Ant build file right after the Thanks. Bill Bill Rich Wilandra Consulting LLC 1325 Addiewell Place San Jose, CA 95120-3905 phone: +1 408 268-2452 mobile: +1 408 410-9713 Santa Cruz: +1 831 464-9007 fax:+1 413

RE: winning the case for ANT

2004-10-19 Thread Bill Rich
argets are independent by definition. Thanks. Bill Bill Rich Wilandra Consulting LLC 1325 Addiewell Place San Jose, CA 95120-3905 phone: +1 408 268-2452 mobile: +1 408 410-9713 Santa Cruz: +1 831 464-9007 fax:+1 413 669-9716 [EMAIL PROTECTED] http://www.wilandra.com -Original M

RE: Propostion for improving PropertyFileInputHandler

2004-10-28 Thread Bill Rich
wants both the user's first name and last name then the prompts should be "Enter your first name" and "Enter your last name". If this is true then the prompt is adequate for the properties file. If the same value is wanted in both properties then I don't understa

RE: immutable property

2004-11-03 Thread Bill Rich
>From the output shown it looks to me like CopyBRBuildArtifacts ran before prepare. Try making CopyBRBuildArtifacts depend on prepare. HTH Bill Rich Wilandra Consulting LLC 1325 Addiewell Place San Jose, CA 95120-3905 phone: +1 408 268-2452 mobile: +1 408 410-9713 Santa Cruz: +1

RE: foreach parameter does not change

2004-11-26 Thread Bill Rich
In 8_sub use @{file} to access the parameter. HTH Bill -Original Message- From: Robert Soesemann [mailto:[EMAIL PROTECTED] Sent: Friday, November 26, 2004 7:46 AM To: Ant Users List Subject: foreach parameter does not change Hello, In my ant pipeline I have the following 2 targets

Strange JSPC/Taskdef issues

2004-11-29 Thread Bill Lynch
list the right place for this? I can repost to the dev list if it's more appropriate. Cheers, --Bill - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Strange JSPC/Taskdef issues

2004-11-30 Thread Bill Lynch
Jake, I tried doing that via but it didn't really work -- IOW, it didn't reinitialize. Should I use antcall instead? What's the difference? Thanks, --Bill On Mon, 29 Nov 2004 23:36:35 -0600, Jacob Kjome <[EMAIL PROTECTED]> wrote: > > Does it work if you use and

Re: Strange JSPC/Taskdef issues

2004-12-02 Thread Bill Lynch
Jake, I did try this however the problem is that all taskdefs are copied over too. :-\ Is there a way around this? Cheers, --Bill On Tue, 30 Nov 2004 23:44:26 -0600, Jacob Kjome <[EMAIL PROTECTED]> wrote: > At 10:09 AM 11/30/2004 -0800, you wrote: > >Jake, > > > >

Re: FW: Multiple Class-Path entries in Manifiest task

2004-12-02 Thread Bill Lynch
Here's some sample code for what Conor suggests: Then use the ${libfiles} prop. We just ran into this too. Cheers, --Bill On Thu, 02 Dec 2004 21:42:44 +1100, Conor MacNeill <[EMAIL PROTECTED]> wrote: > Victor

RE: conditional ?

2004-12-02 Thread Bill Rich
I think "depends" determines when the target will be fired, "if/unless" determines whether the target will be fired or not. Therefore, my understanding is that when the target can be fired the if/unless will be evaluated to see if it should or not. HTH Bill -Original Mes

RE: Split XML file into seperate files with XSLT and ANT

2004-12-04 Thread Bill Rich
Check the Ant manual for the XSLT Core Task. It will apply an XSLT file to a single XML file or a list of files. HTH Bill Rich Wilandra Consulting LLC 1325 Addiewell Place San Jose, CA 95120-3905 phone: +1 408 268-2452 mobile: +1 408 410-9713 Santa Cruz: +1 831 464-9007 fax:+1

RE: classpath directory?

2005-01-05 Thread Bill Rich
The following path seems to work for me to find all the class files, dependent jar, and zip files for a compile step: I use it like this: HTH Bill Rich Wilandra Consulting LLC 1325 Addiewell Place San Jose, CA 95120-3905 phone: +1 408

RE: Simple problem with ANT

2005-01-30 Thread Bill Rich
Hello Alvaro, Since you have two targets named tar1 Ant will execute just the first one. The second one does not make any sense. Try this: HTH Bill -Original Message- From: Alvaro Andrés Montañez [mailto:[EMAIL PROTECTED] Sent: Saturday, January 29, 2005 8:01 AM

RE: Compiler problems

2005-02-04 Thread Bill Rich
This looks like a source code file problem not an Ant problem. Try running native2ascii on your source code file to encode all the Japanese characters. I don't think the source code file can have anything other than ascii characters in it. HTH Bill -Original Message- From: Lyl

RE: Confusion re path-like structures

2005-03-09 Thread Bill Rich
I think it worked the way it should have. I believe what you told it was to include the C:/Program Files/IBM/SQLLIB/java and the db2java.zip, db2jcc.jar, and db2jcc_license_cu.jar files from the "base path". Therefore, when you give it a specific path for the 3 files it finds them.

RE: Conditions

2005-03-22 Thread Bill Rich
To avoid the procedural logic you could have done the following: This is more within the philosophy/architecture of Ant. Bill -Original Message- From: Rich Harris [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 22, 2005 11:10 AM To: Ant Users List Subject: RE: Conditions

RE: Quotations in a property get corrupted when passed as an arg

2005-04-09 Thread Bill Rich
HTH Bill Rich Wilandra Consulting LLC 1325 Addiewell Place San Jose, CA 95120-3905 phone: +1 408 268-2452 mobile: +1 408 410-9713 Santa Cruz: +1 831 464-9007 fax:+1 413 669-9716 [EMAIL PROTECTED] http://www.wilandra.com -Original Message- From: Oski Wee [mailto:[

RE: Javac question

2005-04-22 Thread Bill Rich
reg ex filter that can be useful if you need to extract just part of the dir name on each line. HTH Bill -Original Message- From: S I [mailto:[EMAIL PROTECTED] Sent: Friday, April 22, 2005 3:06 PM To: user@ant.apache.org Subject: ANT: Javac question Hi I'm currently trying to co

RE: extracting project revision number

2005-04-29 Thread Bill Rich
can be used to remove the unwanted parts. HTH Bill -Original Message- From: Andre Charbonneau [mailto:[EMAIL PROTECTED] Sent: Friday, April 29, 2005 8:19 AM To: user@ant.apache.org Subject: extracting project revision number Hi, I would like to extract the Subversion build number of

RE: How to get properties from an executable run with exec

2005-05-13 Thread Bill Rich
en be processed by other tasks to extract what you want from it and set properties. AntContrib has a task. HTH Bill Rich Wilandra Consulting LLC 1325 Addiewell Place San Jose, CA 95120-3905 phone: +1 408 268-2452 mobile: +1 408 410-9713 Santa Cruz: +1 831 464-9007 fax:+1 413 669-9716 [

  1   2   >