You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by im...@apache.org on 2008/01/03 11:38:56 UTC

svn commit: r608424 - /myfaces/trinidad-maven/trunk/maven-faces-plugin/src/main/java/org/apache/myfaces/trinidadbuild/plugin/faces/generator/taglib/MyFacesComponentTagGenerator.java

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();



Re: svn commit: r608424 - /myfaces/trinidad-maven/trunk/maven-faces-plugin/src/main/java/org/apache/myfaces/trinidadbuild/plugin/faces/generator/taglib/MyFacesComponentTagGenerator.java

Posted by Matthias Wessendorf <ma...@apache.org>.
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,  <im...@apache.org> 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