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/18 08:25:02 UTC

svn commit: r407472 - /myfaces/tomahawk/trunk/examples/simple/src/main/webapp/

Author: imario
Date: Wed May 17 23:25:01 2006
New Revision: 407472

URL: http://svn.apache.org/viewvc?rev=407472&view=rev
Log:
added h:form to get rid of dummyForm stuff

Modified:
    myfaces/tomahawk/trunk/examples/simple/src/main/webapp/buffer.jsp
    myfaces/tomahawk/trunk/examples/simple/src/main/webapp/dataScroller.jsp
    myfaces/tomahawk/trunk/examples/simple/src/main/webapp/dataTable.jsp
    myfaces/tomahawk/trunk/examples/simple/src/main/webapp/home.jsp
    myfaces/tomahawk/trunk/examples/simple/src/main/webapp/jscookmenu.jsp
    myfaces/tomahawk/trunk/examples/simple/src/main/webapp/jslistener.jsp
    myfaces/tomahawk/trunk/examples/simple/src/main/webapp/sample1.jsp
    myfaces/tomahawk/trunk/examples/simple/src/main/webapp/tabbedPane.jsp
    myfaces/tomahawk/trunk/examples/simple/src/main/webapp/tree2ExpandAll.jsp
    myfaces/tomahawk/trunk/examples/simple/src/main/webapp/tree2HideRoot.jsp
    myfaces/tomahawk/trunk/examples/simple/src/main/webapp/tree2NiceWrap.jsp
    myfaces/tomahawk/trunk/examples/simple/src/main/webapp/tree2NoNav.jsp

Modified: myfaces/tomahawk/trunk/examples/simple/src/main/webapp/buffer.jsp
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/examples/simple/src/main/webapp/buffer.jsp?rev=407472&r1=407471&r2=407472&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/examples/simple/src/main/webapp/buffer.jsp (original)
+++ myfaces/tomahawk/trunk/examples/simple/src/main/webapp/buffer.jsp Wed May 17 23:25:01 2006
@@ -27,6 +27,7 @@
 <body>
 
 <f:view>
+<h:form>
 
     <f:loadBundle basename="org.apache.myfaces.examples.resource.example_messages" var="example_messages"/>
      
@@ -153,6 +154,7 @@
     <h:outputText value="#{table}" escape="false"/>
     <h:outputText value="#{tableScroller}" escape="false"/>
 
+</h:form>
 </f:view>
 
 <%@include file="inc/page_footer.jsp" %>

Modified: myfaces/tomahawk/trunk/examples/simple/src/main/webapp/dataScroller.jsp
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/examples/simple/src/main/webapp/dataScroller.jsp?rev=407472&r1=407471&r2=407472&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/examples/simple/src/main/webapp/dataScroller.jsp (original)
+++ myfaces/tomahawk/trunk/examples/simple/src/main/webapp/dataScroller.jsp Wed May 17 23:25:01 2006
@@ -28,6 +28,7 @@
 <body>
 
 <f:view>
+<h:form>
 
     <f:loadBundle basename="org.apache.myfaces.examples.resource.example_messages" var="example_messages"/>
 
@@ -123,6 +124,7 @@
     </h:panelGroup>
     <t:commandLink value="test" immediate="true" />
         
+</h:form>
 </f:view>
 
 <%@include file="inc/page_footer.jsp" %>

Modified: myfaces/tomahawk/trunk/examples/simple/src/main/webapp/dataTable.jsp
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/examples/simple/src/main/webapp/dataTable.jsp?rev=407472&r1=407471&r2=407472&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/examples/simple/src/main/webapp/dataTable.jsp (original)
+++ myfaces/tomahawk/trunk/examples/simple/src/main/webapp/dataTable.jsp Wed May 17 23:25:01 2006
@@ -32,6 +32,7 @@
 -->
 
 <f:view>
+<h:form>
 
     <f:loadBundle basename="org.apache.myfaces.examples.resource.example_messages" var="example_messages"/>
 
@@ -121,6 +122,7 @@
 
     </t:panelLayout>
 
