Return-Path: Delivered-To: apmail-myfaces-commits-archive@www.apache.org Received: (qmail 86506 invoked from network); 25 Apr 2005 23:40:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 25 Apr 2005 23:40:56 -0000 Received: (qmail 2440 invoked by uid 500); 25 Apr 2005 23:41:29 -0000 Delivered-To: apmail-myfaces-commits-archive@myfaces.apache.org Received: (qmail 2407 invoked by uid 500); 25 Apr 2005 23:41:29 -0000 Mailing-List: contact commits-help@myfaces.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "MyFaces Development" > Delivered-To: mailing list commits@myfaces.apache.org Delivered-To: moderator for commits@myfaces.apache.org Received: (qmail 6213 invoked by uid 500); 25 Apr 2005 18:43:52 -0000 Delivered-To: apmail-incubator-myfaces-cvs@apache.org X-ASF-Spam-Status: No, hits=0.2 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Date: 25 Apr 2005 18:43:19 -0000 Message-ID: <20050425184319.74158.qmail@minotaur.apache.org> From: grantsmith@apache.org To: incubator-myfaces-cvs@apache.org Subject: cvs commit: incubator-myfaces/src/jsfapi/javax/faces/component UIInput.java X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N grantsmith 2005/04/25 11:43:19 Modified: doc developer-notes.txt src/jsfapi/javax/faces/component UIInput.java Log: MYFACES-187 - Comment out submittedValue - testing required Revision Changes Path 1.18 +6 -3 incubator-myfaces/doc/developer-notes.txt Index: developer-notes.txt =================================================================== RCS file: /home/cvs/incubator-myfaces/doc/developer-notes.txt,v retrieving revision 1.17 retrieving revision 1.18 diff -u -r1.17 -r1.18 --- developer-notes.txt 13 Apr 2005 13:15:49 -0000 1.17 +++ developer-notes.txt 25 Apr 2005 18:43:19 -0000 1.18 @@ -58,7 +58,7 @@ * Communication - Main communication instrument among MyFaces developers is the MyFaces - developer mailing list (myfaces-dev@incubator.apache.org). + developer mailing list (dev@myfaces.apache.org). - Every active MyFaces developer must subscribe to this list. * Copyright @@ -87,6 +87,9 @@ * @author Bug Rogers (latest modification by $Author$) * @version $Revision$ $Date$ * $Log$ + * Revision 1.18 2005/04/25 18:43:19 grantsmith + * MYFACES-187 - Comment out submittedValue - testing required + * * Revision 1.17 2005/04/13 13:15:49 manolito * link to Apache-Wide Coding Style Guide * 1.18 +14 -9 incubator-myfaces/src/jsfapi/javax/faces/component/UIInput.java Index: UIInput.java =================================================================== RCS file: /home/cvs/incubator-myfaces/src/jsfapi/javax/faces/component/UIInput.java,v retrieving revision 1.17 retrieving revision 1.18 diff -u -r1.17 -r1.18 --- UIInput.java 12 Apr 2005 12:41:48 -0000 1.17 +++ UIInput.java 25 Apr 2005 18:43:19 -0000 1.18 @@ -1,12 +1,12 @@ /* * Copyright 2004 The Apache Software Foundation. - * + * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -37,8 +37,11 @@ * @author Manfred Geiler (latest modification by $Author$) * @version $Revision$ $Date$ * $Log$ + * Revision 1.18 2005/04/25 18:43:19 grantsmith + * MYFACES-187 - Comment out submittedValue - testing required + * * Revision 1.17 2005/04/12 12:41:48 manolito - * PR: MYFACES-179 + * PR: MYFACES-179 * Submitted by: Mathias Broekelmann * * Revision 1.16 2005/03/04 00:28:45 mmarinschek @@ -288,10 +291,11 @@ Object submittedValue = getSubmittedValue(); if (submittedValue == null) return; - if(submittedValue instanceof String && ((String) submittedValue).length()==0) - { - submittedValue = null; - } +// if(submittedValue instanceof String && ((String) submittedValue).length()==0) +// { +// submittedValue = null; +// } +//todo: Remove commented code if all tests pass Object convertedValue = getConvertedValue(context, submittedValue);