Re: list a content of a directory

2003-05-05 Thread Jesse Stockall
On Mon, 2003-05-05 at 16:30, Dibi, George wrote:
 I am trying to display a directory content. Please see attach for trace out.
 Does any body know what I should do? Thanks
  

Your trace attachment was stripped, please include inline.

'dir' is not an executable, but rather a built in shell command. You
must specify the shell as the executable (cmd on WinNT, command on
Win9x). You might also be able to use 'vmlauncher=false' with your
current setup, but as I have no Windows machines about, I cannot verify
this.


-- 
Jesse Stockall [EMAIL PROTECTED]



Re: cvs commit: ant/proposal/xdocs/src/org/apache/tools/ant/xdoclet AntXDocletTask.java DatatypeSubTask.java DatatypeTagsHandler.java IndexGen.java

2003-04-29 Thread Jesse Stockall
On Tue, 2003-04-29 at 15:42, [EMAIL PROTECTED] wrote:
   migrated Ant XDoclet code here, to maintain it easier
   

Cool, everything seems to be working after the move.

Aslak just committed a fix for XJavaDoc so EnumeratedAttributes are
being resolved correctly. XJavaDoc still has problems resolving types
used in inner classes, but so far they haven't been a problem.

I'm also working out the semantics of 'notes' and links in the manual
(see the Javac task), but I think I have a workable solution.

There are a few minor details that should be discussed before I go to
much further. I'll get them together in an email soon.

-- 
Jesse Stockall [EMAIL PROTECTED]



Re: cvs commit: ant/proposal/xdocs/src/org/apache/tools/ant/xdoclet AntXDocletTask.java DatatypeSubTask.java DatatypeTagsHandler.java IndexGen.java

2003-04-29 Thread Jesse Stockall
On Tue, 2003-04-29 at 16:56, Erik Hatcher wrote:
 
 Hmmm... didn't realize EnumeratedAttributes were an issue.  The 
 IntrospectionHelper stuff was dealing with it fine - what was going 
 wrong?
 

The IntrospectionHelper stuff was working as designed when it had all
the required info, but XJavaDoc was unable to resolve inner classes that
lived in the super class hierarchy. Tasks like the vss family and
jar use EnumeratedAttributes that live in their parent class. 

 I just saw some commits from Aslak that was changing XJavaDoc from 
 being a singleton - that might break our stuff until we refactor it - 
 at least it is likely to break Gump, and then we should upgrade.
 

I'll get rid the the deprecated XCollections and see if other changes
are required.

-- 
Jesse Stockall [EMAIL PROTECTED]



Re: cvs commit: ant/proposal/xdocs/dvsl task.dvsl

2003-04-25 Thread Jesse Stockall
On Fri, 2003-04-25 at 10:29, Erik Hatcher wrote:
 Got patches to the antdoclet stuff you'd like me to commit on the  
 XDoclet codebase?

Yes.

I've checked in a binary in the proposal tree, but Gump wont use it, so
I need to get them into XDoclet's CVS tree.

How much work wuld be involved in moving the antdoclet module to Ant's
CVS tree?

 Nice work (having not run it yet myself, just browsing the commit  
 messages)!
 

Have a look here for a sample
http://www.magma.ca/~stockall/property.html


-- 
Jesse Stockall [EMAIL PROTECTED]



Re: junit.jar in Ant 1.5.3 distro?!?!?

2003-04-16 Thread Jesse Stockall
On Wed, 2003-04-16 at 11:35, Conor MacNeill wrote:
 On Wed, 16 Apr 2003 05:56 pm, Stefan Bodewig wrote:
  One thing that you'll need to consider is that people may download the
  old distribution from a mirror and try to check it with the signature
  for the new distribution from www.apache.org.
 
  You will probably have to chose different names for the archives.
 
 
 Good point. I have uploaded (34M on my poor old dialup) an updated build 
 named 
 apache-ant-1.5.3-1
 
 if people can check it ok and make sure it is OK, I'd appreciate it.
 

The zips and tar.gzs off the website look good, no junit and valid
signatures.