+</h:form>
 </f:view>
 
 </body>

Modified: myfaces/tomahawk/trunk/examples/simple/src/main/webapp/home.jsp
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/examples/simple/src/main/webapp/home.jsp?rev=407472&r1=407471&r2=407472&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/examples/simple/src/main/webapp/home.jsp (original)
+++ myfaces/tomahawk/trunk/examples/simple/src/main/webapp/home.jsp Wed May 17 23:25:01 2006
@@ -9,6 +9,7 @@
     <body>
 
         <f:view>
+        <h:form>
     
             <f:loadBundle basename="org.apache.myfaces.examples.resource.example_messages" var="example_messages"/>
 
@@ -82,6 +83,7 @@
 
             </h:panelGrid>
 
+		</h:form>
         </f:view>
     </body>
 </html>

Modified: myfaces/tomahawk/trunk/examples/simple/src/main/webapp/jscookmenu.jsp
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/examples/simple/src/main/webapp/jscookmenu.jsp?rev=407472&r1=407471&r2=407472&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/examples/simple/src/main/webapp/jscookmenu.jsp (original)
+++ myfaces/tomahawk/trunk/examples/simple/src/main/webapp/jscookmenu.jsp Wed May 17 23:25:01 2006
@@ -28,6 +28,7 @@
 <body>
 
 <f:view>
+	<h:form>
 	<f:loadBundle
 		basename="org.apache.myfaces.examples.resource.example_messages"
 		var="example_messages" />
@@ -104,7 +105,7 @@
     <t:jscookMenu id="menu2" layout="hbr" theme="ThemeOffice" styleLocation="css/jscookmenu">
         <t:navigationMenuItems id="navitems" value="#{navigationMenu.panelNavigationItems}" />
     </t:jscookMenu>
-
+</h:form>
 </f:view>
 
 <%@include file="inc/page_footer.jsp"%>

Modified: myfaces/tomahawk/trunk/examples/simple/src/main/webapp/jslistener.jsp
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/examples/simple/src/main/webapp/jslistener.jsp?rev=407472&r1=407471&r2=407472&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/examples/simple/src/main/webapp/jslistener.jsp (original)
+++ myfaces/tomahawk/trunk/examples/simple/src/main/webapp/jslistener.jsp Wed May 17 23:25:01 2006
@@ -29,6 +29,7 @@
 <body>
 
 <f:view>
+<h:form>
 
     <h:panelGrid columns="2">
         <h:outputLabel for="text1" value="Text:"/>
@@ -58,6 +59,7 @@
         <h:inputText id="selone_menu_subcolors"/>
     </h:panelGrid>
 
+</h:form>
 </f:view>
 
 <%@include file="inc/page_footer.jsp" %>

Modified: myfaces/tomahawk/trunk/examples/simple/src/main/webapp/sample1.jsp
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/examples/simple/src/main/webapp/sample1.jsp?rev=407472&r1=407471&r2=407472&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/examples/simple/src/main/webapp/sample1.jsp (original)
+++ myfaces/tomahawk/trunk/examples/simple/src/main/webapp/sample1.jsp Wed May 17 23:25:01 2006
@@ -134,7 +134,9 @@
         </f:verbatim>
 
         <f:verbatim><br></f:verbatim>
-        <h:commandLink id="jump_home" action="#{ucaseForm.jumpHome}" ><f:verbatim>Go Home</f:verbatim></h:commandLink>
+        <h:form>
+	        <h:commandLink id="jump_home" action="#{ucaseForm.jumpHome}" ><f:verbatim>Go Home</f:verbatim></h:commandLink>
+        </h:form>
 
     </h:panelGroup>
 

Modified: myfaces/tomahawk/trunk/examples/simple/src/main/webapp/tabbedPane.jsp
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/examples/simple/src/main/webapp/tabbedPane.jsp?rev=407472&r1=407471&r2=407472&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/examples/simple/src/main/webapp/tabbedPane.jsp (original)
+++ myfaces/tomahawk/trunk/examples/simple/src/main/webapp/tabbedPane.jsp Wed May 17 23:25:01 2006
@@ -27,7 +27,8 @@
 
 <body>
 
