You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by im...@apache.org on 2006/05/19 19:06:12 UTC

svn commit: r407855 - in /myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp: conversation/home.jsp conversation/index.jsp fisheye.jsp home.jsp timedNotifier.jsp

Author: imario
Date: Fri May 19 10:06:11 2006
New Revision: 407855

URL: http://svn.apache.org/viewvc?rev=407855&view=rev
Log:
added missing h:form

Added:
    myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/conversation/home.jsp
      - copied unchanged from r407607, myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/conversation/index.jsp
Removed:
    myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/conversation/index.jsp
Modified:
    myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/fisheye.jsp
    myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/home.jsp
    myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/timedNotifier.jsp

Modified: myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/fisheye.jsp
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/fisheye.jsp?rev=407855&r1=407854&r2=407855&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/fisheye.jsp (original)
+++ myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/fisheye.jsp Fri May 19 10:06:11 2006
@@ -55,7 +55,8 @@
 </style>
 </head>
 <body>
-<f:view>
+<f:view>
+	<h:form>
 	<t:div styleClass="outerbar">
 		<s:fishEyeNavigationMenu itemWidth="50" itemHeight="50" itemMaxWidth="200"
 			itemMaxHeight="200" orientation="horizontal" effectUnits="2"
@@ -84,7 +85,8 @@
 	<t:div styleClass="page">
 		<t:outputText value="#{fisheye.actionName}" />
 		<%@include file="../inc/page_footer.jsp"%>
-	</t:div>
+	</t:div>
+	</h:form>
 </f:view>
 </body>
 </html>

Modified: myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/home.jsp
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/home.jsp?rev=407855&r1=407854&r2=407855&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/home.jsp (original)
+++ myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/home.jsp Fri May 19 10:06:11 2006
@@ -7,7 +7,8 @@
 
     <%@include file="inc/head.inc" %>
 <body>
-    <f:view>
+    <f:view>
+    <h:form>
 
         <h:panelGrid>
             <h:panelGrid id="header_group1" columns="2" styleClass="pageHeader"  >
@@ -105,7 +106,8 @@
            		<h:outputLink value="conversation/index.jsf" ><f:verbatim>Conversation Tag examples</f:verbatim></h:outputLink>
             </h:panelGrid>
             
-        </h:panelGrid>
+        </h:panelGrid>
+    </h:form>
     </f:view>
    
 </body>

Modified: myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/timedNotifier.jsp
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/timedNotifier.jsp?rev=407855&r1=407854&r2=407855&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/timedNotifier.jsp (original)
+++ myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/timedNotifier.jsp Fri May 19 10:06:11 2006
@@ -27,7 +27,8 @@
 //-->
 
 	<body>
-		<f:view>
+		<f:view>
+		<h:form>
 			<h:outputText value="Timed notifier please wait a few seconds for the first dialog"></h:outputText>
 			<s:timedNotifier disabled="false" showDelay="5000" hideDelay="3000" confirmationMessage="5 minutes til timeout, press ok to click me away early" />
 			<s:timedNotifier showDelay="7000" hideDelay="2000">
@@ -43,7 +44,7 @@
 					</h:panelGrid>
 				</f:facet>
 			</s:timedNotifier>
-
+		</h:form>
 		</f:view>
 
 		<%@include file="inc/page_footer.jsp"%>