You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwebbeans.apache.org by ge...@apache.org on 2009/01/26 21:03:52 UTC

svn commit: r737808 - /incubator/openwebbeans/trunk/samples/guess/src/main/webapp/home.xhtml

Author: gerdogdu
Date: Mon Jan 26 20:03:52 2009
New Revision: 737808

URL: http://svn.apache.org/viewvc?rev=737808&view=rev
Log:
Update test home page.

Modified:
    incubator/openwebbeans/trunk/samples/guess/src/main/webapp/home.xhtml

Modified: incubator/openwebbeans/trunk/samples/guess/src/main/webapp/home.xhtml
URL: http://svn.apache.org/viewvc/incubator/openwebbeans/trunk/samples/guess/src/main/webapp/home.xhtml?rev=737808&r1=737807&r2=737808&view=diff
==============================================================================
--- incubator/openwebbeans/trunk/samples/guess/src/main/webapp/home.xhtml (original)
+++ incubator/openwebbeans/trunk/samples/guess/src/main/webapp/home.xhtml Mon Jan 26 20:03:52 2009
@@ -12,7 +12,7 @@
   
   <div id="container">
     <div id="content">
-        <h:form id="NumberGuessMain">			       
+        <h:form>			       
 
 	   	<div align="right">
 			<h:commandLink value="Logout" action="#{logoutBean.logout}" immediate="true"></h:commandLink>
@@ -22,31 +22,7 @@
 			<h:outputText value="Hello #{currentUser.userName} #{currentUser.password}"></h:outputText>
 		</h2>
     	
-       <h1>Please guess a number...</h1>
-   
-          <div style="color: red">
-             <h:messages id="messages" globalOnly="true"/>
-             <h:outputText id="higher" value="Higher..." rendered="#{game.number gt game.guess}"/>
-             <h:outputText id="lower" value="Lower..." rendered="#{game.number lt game.guess}"/>
-          </div>
-   
-          <div>
-             Please guess a number between #{game.smallest} and #{game.biggest}. Your remaining guesses : #{game.remainingGuesses}.
-          </div>
-     
-          <div>
-             Your guessed number: 
-             <h:inputText id="inputGuess" value="#{game.guess}" required="true" size="3">
-                <f:validateLongRange maximum="#{game.biggest}" minimum="#{game.smallest}"/>
-             </h:inputText>
-            <h:commandButton id="GuessButton" value="Guess Number" action="#{game.checkNumber}"/>
-            <h:commandButton id="Restart" value="Restart" action="#{game.clear}"/>
-          </div>
-   
-          <div>
-             <h:message id="message" for="inputGuess" style="color: red"/>
-          </div>
-       </h:form>
+        </h:form>
 		
     </div>