You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2011/11/01 11:34:45 UTC

svn commit: r1195920 - in /myfaces/tobago/trunk/tobago-example: tobago-example-experimental/src/main/webapp/ tobago-example-portlet/src/main/webapp/ tobago-example-sandbox/src/main/webapp/ tobago-example-sandbox/src/main/webapp/WEB-INF/tags/layout/ tob...

Author: lofwyr
Date: Tue Nov  1 10:34:44 2011
New Revision: 1195920

URL: http://svn.apache.org/viewvc?rev=1195920&view=rev
Log:
TOBAGO-606: LayoutManager
 - using "auto" instead of "fixed"

Modified:
    myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/fileUpload.jsp
    myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/layout.jsp
    myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/menu.jsp
    myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/messages.jsp
    myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/partial.jsp
    myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/popup.jsp
    myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/popup2.jsp
    myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/renderedPartially.jsp
    myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/selectOneChoice.jsp
    myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/solarDetail.jsp
    myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/solarList2.jsp
    myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/span.jsp
    myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/span2.jsp
    myfaces/tobago/trunk/tobago-example/tobago-example-portlet/src/main/webapp/hello.jsp
    myfaces/tobago/trunk/tobago-example/tobago-example-portlet/src/main/webapp/index.jsp
    myfaces/tobago/trunk/tobago-example/tobago-example-sandbox/src/main/webapp/WEB-INF/tags/layout/wizard.tag
    myfaces/tobago/trunk/tobago-example/tobago-example-sandbox/src/main/webapp/inputSlider.jsp
    myfaces/tobago/trunk/tobago-example/tobago-example-sandbox/src/main/webapp/navigation.jsp
    myfaces/tobago/trunk/tobago-example/tobago-example-seam/src/main/webapp/tobago.xhtml
    myfaces/tobago/trunk/tobago-example/tobago-example-security/src/main/webapp/application/admin.jsp
    myfaces/tobago/trunk/tobago-example/tobago-example-security/src/main/webapp/application/index.jsp
    myfaces/tobago/trunk/tobago-example/tobago-example-security/src/main/webapp/auth/error.jsp
    myfaces/tobago/trunk/tobago-example/tobago-example-security/src/main/webapp/public.jsp

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/fileUpload.jsp
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/fileUpload.jsp?rev=1195920&r1=1195919&r2=1195920&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/fileUpload.jsp (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/fileUpload.jsp Tue Nov  1 10:34:44 2011
@@ -38,7 +38,7 @@
       <tc:cell spanX="2">
         <tc:panel>
           <f:facet name="layout">
-            <tc:gridLayout columns="*;fixed;*" rows="20px"/>
+            <tc:gridLayout columns="*;auto;*" rows="20px"/>
           </f:facet>
           <tc:cell />
           <tc:button label="Submit" defaultCommand="true" />
@@ -48,4 +48,4 @@
     </tc:box>
     <%--/tc:panel--%>
   </tc:page>
-</f:view>
\ No newline at end of file
+</f:view>

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/layout.jsp
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/layout.jsp?rev=1195920&r1=1195919&r2=1195920&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/layout.jsp (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/layout.jsp Tue Nov  1 10:34:44 2011
@@ -22,13 +22,13 @@
   <tc:page >
     <tc:panel>
       <f:facet name="layout">
-        <tc:gridLayout margin="10px" rows="1*;fixed;1*" />
+        <tc:gridLayout margin="10px" rows="1*;auto;1*" />
       </f:facet>
 
       <tc:box label="the outer box">
 
         <f:facet name="layout">
-          <tc:gridLayout margin="10px" rows="fixed;fixed;fixed;fixed" />
+          <tc:gridLayout margin="10px" rows="auto;auto;auto;auto" />
         </f:facet>
 
         <tc:messages />

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/menu.jsp
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/menu.jsp?rev=1195920&r1=1195919&r2=1195920&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/menu.jsp (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/menu.jsp Tue Nov  1 10:34:44 2011
@@ -24,7 +24,7 @@
 
     <tc:box label="Menu">
       <f:facet name="layout">
-        <tc:gridLayout rows="fixed;*"/>
+        <tc:gridLayout rows="auto;*"/>
       </f:facet>
       <f:facet name="menuBar">
         <tc:menuBar>

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/messages.jsp
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/messages.jsp?rev=1195920&r1=1195919&r2=1195920&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/messages.jsp (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/messages.jsp Tue Nov  1 10:34:44 2011
@@ -23,7 +23,7 @@
   <tc:page id="page" width="400">
     <tc:panel>
       <f:facet name="layout">
-        <tc:gridLayout margin="10px" rows="fixed;fixed;fixed;fixed;*"/>
+        <tc:gridLayout margin="10px" rows="auto;auto;auto;auto;*"/>
       </f:facet>
 
       <tx:date id="validityStart"

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/partial.jsp
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/partial.jsp?rev=1195920&r1=1195919&r2=1195920&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/partial.jsp (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/partial.jsp Tue Nov  1 10:34:44 2011
@@ -25,12 +25,12 @@
 
     <tc:panel>
       <f:facet name="layout">
-        <tc:gridLayout margin="10px" rows="fixed;*;fixed"/>
+        <tc:gridLayout margin="10px" rows="auto;*;auto"/>
       </f:facet>
 
       <tc:box label="Test" id="panel">
         <f:facet name="layout">
-          <tc:gridLayout rows="fixed" columns="*;2*"/>
+          <tc:gridLayout rows="auto" columns="*;2*"/>
         </f:facet>
         <tc:form>
           <tx:selectBooleanCheckbox label="Don't process" value="#{controller.suppressProcessing}">

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/popup.jsp
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/popup.jsp?rev=1195920&r1=1195919&r2=1195920&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/popup.jsp (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/popup.jsp Tue Nov  1 10:34:44 2011
@@ -31,7 +31,7 @@
               label="Popup">
               <f:facet name="layout">
                 <tc:gridLayout
-                  rows="40px;40px;1*;fixed"
+                  rows="40px;40px;1*;auto"
                   columns="*"/>
               </f:facet>
 
@@ -44,7 +44,7 @@
 
               <tc:panel id="buttonPanel">
                 <f:facet name="layout">
-                  <tc:gridLayout rows="fixed"
+                  <tc:gridLayout rows="auto"
                     columns="*;*;*"/>
                 </f:facet>
                 <tc:button id="button1"
@@ -66,4 +66,4 @@
       </tc:button>
     </tc:panel>
   </tc:page>
-</f:view>
\ No newline at end of file
+</f:view>

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/popup2.jsp
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/popup2.jsp?rev=1195920&r1=1195919&r2=1195920&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/popup2.jsp (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/popup2.jsp Tue Nov  1 10:34:44 2011
@@ -29,7 +29,7 @@
 
            <tc:box id="box" label="Popup">
                <f:facet name="layout">
-                 <tc:gridLayout rows="*;fixed;fixed;fixed;54px;fixed" columns="*;*;*"/>
+                 <tc:gridLayout rows="*;auto;auto;auto;54px;auto" columns="*;*;*"/>
                </f:facet>
                <tc:cell spanX="3">
                  <tc:out value="Text"/>
@@ -69,4 +69,4 @@
      </tc:button>
    </tc:panel>
  </tc:page>
-</f:view>  
\ No newline at end of file
+</f:view>  

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/renderedPartially.jsp
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/renderedPartially.jsp?rev=1195920&r1=1195919&r2=1195920&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/renderedPartially.jsp (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/renderedPartially.jsp Tue Nov  1 10:34:44 2011
@@ -23,7 +23,7 @@
   <tc:page >
     <tc:panel id="panel">
       <f:facet name="layout">
-        <tc:gridLayout margin="10px" rows="fixed;fixed;1*" columns="fixed;fixed;*"/>
+        <tc:gridLayout margin="10px" rows="auto;auto;1*" columns="auto;auto;*"/>
       </f:facet>
         <tc:selectOneChoice value="#{controller.value}" >
           <f:selectItem itemValue="Audi" itemLabel="Audi"/>
@@ -40,4 +40,4 @@
         <tc:cell/>
     </tc:panel>
   </tc:page>
-</f:view>
\ No newline at end of file
+</f:view>

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/selectOneChoice.jsp
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/selectOneChoice.jsp?rev=1195920&r1=1195919&r2=1195920&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/selectOneChoice.jsp (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/selectOneChoice.jsp Tue Nov  1 10:34:44 2011
@@ -23,7 +23,7 @@
   <tc:page >
     <tc:panel id="panel">
       <f:facet name="layout">
-        <tc:gridLayout margin="10px" rows="fixed;fixed;1*" columns="fixed;fixed;*"/>
+        <tc:gridLayout margin="10px" rows="auto;auto;1*" columns="auto;auto;*"/>
       </f:facet>
       <tc:selectOneChoice value="#{controller.date}" >
         <f:selectItems value="#{controller.dateItems}"/>
@@ -38,4 +38,4 @@
       <tc:cell/>
     </tc:panel>
   </tc:page>
-</f:view>
\ No newline at end of file
+</f:view>

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/solarDetail.jsp
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/solarDetail.jsp?rev=1195920&r1=1195919&r2=1195920&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/solarDetail.jsp (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/solarDetail.jsp Tue Nov  1 10:34:44 2011
@@ -24,7 +24,7 @@
     </f:facet>
     <tc:box >
        <f:facet name="layout">
-          <tc:gridLayout columns="1*" rows="fixed;fixed;fixed;fixed;fixed;fixed;fixed;fixed;fixed;*;fixed"/>
+          <tc:gridLayout columns="1*" rows="auto;auto;auto;auto;auto;auto;auto;auto;auto;*;auto"/>
         </f:facet>
        <tx:in value="#{test.name}" label="Name" readonly="true" />
        <tx:in value="#{test.number}" label="Number" readonly="true" />

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/solarList2.jsp
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/solarList2.jsp?rev=1195920&r1=1195919&r2=1195920&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/solarList2.jsp (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/solarList2.jsp Tue Nov  1 10:34:44 2011
@@ -28,7 +28,7 @@
     </tc:box>
     <tc:panel>
       <f:facet name="layout">
-        <tc:gridLayout columns="1*;fixed;1*"/>
+        <tc:gridLayout columns="1*;auto;1*"/>
       </f:facet>
       <tc:cell/>
       <tc:button action="#{test.export}" label="Export" transition="false" />

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/span.jsp
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/span.jsp?rev=1195920&r1=1195919&r2=1195920&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/span.jsp (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/span.jsp Tue Nov  1 10:34:44 2011
@@ -23,7 +23,7 @@
   <tc:page >
     <tc:panel>
       <f:facet name="layout">
-        <tc:gridLayout margin="10px" rows="fixed;fixed;1*" columns="fixed;fixed"/>
+        <tc:gridLayout margin="10px" rows="auto;auto;1*" columns="auto;auto"/>
       </f:facet>
 
         <tc:cell spanY="2">
@@ -35,4 +35,4 @@
         <tc:cell/>
     </tc:panel>
   </tc:page>
-</f:view>
\ No newline at end of file
+</f:view>

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/span2.jsp
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/span2.jsp?rev=1195920&r1=1195919&r2=1195920&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/span2.jsp (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-experimental/src/main/webapp/span2.jsp Tue Nov  1 10:34:44 2011
@@ -23,7 +23,7 @@
   <tc:page >
     <tc:panel>
       <f:facet name="layout">
-        <tc:gridLayout margin="10px" rows="fixed;fixed;1*" columns="fixed;fixed"/>
+        <tc:gridLayout margin="10px" rows="auto;auto;1*" columns="auto;auto"/>
       </f:facet>
 
         <tc:cell spanY="2">
@@ -38,4 +38,4 @@
         <tc:cell/>
     </tc:panel>
   </tc:page>
-</f:view>
\ No newline at end of file
+</f:view>

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-portlet/src/main/webapp/hello.jsp
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-portlet/src/main/webapp/hello.jsp?rev=1195920&r1=1195919&r2=1195920&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-portlet/src/main/webapp/hello.jsp (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-portlet/src/main/webapp/hello.jsp Tue Nov  1 10:34:44 2011
@@ -22,7 +22,7 @@
 <f:view>
   <tc:page width="300px" height="50px">
     <f:facet name="layout">
-      <tc:gridLayout columns="*;fixed" rows="fixed;*"/>
+      <tc:gridLayout columns="*;auto" rows="auto;*"/>
     </f:facet>
     <tc:out value="Hello #{user.name}!"/>
     <tc:button action="helloWorld" label="Return"/>

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-portlet/src/main/webapp/index.jsp
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-portlet/src/main/webapp/index.jsp?rev=1195920&r1=1195919&r2=1195920&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-portlet/src/main/webapp/index.jsp (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-portlet/src/main/webapp/index.jsp Tue Nov  1 10:34:44 2011
@@ -22,7 +22,7 @@
 <f:view>
   <tc:page width="300px" height="50px">
     <f:facet name="layout">
-      <tc:gridLayout columns="*;fixed" rows="fixed;*"/>
+      <tc:gridLayout columns="*;auto" rows="auto;*"/>
     </f:facet>
     <tx:in label="Your Name" tip="Please enter your name here!" value="#{user.name}"/>
     <tc:button action="sayHello" label="Click Here"/>

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-sandbox/src/main/webapp/WEB-INF/tags/layout/wizard.tag
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-sandbox/src/main/webapp/WEB-INF/tags/layout/wizard.tag?rev=1195920&r1=1195919&r2=1195920&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-sandbox/src/main/webapp/WEB-INF/tags/layout/wizard.tag (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-sandbox/src/main/webapp/WEB-INF/tags/layout/wizard.tag Tue Nov  1 10:34:44 2011
@@ -24,7 +24,7 @@
 
   <tc:page label="Sandbox - Wizard" id="page" width="500px" height="300px">
     <f:facet name="layout">
-      <tc:gridLayout margin="10px" rows="20px;*"/>  <!-- 20px shoud be replaced with fixed -->
+      <tc:gridLayout margin="10px" rows="20px;*"/>  <!-- 20px shoud be replaced with auto -->
     </f:facet>
 
     <tc:messages/>

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-sandbox/src/main/webapp/inputSlider.jsp
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-sandbox/src/main/webapp/inputSlider.jsp?rev=1195920&r1=1195919&r2=1195920&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-sandbox/src/main/webapp/inputSlider.jsp (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-sandbox/src/main/webapp/inputSlider.jsp Tue Nov  1 10:34:44 2011
@@ -28,7 +28,7 @@
     </f:facet>
     <tc:box label="InputSlider (problems: scriptaculous was removed, no layout manager)">
       <f:facet name="layout">
-        <tc:gridLayout columns="3*;*" rows="fixed;*"/>
+        <tc:gridLayout columns="3*;*" rows="auto;*"/>
       </f:facet>
       <tcs:numberSlider value="#{controller.sliderValue}" min="0" max="200">
       </tcs:numberSlider>

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-sandbox/src/main/webapp/navigation.jsp
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-sandbox/src/main/webapp/navigation.jsp?rev=1195920&r1=1195919&r2=1195920&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-sandbox/src/main/webapp/navigation.jsp (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-sandbox/src/main/webapp/navigation.jsp Tue Nov  1 10:34:44 2011
@@ -23,7 +23,7 @@
 
   <tc:page label="Sandbox Menu" id="page" width="200px" height="800px">
     <f:facet name="layout">
-      <tc:gridLayout margin="5px" rows="fixed;fixed;fixed;fixed;fixed;fixed;fixed;fixed;fixed;*"/>
+      <tc:gridLayout margin="5px" rows="auto;auto;auto;auto;auto;auto;auto;auto;auto;*"/>
     </f:facet>
 
     <tc:link link="inputSlider.jsp" label="inputSlider.jsp" target="View"/>

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-seam/src/main/webapp/tobago.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-seam/src/main/webapp/tobago.xhtml?rev=1195920&r1=1195919&r2=1195920&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-seam/src/main/webapp/tobago.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-seam/src/main/webapp/tobago.xhtml Tue Nov  1 10:34:44 2011
@@ -26,7 +26,7 @@
   <tc:page>
     <tc:box label="test">
       <f:facet name="layout">
-        <tc:gridLayout rows="fixed;fixed;*"/>
+        <tc:gridLayout rows="auto;auto;*"/>
       </f:facet>
       <tc:out value="content"/>
       <tc:button label="create new issue" action="#{issue.init}"/>

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-security/src/main/webapp/application/admin.jsp
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-security/src/main/webapp/application/admin.jsp?rev=1195920&r1=1195919&r2=1195920&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-security/src/main/webapp/application/admin.jsp (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-security/src/main/webapp/application/admin.jsp Tue Nov  1 10:34:44 2011
@@ -22,7 +22,7 @@
   <jsp:body>
     <tc:panel>
       <f:facet name="layout">
-        <tc:gridLayout columns="*;100px;*" rows="fixed;*;fixed;*"/>
+        <tc:gridLayout columns="*;100px;*" rows="auto;*;auto;*"/>
       </f:facet>
 
       <tc:cell spanX="3">

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-security/src/main/webapp/application/index.jsp
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-security/src/main/webapp/application/index.jsp?rev=1195920&r1=1195919&r2=1195920&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-security/src/main/webapp/application/index.jsp (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-security/src/main/webapp/application/index.jsp Tue Nov  1 10:34:44 2011
@@ -22,7 +22,7 @@
   <jsp:body>
     <tc:panel>
       <f:facet name="layout">
-        <tc:gridLayout columns="*;100px;*" rows="fixed;*;fixed;*"/>
+        <tc:gridLayout columns="*;100px;*" rows="auto;*;auto;*"/>
       </f:facet>
 
       <tc:cell spanX="3">

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-security/src/main/webapp/auth/error.jsp
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-security/src/main/webapp/auth/error.jsp?rev=1195920&r1=1195919&r2=1195920&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-security/src/main/webapp/auth/error.jsp (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-security/src/main/webapp/auth/error.jsp Tue Nov  1 10:34:44 2011
@@ -22,7 +22,7 @@
   <jsp:body>
     <tc:box label="Login Error">
       <f:facet name="layout">
-        <tc:gridLayout rows="*;fixed"/>
+        <tc:gridLayout rows="*;auto"/>
       </f:facet>
 
       <tc:out value="Your Login Name or Password is wrong"/>

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-security/src/main/webapp/public.jsp
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-security/src/main/webapp/public.jsp?rev=1195920&r1=1195919&r2=1195920&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-security/src/main/webapp/public.jsp (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-security/src/main/webapp/public.jsp Tue Nov  1 10:34:44 2011
@@ -22,7 +22,7 @@
   <jsp:body>
     <tc:panel>
       <f:facet name="layout">
-        <tc:gridLayout columns="*;100px;*" rows="fixed;*;fixed;fixed;*"/>
+        <tc:gridLayout columns="*;100px;*" rows="auto;*;auto;auto;*"/>
       </f:facet>
 
       <tc:cell spanX="3">