Hello, When working on ADFFACES-134 (input text size on BlackBerry Browser), I realized that non-Faces-Major input text renderers existed in addition to the Faces Major one
non-Faces-Major: trinidad-impl\src\main\java\org\apache\myfaces\trinidadinternal\ui\laf\base\desktop\TextInputRenderer.java trinidad-impl\src\main\java\org\apache\myfaces\trinidadinternal\ui\laf\base\pda\TextInputRenderer.java trinidad-impl\src\main\java\org\apache\myfaces\trinidadinternal\ui\laf\base\xhtml\TextInputRenderer.java Faces Major: trinidad-impl\src\main\java\org\apache\myfaces\trinidadinternal\renderkit\core\xhtml\InputTextRenderer.java trinidad-impl\src\main\java\org\apache\myfaces\trinidadinternal\renderkit\core\xhtml\SimpleInputTextRenderer.java My questions: 1) How can I determine if the Faces Major version has completely replaced the non-Faces-Major version? (A quick text search to find references to the non-Faces-Major version gave me the initial impression it isn't being used anywhere, but I'm sure there is a more accurate way to check.) 2) Do we need to maintain the non-Faces-Major version of a renderer if the Faces-Major renderer is being used exclusively? (That is, when I make the change to the Faces Major version to modify the text size on the BlackBerry Browser, do I need to change both sets of renderers?) Take care, Joey
