DO NOT REPLY [Bug 18705] - Ant does not build: Java: UNIXProcess:forkAndExec: exec failed: Argument list too long

2003-04-04 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 4387] - Problem using vssget to get latest version from MS SourceSafe when some files are checked out

2003-04-04 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bug

DO NOT REPLY [Bug 18722] - vssget task fails

2003-04-04 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

RE: Need Help to use workspace in PVCS Task

2003-04-04 Thread Steven Newton
Workspace needs to be a name as defined by PVCS, not a filesystem location. For example /@/Public/Dev. PVCS will use the workfile location set for the workspace for the files. This should probably go to the ant-users list, though. s -Original Message- From: Pothula, S

XLTC task?

2003-04-04 Thread Kyle Adams
Just checking before I re-invent the wheel - is anyone else aware of an Ant task for compiling XSL stylesheets into translets? Kyle A.

DO NOT REPLY [Bug 18722] New: - vssget task fails

2003-04-04 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

Re: Using files in classpath in task file=""

2003-04-04 Thread Costin Manolache
Stefan Bodewig wrote: >> org.apache.tools.vfs.File extends java.io.File > > But this version cannot be the argument for the (existing) setters. > For this to work, IntrospectionHelper will need to take special care > (i.e. if setXYZ(java.io.File) is found, actually pass it an instance > of org.

DO NOT REPLY [Bug 18402] - add support for a new target attribute "finally"

2003-04-04 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 15729] - StarTeam rootLocalFolder should be java.io.File

2003-04-04 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 15729] - StarTeam rootLocalFolder should be java.io.File

2003-04-04 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

RE: Using files in classpath in task file=""

2003-04-04 Thread Jose Alberto Fernandez
On a related subject, one problem I have found is that there is no portable way right now in ANT to obtain the URL of a file: Currently we would do something like: but the number of "//"s is diferent for UNIX(2) and Windows(3), and you have to do some nasty conditioning. I woul

DO NOT REPLY [Bug 18717] New: - Missed "defaultvalue" attribute in doc

2003-04-04 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 18715] - [PATCH] to specify basedir to

2003-04-04 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 18402] - add support for a new target attribute "finally"

2003-04-04 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 18715] New: - [PATCH] to specify basedir to

2003-04-04 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

Re: Using files in classpath in task file=""

2003-04-04 Thread Nicola Ken Barozzi
Stefan Bodewig wrote, On 04/04/2003 17.55: On Fri, 04 Apr 2003, Nicola Ken Barozzi <[EMAIL PROTECTED]> wrote: ... Because a URI can be navigated, and it's possible to make a File from a URI. Not always. Agreed, not always with the same features. Listing files in a http URL "dir" is not usually pos

Re: Using files in classpath in task file=""

2003-04-04 Thread Stefan Bodewig
On Fri, 04 Apr 2003, Nicola Ken Barozzi <[EMAIL PROTECTED]> wrote: > Sure. Look at the JDK 1.4 version, Ahh, far to modern for Ant. > Because a URI can be navigated, and it's possible to make a File > from a URI. Not always. > org.apache.tools.vfs.File extends java.io.File But this version

Re: Using files in classpath in task file=""

2003-04-04 Thread Nicola Ken Barozzi
Stefan Bodewig wrote, On 04/04/2003 17.21: On Fri, 04 Apr 2003, Nicola Ken Barozzi <[EMAIL PROTECTED]> wrote: What I mean is not to change the passing of a File object. I mean that we can *wrap* an URL in a File. So we pass a File, and use an URL, getting a Virtual File System. How so - put the U

RE: Using files in classpath in task file=""

