[richfaces-svn-commits] JBoss Rich Faces SVN: r15935 - root/cdk/trunk/plugins/maven-cdk-plugin/src/it/annotated-component/src/main/templates.

richfaces-svn-commits at lists.jboss.org richfaces-svn-commits at lists.jboss.org
Thu Nov 19 21:29:35 EST 2009


Author: nbelaevski
Date: 2009-11-19 21:29:35 -0500 (Thu, 19 Nov 2009)
New Revision: 15935

Modified:
   root/cdk/trunk/plugins/maven-cdk-plugin/src/it/annotated-component/src/main/templates/testComponent.xml
Log:
https://jira.jboss.org/jira/browse/RF-7732

Modified: root/cdk/trunk/plugins/maven-cdk-plugin/src/it/annotated-component/src/main/templates/testComponent.xml
===================================================================
--- root/cdk/trunk/plugins/maven-cdk-plugin/src/it/annotated-component/src/main/templates/testComponent.xml	2009-11-20 02:19:52 UTC (rev 15934)
+++ root/cdk/trunk/plugins/maven-cdk-plugin/src/it/annotated-component/src/main/templates/testComponent.xml	2009-11-20 02:29:35 UTC (rev 15935)
@@ -32,16 +32,16 @@
 	</cc:interface>
 	<cc:implementation>
                 start
-                <c:if test="#{someTest}">if content</c:if>
+                <c:if test="#{cc.attributes['ifTest'] != null}">if content</c:if>
                 <c:choose>
-                    <c:when test="#{anotherTest}">when content</c:when>
-                    <c:when test="#{coolTest}"> 
-                        <c:if test="#{nestedIfTest}">nested if content</c:if>
+                    <c:when test="#{cc.attributes['anotherTest'] != null}">when content</c:when>
+                    <c:when test="#{cc.attributes['coolTest'] != null}"> 
+                        <c:if test="#{cc.attributes['nestedIfTest'] != null}">nested if content</c:if>
                     </c:when>
                     <c:otherwise>otherwise content</c:otherwise>
                 </c:choose>
-                <c:forEach items="#{someCollection}" var="iterationVar">
-                    "forEach content
+                <c:forEach items="#{cc.children}" var="iterationVar">
+                    forEach content
                 </c:forEach>
                 finish 
 	</cc:implementation>



More information about the richfaces-svn-commits mailing list