You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by we...@apache.org on 2006/09/09 00:00:36 UTC

svn commit: r441671 - in /myfaces/tomahawk/trunk/sandbox/core/src/main/java/org/apache/myfaces/custom/dojolayouts: DojoSplitPane.java DojoSplitPaneTag.java

Author: werpu
Date: Fri Sep  8 15:00:35 2006
New Revision: 441671

URL: http://svn.apache.org/viewvc?view=rev&rev=441671
Log:
fixed the last known remaining bugs

Modified:
    myfaces/tomahawk/trunk/sandbox/core/src/main/java/org/apache/myfaces/custom/dojolayouts/DojoSplitPane.java
    myfaces/tomahawk/trunk/sandbox/core/src/main/java/org/apache/myfaces/custom/dojolayouts/DojoSplitPaneTag.java

Modified: myfaces/tomahawk/trunk/sandbox/core/src/main/java/org/apache/myfaces/custom/dojolayouts/DojoSplitPane.java
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/sandbox/core/src/main/java/org/apache/myfaces/custom/dojolayouts/DojoSplitPane.java?view=diff&rev=441671&r1=441670&r2=441671
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/core/src/main/java/org/apache/myfaces/custom/dojolayouts/DojoSplitPane.java (original)
+++ myfaces/tomahawk/trunk/sandbox/core/src/main/java/org/apache/myfaces/custom/dojolayouts/DojoSplitPane.java Fri Sep  8 15:00:35 2006
@@ -58,7 +58,7 @@
     public String getSplitOrientationation() {
         if (_splitOrientation != null)
             return _splitOrientation;
-        ValueBinding vb = getValueBinding("orientation");
+        ValueBinding vb = getValueBinding("splitOrientation");
         return vb != null ? (String) vb.getValue(getFacesContext()) : null;
     }
 

Modified: myfaces/tomahawk/trunk/sandbox/core/src/main/java/org/apache/myfaces/custom/dojolayouts/DojoSplitPaneTag.java
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/sandbox/core/src/main/java/org/apache/myfaces/custom/dojolayouts/DojoSplitPaneTag.java?view=diff&rev=441671&r1=441670&r2=441671
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/core/src/main/java/org/apache/myfaces/custom/dojolayouts/DojoSplitPaneTag.java (original)
+++ myfaces/tomahawk/trunk/sandbox/core/src/main/java/org/apache/myfaces/custom/dojolayouts/DojoSplitPaneTag.java Fri Sep  8 15:00:35 2006
@@ -20,11 +20,11 @@
 
 public class DojoSplitPaneTag extends DojoContentPaneTag {
 
-    private static final String TAG_PARAM_ORIENTATION  = "orientation";
+    private static final String TAG_PARAM_ORIENTATION  = "splitOrientation";
 
-    private static final String TAG_PARAM_SIZERWIDTH   = "sizerwidth";
+    private static final String TAG_PARAM_SIZERWIDTH   = "sizerWidth";
 
-    private static final String TAG_PARAM_ACTIVESIZING = "activesizing";
+    private static final String TAG_PARAM_ACTIVESIZING = "activeSizing";
 
     public static final String  TAG_PARAM_Persist     = "persist";