2003-04-04 Thread Dominique Devienne
OK, me too I wish Ant was using more URLs instead of files... Using my little resource: custom URL protocol, I could then easily reference any resource in $ANT_HOME/lib. Right now though, you can turn around the current limitations but first doing a of the URL you want (and with resource: URLs, yo

Re: Using files in classpath in task file=""

2003-04-04 Thread Stefan Bodewig
On Fri, 04 Apr 2003, Nicola Ken Barozzi <[EMAIL PROTECTED]> wrote: > What I mean is not to change the passing of a File object. I mean > that we can *wrap* an URL in a File. So we pass a File, and use an > URL, getting a Virtual File System. How so - put the URI into the name and abuse File as a

Re: [RESULT] Ant 1.6 will require JDK 1.2

2003-04-04 Thread Stefan Bodewig
On Sat, 5 Apr 2003, Conor MacNeill <[EMAIL PROTECTED]> wrote: > It's funny that Stefan, who only voted +0, is the first to make a > change that requires JDK 1.2 :-) I couldn't find a workaround, that's all (yes, I've seen that smiley). Having said that, I could have left all toStrings as they we

Re: Using files in classpath in task file=""

2003-04-04 Thread Nicola Ken Barozzi
Stefan Bodewig wrote, On 03/04/2003 8.17: On Wed, 02 Apr 2003, Nicola Ken Barozzi <[EMAIL PROTECTED]> wrote: If I had it in jars I could ship it automatically with the jar that has the task that generated index.xml, so I can easily do something like: I see. What I don't see is how we could use

RE: [RESULT] Ant 1.6 will require JDK 1.2