-- 
Jesse Stockall [EMAIL PROTECTED]



Re: cvs commit: ant/src/testcases/org/apache/tools/ant/filters HeadTailTest.java

2003-04-15 Thread Jesse Stockall
On Monday, April 14, 2003, at 11:37  AM, [EMAIL PROTECTED] wrote:
umagesh 2003/04/14 08:37:48
  Modified:.WHATSNEW
   docs/manual/CoreTypes filterchain.html
   src/main/org/apache/tools/ant/filters HeadFilter.java
TailFilter.java
  Added:   src/etc/testcases/filters head-tail.xml
   src/etc/testcases/filters/expected head-tail.head.test
head-tail.headAllSkip.test 
head-tail.headLines.test
head-tail.headLinesSkip.test
head-tail.headSkip.test head-tail.headtail.test
head-tail.tail.test head-tail.tailAllSkip.test
head-tail.tailLines.test
head-tail.tailLinesSkip.test
head-tail.tailSkip.test
   src/etc/testcases/filters/input head-tail.small.test
head-tail.test
   src/testcases/org/apache/tools/ant/filters 
HeadTailTest.java
  Log:
  New skip attribute for HeadFilter and TailFilter

The 'tail' skip tests fail for me on Mac OS X and Linux (both with 
1.4.1).

Both 'testTailSkip' and 'testTailLinesSkip' cut off 1 too many letters. 
The last line of the result file is 'Line 5' instead of 'Line 58'

Jesse Stockall - [EMAIL PROTECTED]
CRYPTOCard Corp.


FileUtils.createTempFile() - should we delete on exit?

2003-04-15 Thread Jesse Stockall
Bug 17512 http://issues.apache.org/bugzilla/show_bug.cgi?id=17512 
proposes a fix for an annoyance that 'plagues' a number of Ant tasks.

Tasks like junit and javac can create temporary files that get left 
behind if the build is terminated via 'ctrl-c'

Should the fix be applied to each task that creates temp files, or 
should it be put in FileUtils.createTempFile().

Since 1.6 will require JDK 1.2+ we can avoid the ugly reflection in the 
patch (attached to the bug report).

Thoughts?
Jesse Stockall - [EMAIL PROTECTED]
CRYPTOCard Corp.


Re: cvs commit: ant/src/etc/testcases/taskdefs/optional/vss vss.xml

2003-04-15 Thread Jesse Stockall
On Tuesday, April 15, 2003, at 02:09  AM, Stefan Bodewig wrote:
On 15 Apr 2003, [EMAIL PROTECTED] wrote:
jesse   2003/04/14 21:26:52
  Modified: src/main/org/apache/tools/ant/taskdefs/optional/vss
  MSVSS.java
This makes the VSS tasks JDK 1.4 dependent.
Oops, It's fixed now.
Jesse Stockall - [EMAIL PROTECTED]
CRYPTOCard Corp.


Re: cvs commit: ant/xdocs/stylesheets site.vsl

2003-04-09 Thread Jesse Stockall
On Tuesday, April 8, 2003, at 09:44  PM, [EMAIL PROTECTED] wrote:
  + a href=http://ant.apache.org/beta/;download/a.
Is this the intended download link?
Jesse Stockall - [EMAIL PROTECTED]
CRYPTOCard Corp.


Re: VOTE: new committer: Jesse Stockall

2003-04-07 Thread Jesse Stockall
On Sunday, April 6, 2003, at 01:13  AM, Steve Loughran wrote:
I nominate Jesse Stockall as a committer
Cool, so what happens now?
Jesse Stockall - [EMAIL PROTECTED]
CRYPTOCard Corp.


Re: How to create the diff-file

2003-03-27 Thread Jesse Stockall
On Thursday, March 27, 2003, at 09:42  AM, Jesse Stockall wrote:
Then you run 'diff old-file.java new-file.java  changes.patch'
Oops, make that:
diff -u old-file.java new-file.java  changes.patch
Jesse Stockall - [EMAIL PROTECTED]
CRYPTOCard Corp.