You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lu...@apache.org on 2008/06/17 22:37:40 UTC

svn commit: r668821 - in /myfaces/tomahawk/trunk: core/src/main/resources/META-INF/ core12/src/main/resources/META-INF/ sandbox/core/src/main/resources/META-INF/ sandbox/core12/src/main/resources/META-INF/

Author: lu4242
Date: Tue Jun 17 13:37:40 2008
New Revision: 668821

URL: http://svn.apache.org/viewvc?rev=668821&view=rev
Log:
fix error facelets template does not generate converter stuff (syntax error)

Modified:
    myfaces/tomahawk/trunk/core/src/main/resources/META-INF/facelets-taglib.vm
    myfaces/tomahawk/trunk/core12/src/main/resources/META-INF/facelets-taglib.vm
    myfaces/tomahawk/trunk/sandbox/core/src/main/resources/META-INF/facelets-taglib.vm
    myfaces/tomahawk/trunk/sandbox/core12/src/main/resources/META-INF/facelets-taglib.vm

Modified: myfaces/tomahawk/trunk/core/src/main/resources/META-INF/facelets-taglib.vm
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core/src/main/resources/META-INF/facelets-taglib.vm?rev=668821&r1=668820&r2=668821&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/core/src/main/resources/META-INF/facelets-taglib.vm (original)
+++ myfaces/tomahawk/trunk/core/src/main/resources/META-INF/facelets-taglib.vm Tue Jun 17 13:37:40 2008
@@ -52,11 +52,11 @@
 #foreach( $component in $componentList )
 #if ($modelIds.contains($component.modelId) 
     && ($component.name))
-#if ($converter.converterId) 
+#if ($component.converterId) 
     <tag>
         <tag-name>$utils.getTagName($component.name)</tag-name>
         <converter>
-            <converter-id>$converter.converterId</converter-id>
+            <converter-id>$component.converterId</converter-id>
         </converter>
     </tag>
 #end

Modified: myfaces/tomahawk/trunk/core12/src/main/resources/META-INF/facelets-taglib.vm
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core12/src/main/resources/META-INF/facelets-taglib.vm?rev=668821&r1=668820&r2=668821&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/core12/src/main/resources/META-INF/facelets-taglib.vm (original)
+++ myfaces/tomahawk/trunk/core12/src/main/resources/META-INF/facelets-taglib.vm Tue Jun 17 13:37:40 2008
@@ -52,11 +52,11 @@
 #foreach( $component in $componentList )
 #if ($modelIds.contains($component.modelId) 
     && ($component.name))
-#if ($converter.converterId) 
+#if ($component.converterId) 
     <tag>
         <tag-name>$utils.getTagName($component.name)</tag-name>
         <converter>
-            <converter-id>$converter.converterId</converter-id>
+            <converter-id>$component.converterId</converter-id>
         </converter>
     </tag>
 #end

Modified: myfaces/tomahawk/trunk/sandbox/core/src/main/resources/META-INF/facelets-taglib.vm
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/sandbox/core/src/main/resources/META-INF/facelets-taglib.vm?rev=668821&r1=668820&r2=668821&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/core/src/main/resources/META-INF/facelets-taglib.vm (original)
+++ myfaces/tomahawk/trunk/sandbox/core/src/main/resources/META-INF/facelets-taglib.vm Tue Jun 17 13:37:40 2008
@@ -52,11 +52,11 @@
 #foreach( $component in $componentList )
 #if ($modelIds.contains($component.modelId) 
     && ($component.name))
-#if ($converter.converterId) 
+#if ($component.converterId) 
     <tag>
         <tag-name>$utils.getTagName($component.name)</tag-name>
         <converter>
-            <converter-id>$converter.converterId</converter-id>
+            <converter-id>$component.converterId</converter-id>
         </converter>
     </tag>
 #end

Modified: myfaces/tomahawk/trunk/sandbox/core12/src/main/resources/META-INF/facelets-taglib.vm
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/sandbox/core12/src/main/resources/META-INF/facelets-taglib.vm?rev=668821&r1=668820&r2=668821&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/core12/src/main/resources/META-INF/facelets-taglib.vm (original)
+++ myfaces/tomahawk/trunk/sandbox/core12/src/main/resources/META-INF/facelets-taglib.vm Tue Jun 17 13:37:40 2008
@@ -52,11 +52,11 @@
 #foreach( $component in $componentList )
 #if ($modelIds.contains($component.modelId) 
     && ($component.name))
-#if ($converter.converterId) 
+#if ($component.converterId) 
     <tag>
         <tag-name>$utils.getTagName($component.name)</tag-name>
         <converter>
-            <converter-id>$converter.converterId</converter-id>
+            <converter-id>$component.converterId</converter-id>
         </converter>
     </tag>
 #end