-<f:view>
+<f:view>
+<h:form>
 
     <t:saveState id="ss1" value="#{tabbedPaneBean}" />
 
@@ -175,7 +176,8 @@
 	
 	    </t:panelTabbedPane>
 	</f:subview>
-
+
+</h:form>
 </f:view>
 
 <%@include file="inc/page_footer.jsp" %>

Modified: myfaces/tomahawk/trunk/examples/simple/src/main/webapp/tree2ExpandAll.jsp
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/examples/simple/src/main/webapp/tree2ExpandAll.jsp?rev=407472&r1=407471&r2=407472&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/examples/simple/src/main/webapp/tree2ExpandAll.jsp (original)
+++ myfaces/tomahawk/trunk/examples/simple/src/main/webapp/tree2ExpandAll.jsp Wed May 17 23:25:01 2006
@@ -25,8 +25,9 @@
 
 <body>
 
-<f:view>
-
+<f:view>
+
+	<h:form>
     <span style="font-family:verdana">
         <b>Tree2 w/expand all</b><br/>
     </span>
@@ -68,7 +69,8 @@
                 </h:commandLink>
             </h:panelGroup>
         </f:facet>
-    </t:tree2>
+    </t:tree2>
+    </h:form>
 
     <br/>
 

Modified: myfaces/tomahawk/trunk/examples/simple/src/main/webapp/tree2HideRoot.jsp
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/examples/simple/src/main/webapp/tree2HideRoot.jsp?rev=407472&r1=407471&r2=407472&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/examples/simple/src/main/webapp/tree2HideRoot.jsp (original)
+++ myfaces/tomahawk/trunk/examples/simple/src/main/webapp/tree2HideRoot.jsp Wed May 17 23:25:01 2006
@@ -26,6 +26,7 @@
 <body>
 
 <f:view>
+<h:form>
 
     <span style="font-family:verdana">
         <b>Tree2 w/showRootNode=false</b><br/>
@@ -79,6 +80,7 @@
         </f:facet>
     </t:tree2>
 
+</h:form>
 </f:view>
 
 <%@include file="inc/page_footer.jsp" %>

Modified: myfaces/tomahawk/trunk/examples/simple/src/main/webapp/tree2NiceWrap.jsp
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/examples/simple/src/main/webapp/tree2NiceWrap.jsp?rev=407472&r1=407471&r2=407472&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/examples/simple/src/main/webapp/tree2NiceWrap.jsp (original)
+++ myfaces/tomahawk/trunk/examples/simple/src/main/webapp/tree2NiceWrap.jsp Wed May 17 23:25:01 2006
@@ -26,6 +26,7 @@
 <body>
 
 <f:view>
+<h:form>
 
     <span style="font-family:verdana">
         <b>Tree2 w/nice wrap</b><br/>
@@ -73,6 +74,7 @@
         </t:tree2>
     </h:panelGrid>
     
+</h:form>    
 </f:view>
 
 <%@include file="inc/page_footer.jsp" %>

Modified: myfaces/tomahawk/trunk/examples/simple/src/main/webapp/tree2NoNav.jsp
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/examples/simple/src/main/webapp/tree2NoNav.jsp?rev=407472&r1=407471&r2=407472&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/examples/simple/src/main/webapp/tree2NoNav.jsp (original)
+++ myfaces/tomahawk/trunk/examples/simple/src/main/webapp/tree2NoNav.jsp Wed May 17 23:25:01 2006
@@ -25,7 +25,8 @@
 
 <body>
 
-<f:view>
+<f:view>
+<h:form>
 
     <t:tree2 id="serverTree" value="#{treeBacker.treeData}" var="node" varNodeToggler="t" clientSideToggle="false" showNav="false">
         <f:facet name="person">
@@ -70,7 +71,8 @@
             </h:panelGroup>
         </f:facet>
     </t:tree2>
-
+
+</h:form>
 </f:view>
 
 <%@include file="inc/page_footer.jsp" %>