2003-04-04 Thread Dominique Devienne
Probably because Stefan is (with you!) the most active committer on Ant ;-) Thank you both for your fantastic work. --DD -Original Message- From: Conor MacNeill [mailto:[EMAIL PROTECTED] Sent: Friday, April 04, 2003 8:51 AM To: [EMAIL PROTECTED] Subject: [RESULT] Ant 1.6 will require JDK

[RESULT] Ant 1.6 will require JDK 1.2

2003-04-04 Thread Conor MacNeill
This is just to formalize the result of the [VOTE] on the JDK version requirements for Ant. Ant 1.5.3 and any further releases of the Ant 1.5 branch will compile and function with JDK 1.1 Ant 1.6 will be the first Ant release to require at least JDK 1.2 Cheers Conor It's funny that Stefan, wh

cvs commit: ant/src/etc/testcases/core/containersrc/test SpecialSeq.java

2003-04-04 Thread bodewig
bodewig 2003/04/04 06:04:44 Modified:src/etc/testcases/core/containersrc/test SpecialSeq.java Log: Add license Revision ChangesPath 1.2 +53 -0 ant/src/etc/testcases/core/containersrc/test/SpecialSeq.java Index: SpecialSeq.java ===

cvs commit: ant build.xml

2003-04-04 Thread bodewig
bodewig 2003/04/04 06:03:15 Modified:.build.xml Log: Remove stray character Revision ChangesPath 1.360 +1 -1 ant/build.xml Index: build.xml === RCS file: /home/cvs/ant/build.xml,v

cvs commit: ant build.xml

2003-04-04 Thread conor
conor 2003/04/04 05:53:17 Modified:.build.xml Log: New task container test, which fails. This doesn't fail as badly under 1.5.x but nevertheless is not functional Revision ChangesPath 1.359 +1 -0 ant/build.xml Index: build.xml =

cvs commit: ant/src/testcases/org/apache/tools/ant TaskContainerTest.java

2003-04-04 Thread conor
conor 2003/04/04 05:53:18 Modified:src/testcases/org/apache/tools/ant TaskContainerTest.java Log: New task container test, which fails. This doesn't fail as badly under 1.5.x but nevertheless is not functional Revision ChangesPath 1.3 +13 -0 ant/src/testcas

cvs commit: ant/src/etc/testcases/core taskcontainer.xml

2003-04-04 Thread conor
conor 2003/04/04 05:53:17 Modified:src/etc/testcases/core taskcontainer.xml Log: New task container test, which fails. This doesn't fail as badly under 1.5.x but nevertheless is not functional Revision ChangesPath 1.3 +23 -0 ant/src/etc/testcases/core/taskco

cvs commit: ant/src/etc/testcases/core/containersrc/test SpecialSeq.java

2003-04-04 Thread conor
conor 2003/04/04 05:53:18 Added: src/etc/testcases/core/containersrc/test SpecialSeq.java Log: New task container test, which fails. This doesn't fail as badly under 1.5.x but nevertheless is not functional Revision ChangesPath 1.1 ant/src/etc/test

cvs commit: ant/src/main/org/apache/tools/ant/util DOMElementWriter.java RegexpPatternMapper.java ResourceUtils.java

2003-04-04 Thread bodewig
bodewig 2003/04/04 05:51:12 Modified:src/main/org/apache/tools/ant RuntimeConfigurable.java src/main/org/apache/tools/ant/listener MailLogger.java src/main/org/apache/tools/ant/taskdefs AntStructure.java Concat.java FixCRLF.java Javad

cvs commit: ant/src/etc/testcases/core/containersrc/test - New directory

2003-04-04 Thread conor
conor 2003/04/04 05:50:54 ant/src/etc/testcases/core/containersrc/test - New directory

DO NOT REPLY [Bug 18708] New: - outputproperty attribute of

2003-04-04 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

cvs commit: ant/src/etc/testcases/core/containersrc - New directory

2003-04-04 Thread conor
conor 2003/04/04 05:50:22 ant/src/etc/testcases/core/containersrc - New directory

DO NOT REPLY [Bug 18705] New: - Ant does not build: Java: UNIXProcess:forkAndExec: exec failed: Argument list too long

2003-04-04 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

cvs commit: ant/src/main/org/apache/tools/ant/taskdefs/optional/perforce P4Fstat.java

2003-04-04 Thread bodewig
bodewig 2003/04/04 05:02:40 Modified:src/main/org/apache/tools/ant/taskdefs/optional/perforce P4Fstat.java Log: Remove stray CRs Revision ChangesPath 1.4 +213 -212 ant/src/main/org/apache/tools/ant/taskdefs/optional/perforce/P4Fstat.java

Re: cvs commit: ant/xdocs/stylesheets templates.vm

2003-04-04 Thread Stefan Bodewig
BTW, it looks nice in Safari as well, which probably makes up a considerable part of the "Unknowns" in > Stefan

DO NOT REPLY [Bug 18667] - javah module no longer works with Java 1.4.2

2003-04-04 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

Re: [Xdoclet-user] multiple jsptaglib nested tag in webdoclet

2003-04-04 Thread Erik Hatcher
Stefan, Thanks for those details. Erik On Friday, April 4, 2003, at 01:41 AM, Stefan Bodewig wrote: On Thu, 3 Apr 2003, Erik Hatcher <[EMAIL PROTECTED]> wrote: Any ideas on the differences between using under project or under a target? Several, and they vary with the Ant version in use. W

Re: Where are we WRT the JDK decision?

2003-04-04 Thread Conor MacNeill
On Fri, 4 Apr 2003 06:28 pm, Stefan Bodewig wrote: > > IIUC we don't have a 1.1 compatibility requirement for CVS HEAD any > longer, so that is fine. This is the case - I just need to write up an email about it which I'll try to do tonight. Conor -- Conor MacNeill Blog: http://codefeed.com/blo

Re: Patch JavaCC - KEEP_LINE_COLUMN, JJTree - OUTPUT_FILE and new tas kdef JJDoc

2003-04-04 Thread Stefan Bodewig
On Fri, 4 Apr 2003, Jene Jasper <[EMAIL PROTECTED]> wrote: > Would it be useful if I add an updated patch.txt to bug 18602 for > JavaCC.java and JJTree.java after the changes are available in a > nightly build ?? Maybe, but I don't think that merging them will be a big deal anyway. Stefan

RE: Patch JavaCC - KEEP_LINE_COLUMN, JJTree - OUTPUT_FILE and new tas kdef JJDoc

2003-04-04 Thread Jene Jasper
I noticed that the patch for JavaCC 2.1/3.0 changes is commited to CVS. Would it be useful if I add an updated patch.txt to bug 18602 for JavaCC.java and JJTree.java after the changes are available in a nightly build ?? Jene. -Oorspronkelijk bericht- Van: Stefan Bodewig [mailto:[EMAIL P

Re: sql triggers, stored procedures, packages, format preserved

2003-04-04 Thread Stefan Bodewig
On Thu, 3 Apr 2003, Rob H. Anderson <[EMAIL PROTECTED]> wrote: > one line, pretty self explanatory self explaining? Yes. I'm just not sure whether we want to do that unconditionally. Stefan

DO NOT REPLY [Bug 18664] - Patch JavaCC/JJTree version changes 3.0 vs 2.1

2003-04-04 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 12511] - directive must have a newline

2003-04-04 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

cvs commit: ant/src/main/org/apache/tools/ant/taskdefs/optional/javacc JJTree.java JavaCC.java

2003-04-04 Thread bodewig
bodewig 2003/04/04 01:08:52 Modified:.WHATSNEW src/main/org/apache/tools/ant/taskdefs/optional/javacc JJTree.java JavaCC.java Log: Make and work with JavaCC version 3.x. PR: 18664 Submitted by: Jene Jasper Revision Change

DO NOT REPLY [Bug 12511] - directive must have a newline

2003-04-04 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 18700] New: - Stange classpath problem

2003-04-04 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

cvs commit: ant/docs/manual/CoreTasks sql.html

2003-04-04 Thread bodewig
bodewig 2003/04/04 00:50:08 Modified:docs/manual/CoreTasks sql.html Log: Sync docs with new functionality. Submitted by: Rob Anderson Revision ChangesPath 1.19 +8 -1 ant/docs/manual/CoreTasks/sql.html Index: sql.html

Re: updated sql documentation....

2003-04-04 Thread Stefan Bodewig
On Fri, 4 Apr 2003, Rob H. Anderson <[EMAIL PROTECTED]> wrote: > How about now? Got it. Stefan

DO NOT REPLY [Bug 18504] - Junit report broken

2003-04-04 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

cvs commit: ant/src/main/org/apache/tools/ant/util DOMElementWriter.java

2003-04-04 Thread bodewig
bodewig 2003/04/04 00:36:22 Modified:src/main/org/apache/tools/ant/taskdefs/optional/junit XMLJUnitResultFormatter.java XMLResultAggregator.java XalanExecutor.java src/main/org/apache/tools/ant/util DOMElementWriter.java Lo

Where are we WRT the JDK decision?

2003-04-04 Thread Stefan Bodewig
When I fixed the JDepend task, I made it depend on JDK 1.2 - which is fine as JDepend has the same dependency. I'll shortly commit the JUnit Report patches and those contain workarounds for the famous StringBuffer#toString memory leak[1] in JDK 1.4.1. Unfortunately the workaround is to use StringB

RE: updated sql documentation....

2003-04-04 Thread Anderson, Rob H - VSCM
I hate it when that happens. How about now? -Rob A -Original Message- From: Stefan Bodewig [mailto:[EMAIL PROTECTED] Sent: Thursday, April 03, 2003 11:19 PM To: [EMAIL PROTECTED] Subject: Re: updated sql documentation On Thu, 3 Apr 2003, Rob H. Anderson <[EMAIL PROTECTED]> wrote: >

DO NOT REPLY [Bug 18695] New: - Fix ant startup script to fully suport a relative link to it.

2003-04-04 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 18504] - Junit report broken

2003-04-04 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 18642] - StackOverflow when calls a target which uses

