[seam-commits] Seam SVN: r12337 - modules/security/trunk/examples/seamspace/src/main/webapp.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Tue Mar 30 23:14:33 EDT 2010


Author: shane.bryzak at jboss.com
Date: 2010-03-30 23:14:32 -0400 (Tue, 30 Mar 2010)
New Revision: 12337

Modified:
   modules/security/trunk/examples/seamspace/src/main/webapp/hashgen.xhtml
Log:
fixed hash generator page


Modified: modules/security/trunk/examples/seamspace/src/main/webapp/hashgen.xhtml
===================================================================
--- modules/security/trunk/examples/seamspace/src/main/webapp/hashgen.xhtml	2010-03-31 02:58:12 UTC (rev 12336)
+++ modules/security/trunk/examples/seamspace/src/main/webapp/hashgen.xhtml	2010-03-31 03:14:32 UTC (rev 12337)
@@ -22,26 +22,26 @@
         
         <div class="formRow">
           <h:outputLabel for="password">Enter a password</h:outputLabel>
-          <h:inputText id="password" value="#{hashgenerator.password}" required="true" styleClass="wide"/>
+          <h:inputText id="password" value="#{hashGenerator.password}" required="true" styleClass="wide"/>
           <div class="validationError"><h:message for="password"/></div>
         </div>         
 
         <div class="formRow">
           <h:outputLabel for="salt">Password salt</h:outputLabel>
-          <h:inputText id="salt" value="#{hashgenerator.passwordSalt}" required="false" styleClass="wide"/>
+          <h:inputText id="salt" value="#{hashGenerator.passwordSalt}" required="false" styleClass="wide"/>
           <span>(Leave blank to generate a random salt)</span>
           <div class="validationError"><h:message for="salt"/></div>
         </div>         
         
-        <h:commandButton action="#{hashgenerator.generate}" value="Generate hash"/>                    
+        <h:commandButton action="#{hashGenerator.generate}" value="Generate hash"/>                    
       
       </h:form>
       
       <h2>Results</h2>
       
-      <div>Generated hash (hex encoded): <pre>#{hashgenerator.passwordHash}</pre></div>
+      <div>Generated hash (hex encoded): <pre>#{hashGenerator.passwordHash}</pre></div>
       
-      <div>Example SQL:<br/><textarea style="width:640px;height:50px">#{hashgenerator.sql}</textarea></div>
+      <div>Example SQL:<br/><textarea style="width:640px;height:50px">#{hashGenerator.sql}</textarea></div>
              
     </ui:define>
     



More information about the seam-commits mailing list