Return-Path: Delivered-To: apmail-incubator-beehive-dev-archive@www.apache.org Received: (qmail 93174 invoked from network); 15 Sep 2004 17:23:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 15 Sep 2004 17:23:07 -0000 Received: (qmail 9392 invoked by uid 500); 15 Sep 2004 17:23:04 -0000 Delivered-To: apmail-incubator-beehive-dev-archive@incubator.apache.org Received: (qmail 9343 invoked by uid 500); 15 Sep 2004 17:23:04 -0000 Mailing-List: contact beehive-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Beehive Developers" Delivered-To: mailing list beehive-dev@incubator.apache.org Received: (qmail 9327 invoked by uid 99); 15 Sep 2004 17:23:04 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from [63.96.162.5] (HELO ussjmh01.bea.com) (63.96.162.5) by apache.org (qpsmtpd/0.28) with ESMTP; Wed, 15 Sep 2004 10:23:02 -0700 Received: from ussjfe02.amer.bea.com (ussjfe02b.bea.com [172.16.120.56]) by ussjmh01.bea.com (Switch-3.0.5/Switch-3.0.0) with ESMTP id i8FHN1ZL012699 for ; Wed, 15 Sep 2004 10:23:01 -0700 Received: from USBOEX01.amer.bea.com ([10.36.32.15]) by ussjfe02.amer.bea.com with Microsoft SMTPSVC(5.0.2195.6713); Wed, 15 Sep 2004 10:23:01 -0700 Received: from rfeit-lt.bea.com ([10.36.34.185]) by USBOEX01.amer.bea.com with Microsoft SMTPSVC(5.0.2195.6713); Wed, 15 Sep 2004 11:22:59 -0600 Message-Id: <6.1.2.0.2.20040915112116.03b4dd48@usboex01.bea.com> X-Sender: rfeit@usboex01.bea.com X-Mailer: QUALCOMM Windows Eudora Version 6.1.2.0 Date: Wed, 15 Sep 2004 11:22:57 -0600 To: "Beehive Developers" From: Richard Feit Subject: Re: checkin request netui DRT In-Reply-To: <6.1.2.0.2.20040915104327.0348cec0@usboex01.bea.com> References: <20040916002933.15E7.WOLFGANG127US@yahoo.co.jp> <6.1.2.0.2.20040915104327.0348cec0@usboex01.bea.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-OriginalArrivalTime: 15 Sep 2004 17:23:00.0142 (UTC) FILETIME=[A6315CE0:01C49B48] X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N OK, this is all fixed now. Thanks for the quick heads-up, and sorry about the mixup. Rich At 10:45 AM 9/15/2004, Richard Feit wrote: >Hi Wolfgang, > >This was my checkin from last night -- it ended up containing files I >didn't mean to submit. Let me see if I can submit the rest of the files >(e.g., the updated Jpf interface) quickly; if not, I'll just roll back my >original change. > >Thanks, and apologies for the inconvenience, >Rich > > >At 09:40 AM 9/15/2004, you wrote: >>Hi there, >> >>I've got a checkin request for netui DRT. >>Although the Jpf.ActionOutput interface doesn't have a variable named >>"required", the required attribute(parameter?) is >>specified in PageInputController.jpf. Thus, the drt process fails. >>The result of diff below removes the "required" attribute. >> >>Thanks in advace. >> >>wolfgang >> >> >> >> >> >>Index: >>netui/test/webapps/drt/coreWeb/pageFlowCore/pfPageInput/PageInputController.jpf >>=================================================================== >>--- >>netui/test/webapps/drt/coreWeb/pageFlowCore/pfPageInput/PageInputController.jpf >>(revision 46118) >> >> >>+++ >>netui/test/webapps/drt/coreWeb/pageFlowCore/pfPageInput/PageInputController.jpf >>(working copy) >>@@ -37,7 +37,7 @@ >> navigateTo = Jpf.NavigateTo.currentPage), >> @Jpf.Forward( >> name = "globalSuccessMissingButNullable", >>- actionOutputs={@Jpf.ActionOutput(name="missingButNullable", >>type=String.class, required=false)}, >>+ actionOutputs={@Jpf.ActionOutput(name="missingButNullable", >>type=String.class)}, >> navigateTo = Jpf.NavigateTo.currentPage) >> }) >> @Jpf.ViewProperties( >>@@ -302,7 +302,7 @@ >> forwards = { >> @Jpf.Forward( >> name = "success", >>- actionOutputs={@Jpf.ActionOutput(name="missingButNullable", >>type=String.class, required=false)}, >>+ actionOutputs={@Jpf.ActionOutput(name="missingButNullable", >>type=String.class)}, >> navigateTo = Jpf.NavigateTo.currentPage) >> }) >> protected Forward missingButNullable1() >>