2003-04-04 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

Re: updated sql documentation....

2003-04-04 Thread Stefan Bodewig
On Thu, 3 Apr 2003, Rob H. Anderson <[EMAIL PROTECTED]> wrote: > Attached is the updated sql documentation that I promised. Didn't make it to the list, sorry. Stefan

RE: cvs commit: ant/xdocs/stylesheets templates.vm

2003-04-04 Thread Christoph Wilhelms
Hi Conor and Stefan! > > No question, it looks - umh - ugly on Netscape 4, don't > know how much > > of a concern that has to be for us, though[1]. > > Probably not much of a concern. I've tested with a few browsers > Mozilla 1.2/1.3 on Linux > Konqueror on Linux Whew, and it looks much nicer a

Re: Fwd: [Xdoclet-user] multiple jsptaglib nested tag in webdoclet

2003-04-04 Thread Stefan Bodewig
On Thu, 3 Apr 2003, Erik Hatcher <[EMAIL PROTECTED]> wrote: > Any ideas on the differences between using under project > or under a target? Several, and they vary with the Ant version in use. With Ant 1.5.x, the main difference is that taskdefs defined at the project level will get evaluated im

Re: cvs commit: ant/xdocs/stylesheets templates.vm

2003-04-04 Thread Conor MacNeill
On Fri, 4 Apr 2003 03:53 pm, Stefan Bodewig wrote: > > No question, it looks - umh - ugly on Netscape 4, don't know how much > of a concern that has to be for us, though[1]. Probably not much of a concern. I've tested with a few browsers Mozilla 1.2/1.3 on Linux Konqueror on Linux IE6 on Windows

