Return-Path: Delivered-To: apmail-jakarta-ant-dev-archive@apache.org Received: (qmail 28340 invoked from network); 16 Nov 2002 04:01:51 -0000 Received: from unknown (HELO nagoya.betaversion.org) (192.18.49.131) by daedalus.apache.org with SMTP; 16 Nov 2002 04:01:51 -0000 Received: (qmail 5040 invoked by uid 97); 16 Nov 2002 04:02:57 -0000 Delivered-To: qmlist-jakarta-archive-ant-dev@jakarta.apache.org Received: (qmail 4996 invoked by uid 97); 16 Nov 2002 04:02:56 -0000 Mailing-List: contact ant-dev-help@jakarta.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 ant-dev@jakarta.apache.org Received: (qmail 4982 invoked by uid 50); 16 Nov 2002 04:02:55 -0000 Date: 16 Nov 2002 04:02:55 -0000 Message-ID: <20021116040255.4981.qmail@nagoya.betaversion.org> From: bugzilla@apache.org To: ant-dev@jakarta.apache.org Cc: Subject: DO NOT REPLY [Bug 14613] New: - patch to add webinc and webxml to optional Jspc task X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N 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.cgi?id=14613 patch to add webinc and webxml to optional Jspc task Summary: patch to add webinc and webxml to optional Jspc task Product: Ant Version: 1.5.1 Platform: All OS/Version: All Status: NEW Severity: Enhancement Priority: Other Component: Optional Tasks AssignedTo: ant-dev@jakarta.apache.org ReportedBy: toby@caboteria.org Thanks for Ant, it's extremely useful. Jasper jspc (the tool that compiles jsp files into servlets) has two parameters (webinc and webxml) which weren't entirely supported in the ant jspc task. Most of the hooks were there, just need a couple of lines: --- src/main/org/apache/tools/ant/taskdefs/optional/jsp/compilers/JasperC.java~ Wed Oct 2 11:08:46 2002 +++ src/main/org/apache/tools/ant/taskdefs/optional/jsp/compilers/JasperC.java Fri Nov 15 22:40:54 2002 @@ -154,6 +154,8 @@ addArg(cmd, "-uriroot", jspc.getUriroot()); addArg(cmd, "-uribase", jspc.getUribase()); addArg(cmd, "-ieplugin", jspc.getIeplugin()); + addArg(cmd, "-webinc", jspc.getWebinc()); + addArg(cmd, "-webxml", jspc.getWebxml()); addArg(cmd, "-die9"); if (jspc.isMapped()){ -- To unsubscribe, e-mail: For additional commands, e-mail: