Re: UIInput.resetValue()

2008-01-15 Thread Manfred Geiler
-1 Sorry, I cannot agree. The API doc of resetValue() tells you why: Convenience method to reset [..] A utility like method for convenience like this one does not belong to an interface. It does not add any behavioural function. UIInput is not an interface but a (base) class, so it is ok to have

[jira] Commented: (MYFACES-1794) MF Core causes resources not found(404) errors (recently also corrected in Sun RI for JSF 1.2)

2008-01-15 Thread Simon Kitching (JIRA)
[ https://issues.apache.org/jira/browse/MYFACES-1794?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12558987#action_12558987 ] Simon Kitching commented on MYFACES-1794: - The whole point of this issue, and the

[jira] Commented: (MYFACES-1794) MF Core causes resources not found(404) errors (recently also corrected in Sun RI for JSF 1.2)

2008-01-15 Thread Wolf Benz (JIRA)
[ https://issues.apache.org/jira/browse/MYFACES-1794?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12558983#action_12558983 ] Wolf Benz commented on MYFACES-1794: Hello Simon, What version of Trinidad would you

[jira] Commented: (MYFACES-1794) MF Core causes resources not found(404) errors (recently also corrected in Sun RI for JSF 1.2)

2008-01-15 Thread Wolf Benz (JIRA)
[ https://issues.apache.org/jira/browse/MYFACES-1794?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12558998#action_12558998 ] Wolf Benz commented on MYFACES-1794: You're right Simon. Will do. Thx, -Wolf MF

[jira] Created: (MYFACES-1803) noscript elements should be rendered for better WAI support

2008-01-15 Thread Manfred Geiler (JIRA)
noscript elements should be rendered for better WAI support - Key: MYFACES-1803 URL: https://issues.apache.org/jira/browse/MYFACES-1803 Project: MyFaces Core Issue Type:

[jira] Commented: (MYFACES-1803) noscript elements should be rendered for better WAI support

2008-01-15 Thread Simon Kitching (JIRA)
[ https://issues.apache.org/jira/browse/MYFACES-1803?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12559003#action_12559003 ] Simon Kitching commented on MYFACES-1803: - I think we need central utility

Rendering of trinidad components in Visual page editor

2008-01-15 Thread Varun Shingal
Hi Im working on a project on JSF and use the eclipse visual page editor (WTP) for editing the pages. I started using trinidad components and found that there is no support for them in the visual page editor for design-time rendering. Is it something wrong I am doing or is it not supported?

[Trinidad] Rendering of trinidad components in Visual page editor

2008-01-15 Thread Varun Shingal
Varun Shingal wrote: Hi Im working on a project on JSF and use the eclipse visual page editor (WTP) for editing the pages. I started using trinidad components and found that there is no support for them in the visual page editor for design-time rendering. Is it something wrong I am doing or

[jira] Commented: (TOBAGO-572) Duplicate component id with tc:selectOneRadio

2008-01-15 Thread Bernd Bohmann (JIRA)
[ https://issues.apache.org/jira/browse/TOBAGO-572?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12559038#action_12559038 ] Bernd Bohmann commented on TOBAGO-572: -- I will look at this issue tonight. Duplicate

[jira] Commented: (TOBAGO-572) Duplicate component id with tc:selectOneRadio

2008-01-15 Thread Guido Dubois (JIRA)
[ https://issues.apache.org/jira/browse/TOBAGO-572?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12559033#action_12559033 ] Guido Dubois commented on TOBAGO-572: - This behaviour is still present in Tobago 1.0.14

Re: UIInput.resetValue()

2008-01-15 Thread Simon Lessard
Although I'm -1 also because of backward compatibility, I also felt that it should have been added to the interface to start with as it simplifies many loops used for reseting EditableValueHolder of the whole tree. You cannot use instanceof UIInput for those as Trinidad input components, for

Re: UIInput.resetValue()

2008-01-15 Thread Manfred Geiler
Why not use the last if alone? if (component instanceof EditableValueHolder) { EditableValueHolder holder = (EditableValueHolder)component; holder.setValue(null); holder.setSubmittedValue(null); holder.setLocalValueSet(false); holder.setValid(true); } Every UIInput is an

Re: UIInput.resetValue()

2008-01-15 Thread Matthias Wessendorf
Matze, do you have any concrete use case that could confirm your POV? a hack like the mentioned utility does it. But using clean interfaces would be more appreciated. Originally this email should go the the RI list, b/c I am hoping that the interface changes in JSF2 (for some reasons). We here

Re: UIInput.resetValue()

2008-01-15 Thread Manfred Geiler
On Jan 15, 2008 4:16 PM, Matthias Wessendorf [EMAIL PROTECTED] wrote: We here can only talk... The spec itself is made behind closed doors ;-) Not really closed ajar would be a better word: at least everyone is allowed to comment on early drafts ;-) --Manfred

Re: UIInput.resetValue()

2008-01-15 Thread Matthias Wessendorf
As I said, I see from the backwards compatibility why it was done. On Jan 15, 2008 7:02 AM, Manfred Geiler [EMAIL PROTECTED] wrote: Why not use the last if alone? because this all is already done in JSF ... if (component instanceof EditableValueHolder) { EditableValueHolder holder =

Re: UIInput.resetValue()

2008-01-15 Thread Simon Lessard
Personally, considering there's always backward compatibility issues anyway, I wouldn't mind seeing some new ones if it was to allow JSF to be much faster, easier to use and more extensible. Like standardizing FacesBean for instance. If done correctly, it would give a decent speed boost, allow

Re: UIInput.resetValue()

2008-01-15 Thread Matthias Wessendorf
nice... On Jan 15, 2008 7:23 AM, Manfred Geiler [EMAIL PROTECTED] wrote: On Jan 15, 2008 4:16 PM, Matthias Wessendorf [EMAIL PROTECTED] wrote: We here can only talk... The spec itself is made behind closed doors ;-) Not really closed ajar would be a better word: at least everyone is allowed

[jira] Resolved: (TRINIDAD-895) faces-config does not include converter and validator attributes

2008-01-15 Thread JIRA
[ https://issues.apache.org/jira/browse/TRINIDAD-895?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Matthias Weßendorf resolved TRINIDAD-895. - Resolution: Fixed Fix Version/s: 1.2.6-plugins faces-config does not

Re: UIInput.resetValue()

2008-01-15 Thread Simon Lessard
Yes, which mean that I might make such propositions or support them, but I'm not the only member and I'm pretty such that some members see apparent backward compatibility to be a precept above anything else. ~ Simon On Jan 15, 2008 11:35 AM, Matthias Wessendorf [EMAIL PROTECTED] wrote: aren't

Re: UIInput.resetValue()

2008-01-15 Thread Matthias Wessendorf
but, a move to JSF 2 is MUCH bigger than to 1.2 (from 1.1) -M On Jan 15, 2008 9:57 AM, Simon Lessard [EMAIL PROTECTED] wrote: Yes, which mean that I might make such propositions or support them, but I'm not the only member and I'm pretty such that some members see apparent backward

Re: UIInput.resetValue()

2008-01-15 Thread Simon Lessard
And I sure hope it will. On Jan 15, 2008 1:03 PM, Matthias Wessendorf [EMAIL PROTECTED] wrote: but, a move to JSF 2 is MUCH bigger than to 1.2 (from 1.1) -M On Jan 15, 2008 9:57 AM, Simon Lessard [EMAIL PROTECTED] wrote: Yes, which mean that I might make such propositions or support them,

[jira] Created: (TOBAGO-596) Duplicate component Id exception with tc:date and tx:date with facelets

2008-01-15 Thread Bernd Bohmann (JIRA)
Duplicate component Id exception with tc:date and tx:date with facelets --- Key: TOBAGO-596 URL: https://issues.apache.org/jira/browse/TOBAGO-596 Project: MyFaces Tobago

[jira] Commented: (TOBAGO-464) Create a real tx extension taglib for facelets

2008-01-15 Thread Bernd Bohmann (JIRA)
[ https://issues.apache.org/jira/browse/TOBAGO-464?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12559253#action_12559253 ] Bernd Bohmann commented on TOBAGO-464: -- Can you add the tld file to a new issue,

[jira] Commented: (MYFACES-1794) MF Core causes resources not found(404) errors (recently also corrected in Sun RI for JSF 1.2)

2008-01-15 Thread Wolf Benz (JIRA)
[ https://issues.apache.org/jira/browse/MYFACES-1794?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12559273#action_12559273 ] Wolf Benz commented on MYFACES-1794: After check-out of MyFacesCore-trunk_1.2.x, as

[jira] Created: (TOMAHAWK-1176) XmlTemplate fails when filename contains spaces on WindowsXP

2008-01-15 Thread Jayson Raymond (JIRA)
XmlTemplate fails when filename contains spaces on WindowsXP Key: TOMAHAWK-1176 URL: https://issues.apache.org/jira/browse/TOMAHAWK-1176 Project: MyFaces Tomahawk Issue Type: Bug

[jira] Commented: (TOBAGO-572) Duplicate component id with tc:selectOneRadio

2008-01-15 Thread Guido Dubois (JIRA)
[ https://issues.apache.org/jira/browse/TOBAGO-572?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12559371#action_12559371 ] Guido Dubois commented on TOBAGO-572: - I tested it with:

[jira] Created: (TOBAGO-597) TLD file for tx facelets extensions to include in eclipse to get coding assistence and code completition

2008-01-15 Thread Guido Dubois (JIRA)
TLD file for tx facelets extensions to include in eclipse to get coding assistence and code completition Key: TOBAGO-597 URL: