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 2009/12/04 17:06:28 UTC

svn commit: r887244 - in /myfaces/tobago/trunk/example/demo/src/main: java/org/apache/myfaces/tobago/example/demo/TobagoDemoController.java webapp/WEB-INF/tags/layout/overview.tagx webapp/WEB-INF/tags/layout/overview.xhtml

Author: lofwyr
Date: Fri Dec  4 16:06:27 2009
New Revision: 887244

URL: http://svn.apache.org/viewvc?rev=887244&view=rev
Log:
demo

Modified:
    myfaces/tobago/trunk/example/demo/src/main/java/org/apache/myfaces/tobago/example/demo/TobagoDemoController.java
    myfaces/tobago/trunk/example/demo/src/main/webapp/WEB-INF/tags/layout/overview.tagx
    myfaces/tobago/trunk/example/demo/src/main/webapp/WEB-INF/tags/layout/overview.xhtml

Modified: myfaces/tobago/trunk/example/demo/src/main/java/org/apache/myfaces/tobago/example/demo/TobagoDemoController.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/demo/src/main/java/org/apache/myfaces/tobago/example/demo/TobagoDemoController.java?rev=887244&r1=887243&r2=887244&view=diff
==============================================================================
--- myfaces/tobago/trunk/example/demo/src/main/java/org/apache/myfaces/tobago/example/demo/TobagoDemoController.java (original)
+++ myfaces/tobago/trunk/example/demo/src/main/java/org/apache/myfaces/tobago/example/demo/TobagoDemoController.java Fri Dec  4 16:06:27 2009
@@ -254,6 +254,7 @@
   }
 
   public void resetSession() throws IOException {
+    LOG.info("Resetting the session.");
     FacesContext facesContext = FacesContext.getCurrentInstance();
     HttpSession session = (HttpSession) facesContext.getExternalContext().getSession(false);
     if (session != null) {

Modified: myfaces/tobago/trunk/example/demo/src/main/webapp/WEB-INF/tags/layout/overview.tagx
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/demo/src/main/webapp/WEB-INF/tags/layout/overview.tagx?rev=887244&r1=887243&r2=887244&view=diff
==============================================================================
--- myfaces/tobago/trunk/example/demo/src/main/webapp/WEB-INF/tags/layout/overview.tagx (original)
+++ myfaces/tobago/trunk/example/demo/src/main/webapp/WEB-INF/tags/layout/overview.tagx Fri Dec  4 16:06:27 2009
@@ -35,17 +35,19 @@
       <jsp:include page="/menu.jsp"/>
       <f:facet name="layout">
         <tc:gridLayout border="0" columns="*;4*"
-                       margin="10px" rows="100px;*;fixed"/>
+                       margin="10px" rows="100px;fixed;*;fixed"/>
       </f:facet>
 
       <tc:cell spanX="2">
         <jsp:include page="/header.jsp"/>
       </tc:cell>
 
-      <tc:cell spanY="2">
+      <tc:cell spanY="3">
         <jsp:include page="/navigation.jsp"/>
       </tc:cell>
 
+      <tc:messages/>
+      
       <tc:cell>
         <jsp:doBody/>
       </tc:cell>

Modified: myfaces/tobago/trunk/example/demo/src/main/webapp/WEB-INF/tags/layout/overview.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/demo/src/main/webapp/WEB-INF/tags/layout/overview.xhtml?rev=887244&r1=887243&r2=887244&view=diff
==============================================================================
--- myfaces/tobago/trunk/example/demo/src/main/webapp/WEB-INF/tags/layout/overview.xhtml (original)
+++ myfaces/tobago/trunk/example/demo/src/main/webapp/WEB-INF/tags/layout/overview.xhtml Fri Dec  4 16:06:27 2009
@@ -30,17 +30,19 @@
 
       <f:facet name="layout">
         <tc:gridLayout border="0" columns="*;4*"
-                       margin="10px" rows="100px;*;fixed"/>
+                       margin="10px" rows="100px;fixed;*;fixed"/>
       </f:facet>
 
       <tc:cell spanX="2">
         <ui:include src="/header.xhtml"/>
       </tc:cell>
 
-      <tc:cell spanY="2">
+      <tc:cell spanY="3">
         <ui:include src="/navigation.xhtml"/>
       </tc:cell>
 
+      <tc:messages/>
+      
       <tc:cell>
         <ui:insert/>
       </tc:cell>