DO NOT REPLY [Bug 15729] - StarTeam rootLocalFolder should be java.io.File

2003-04-04 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

Re: cvs commit: ant/xdocs/stylesheets templates.vm

2003-04-04 Thread Stefan Bodewig
On 4 Apr 2003, <[EMAIL PROTECTED]> wrote: > More CSS - less tables No question, it looks - umh - ugly on Netscape 4, don't know how much of a concern that has to be for us, though[1]. It works (the menu comes at the top, the content below) for links and lynx (text-only browsers that are used b

DO NOT REPLY [Bug 18664] - Patch JavaCC/JJTree version changes 3.0 vs 2.1

2003-04-04 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

cvs commit: ant/docs/projects/antidote design.html index.html module.html

2003-04-04 Thread conor
conor 2003/04/03 20:21:05 Modified:docs ant15_todo.html antnews.html bindownload.html contributors.html cvs.html external.html faq.html guidelines.html index.html legal.html license.html mail.html mission.html

DO NOT REPLY [Bug 16268] - ant.apache.org uses tables for formatting.

2003-04-04 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

cvs commit: ant/xdocs/stylesheets templates.vm

2003-04-04 Thread conor
conor 2003/04/03 20:19:50 Modified:docs index.html page.css xdocs/stylesheets templates.vm Log: KHTML does not right align table cells Revision ChangesPath 1.275 +1 -1 ant/docs/index.html Index: index.html =

Need Help to use workspace in PVCS Task

2003-04-04 Thread Pothula, Satish Kumar Reddy (Cognizant)
Title: Need Help to use workspace in PVCS Task Hi,     I am working on to automate the build process for our application using ANT Tool. We are using PVCS as version control for the source code. I am using 'pvcs' task in build.xml to download the source code from PVCS. I am able to downl

Need Help to use workspace in PVCS Task

2003-04-04 Thread Pothula, Satish Kumar Reddy (Cognizant)
Title: Need Help to use workspace in PVCS Task Hi,     I am working on to automate the build process for our application using ANT Tool. We are using PVCS as version control for the source code. I am using 'pvcs' task in build.xml to download the source code from PVCS. I am able to downl

cvs commit: ant/xdocs/stylesheets templates.vm

2003-04-04 Thread conor
conor 2003/04/03 19:58:10 Modified:docs ant15_todo.html antnews.html bindownload.html contributors.html cvs.html external.html faq.html guidelines.html index.html legal.html license.html mail.html mission.html

DO NOT REPLY [Bug 18504] - Junit report broken

2003-04-04 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

RE: sql triggers, stored procedures, packages, format preserved

2003-04-04 Thread Anderson, Rob H - VSCM
I did find an issue that is preventing some packages from loading into Oracle. I have attached a diff -u that fixes it (one line, pretty self explanatory). Please commit it. -Rob A -Original Message- From: Steve Loughran [mailto:[EMAIL PROTECTED] Sent: Thursday, March 13, 2003 1:43 PM To

DO NOT REPLY [Bug 18504] - Junit report broken

2003-04-04 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

updated sql documentation....

2003-04-04 Thread Anderson, Rob H - VSCM
Attached is the updated sql documentation that I promised. Please commit this. Thanks, <> Robert Anderson Software Configuration Management Vector SCM 503-450-6514 [EMAIL PROTECTED]

Re: [PATCH] JUnitReport Patch

2003-04-04 Thread Steve Loughran
Andrus Adamchik wrote: I submitted a bug 18504 about JUnitReport being broken on JDK 1.4.1. It was closed with WONTFIX status, which I think happened partially due to Bugzilla mysteriously trimming half of my report text (I am not very experienced with Bugzilla, so who knows). Anyway, the descr