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 2011/01/25 06:06:36 UTC

svn commit: r1063142 - in /myfaces/tomahawk/trunk: core12/src/main/resources/META-INF/tomahawk12.vm sandbox/core12/src/main/resources/META-INF/tomahawk12.vm

Author: lu4242
Date: Tue Jan 25 05:06:35 2011
New Revision: 1063142

URL: http://svn.apache.org/viewvc?rev=1063142&view=rev
Log:
TOMAHAWK-1560 Tomahawk 1.1.10 for JSF 1.2 fails to deploy on JBoss AS 6 because of TLD errors (thanks to Christian Kaltepoth for provide this patch)

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

Modified: myfaces/tomahawk/trunk/core12/src/main/resources/META-INF/tomahawk12.vm
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core12/src/main/resources/META-INF/tomahawk12.vm?rev=1063142&r1=1063141&r2=1063142&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/core12/src/main/resources/META-INF/tomahawk12.vm (original)
+++ myfaces/tomahawk/trunk/core12/src/main/resources/META-INF/tomahawk12.vm Tue Jan 25 05:06:35 2011
@@ -203,8 +203,8 @@ $baseContent
 #set ($attributeList = ${tag.attributeList})
 #foreach( $attribute in $attributeList )
       <attribute>
-#if ($property.longDescription)
-         <description><![CDATA[$property.longDescription]]></description>
+#if ($attribute.longDescription)
+         <description><![CDATA[$attribute.longDescription]]></description>
 #else
          <description><![CDATA[]]></description>
 #end

Modified: myfaces/tomahawk/trunk/sandbox/core12/src/main/resources/META-INF/tomahawk12.vm
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/sandbox/core12/src/main/resources/META-INF/tomahawk12.vm?rev=1063142&r1=1063141&r2=1063142&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/core12/src/main/resources/META-INF/tomahawk12.vm (original)
+++ myfaces/tomahawk/trunk/sandbox/core12/src/main/resources/META-INF/tomahawk12.vm Tue Jan 25 05:06:35 2011
@@ -184,11 +184,6 @@ $baseContent
          </deferred-value>
 #end
 #end
-#if ($property.longDescription)
-         <description><![CDATA[$property.longDescription]]></description>
-#else
-         <description><![CDATA[]]></description>
-#end
       </attribute>
 #end
 #end
@@ -208,8 +203,8 @@ $baseContent
 #set ($attributeList = ${tag.attributeList})
 #foreach( $attribute in $attributeList )
       <attribute>
-#if ($property.longDescription)
-         <description><![CDATA[$property.longDescription]]></description>
+#if ($attribute.longDescription)
+         <description><![CDATA[$attribute.longDescription]]></description>
 #else
          <description><![CDATA[]]></description>
 #end