so, we can close MYFACES-1790, right? Once 1.2.6 of plugins is out, the 1.2.1 release can continue
-M On Jan 3, 2008 2:38 AM, <[EMAIL PROTECTED]> wrote: > Author: imario > Date: Thu Jan 3 02:38:55 2008 > New Revision: 608424 > > URL: http://svn.apache.org/viewvc?rev=608424&view=rev > Log: > workaround (or fix) for CCE triggerd by fix for MYFACES-1790 > > Modified: > > myfaces/trinidad-maven/trunk/maven-faces-plugin/src/main/java/org/apache/myfaces/trinidadbuild/plugin/faces/generator/taglib/MyFacesComponentTagGenerator.java > > Modified: > myfaces/trinidad-maven/trunk/maven-faces-plugin/src/main/java/org/apache/myfaces/trinidadbuild/plugin/faces/generator/taglib/MyFacesComponentTagGenerator.java > URL: > http://svn.apache.org/viewvc/myfaces/trinidad-maven/trunk/maven-faces-plugin/src/main/java/org/apache/myfaces/trinidadbuild/plugin/faces/generator/taglib/MyFacesComponentTagGenerator.java?rev=608424&r1=608423&r2=608424&view=diff > ============================================================================== > --- > myfaces/trinidad-maven/trunk/maven-faces-plugin/src/main/java/org/apache/myfaces/trinidadbuild/plugin/faces/generator/taglib/MyFacesComponentTagGenerator.java > (original) > +++ > myfaces/trinidad-maven/trunk/maven-faces-plugin/src/main/java/org/apache/myfaces/trinidadbuild/plugin/faces/generator/taglib/MyFacesComponentTagGenerator.java > Thu Jan 3 02:38:55 2008 > @@ -219,6 +219,11 @@ > Iterator properties) throws > IOException > { > > + if("HtmlColumn".equals(componentClass)) > + { > + componentClass = "UIColumn"; > + } > + > out.println("if (!(component instanceof " + componentClass + "))"); > out.println("{"); > out.indent(); > > > -- Matthias Wessendorf further stuff: blog: http://matthiaswessendorf.wordpress.com/ sessions: http://www.slideshare.net/mwessendorf mail: matzew-at-apache-dot-org
