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/05/16 22:21:27 UTC

svn commit: r1103868 - /myfaces/tomahawk/trunk/sandbox/core20/src/main/resources/META-INF/faces-config20.vm

Author: lu4242
Date: Mon May 16 20:21:27 2011
New Revision: 1103868

URL: http://svn.apache.org/viewvc?rev=1103868&view=rev
Log:
TOMAHAWK-1558 Create custom base class for ClientBehaviors

Modified:
    myfaces/tomahawk/trunk/sandbox/core20/src/main/resources/META-INF/faces-config20.vm

Modified: myfaces/tomahawk/trunk/sandbox/core20/src/main/resources/META-INF/faces-config20.vm
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/sandbox/core20/src/main/resources/META-INF/faces-config20.vm?rev=1103868&r1=1103867&r2=1103868&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/core20/src/main/resources/META-INF/faces-config20.vm (original)
+++ myfaces/tomahawk/trunk/sandbox/core20/src/main/resources/META-INF/faces-config20.vm Mon May 16 20:21:27 2011
@@ -59,7 +59,9 @@ $baseContent
 #end
 #set ($behaviorList = ${model.getBehaviors()})
 #foreach( $behavior in $behaviorList )
-#if ($modelIds.contains($behavior.modelId))
+#if ($modelIds.contains($behavior.modelId) &&
+    !($behavior.isConfigExcluded().booleanValue()) &&
+    $behavior.behaviorId)
   <behavior>
     <behavior-id>$behavior.behaviorId</behavior-id>
     <behavior-class>$behavior.className</behavior-class>