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 2015/04/30 15:01:58 UTC

svn commit: r1676976 - /myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/layout/overview.xhtml

Author: lofwyr
Date: Thu Apr 30 13:01:57 2015
New Revision: 1676976

URL: http://svn.apache.org/r1676976
Log:
fixing base layout

Modified:
    myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/layout/overview.xhtml

Modified: myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/layout/overview.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/layout/overview.xhtml?rev=1676976&r1=1676975&r2=1676976&view=diff
==============================================================================
--- myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/layout/overview.xhtml (original)
+++ myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/layout/overview.xhtml Thu Apr 30 13:01:57 2015
@@ -24,54 +24,56 @@
   <f:view locale="#{clientConfigController.locale}">
     <tc:page applicationIcon="icon/favicon.ico" label="#{overviewBundle.pageTitle} - #{title}" id="page">
 
-<!--
-      <tc:dataAttribute name="tobago-log-level" value="DEBUG"/>
--->
+      <!--
+            <tc:dataAttribute name="tobago-log-level" value="DEBUG"/>
+      -->
 
       <tc:script file="script/demo.js"/>
 
-<!-- it seems this no longer needed with Tobago 3.0
-      <f:facet name="resize">
-        <tc:command immediate="true"/>
-      </f:facet>
--->
+      <!-- it seems this no longer needed with Tobago 3.0
+            <f:facet name="resize">
+              <tc:command immediate="true"/>
+            </f:facet>
+      -->
 
       <tc:header>
         <ui:include src="/menu.xhtml"/>
       </tc:header>
 
-      <f:facet name="layout">
-        <tc:flexLayout rows="100px;*" />
-      </f:facet>
-
-      <tc:panel>
-        <ui:include src="/header.xhtml"/>
-      </tc:panel>
-
       <tc:panel>
         <f:facet name="layout">
-          <tc:flexLayout columns="*;4*" />
+          <tc:flexLayout rows="100px;*"/>
         </f:facet>
 
         <tc:panel>
-          <ui:include src="/navigation.xhtml"/>
+          <ui:include src="/header.xhtml"/>
         </tc:panel>
 
         <tc:panel>
           <f:facet name="layout">
-            <tc:flexLayout rows="auto;*;auto" />
+            <tc:flexLayout columns="*;4*"/>
           </f:facet>
 
-          <tc:messages/>
+          <tc:panel>
+            <ui:include src="/navigation.xhtml"/>
+          </tc:panel>
 
-          <tc:box label="#{title}" id="content">
-            <ui:insert/>
-          </tc:box>
+          <tc:panel>
+            <f:facet name="layout">
+              <tc:flexLayout rows="auto;*;auto"/>
+            </f:facet>
 
-          <ui:include src="/footer.xhtml"/>
+            <tc:messages/>
 
-        </tc:panel>
+            <tc:box label="#{title}" id="content">
+              <ui:insert/>
+            </tc:box>
+
+            <ui:include src="/footer.xhtml"/>
 
+          </tc:panel>
+
+        </tc:panel>
       </tc:panel>
 
     </tc:page>