You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ca...@apache.org on 2007/09/01 10:00:53 UTC

svn commit: r571741 - /myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/passwordStrength.jsp

Author: cagatay
Date: Sat Sep  1 01:00:52 2007
New Revision: 571741

URL: http://svn.apache.org/viewvc?rev=571741&view=rev
Log:
svn eol

Modified:
    myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/passwordStrength.jsp   (contents, props changed)

Modified: myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/passwordStrength.jsp
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/passwordStrength.jsp?rev=571741&r1=571740&r2=571741&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/passwordStrength.jsp (original)
+++ myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/passwordStrength.jsp Sat Sep  1 01:00:52 2007
@@ -1,118 +1,118 @@
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://myfaces.apache.org/tomahawk" prefix="t"%>
-<%@ taglib uri="http://myfaces.apache.org/sandbox" prefix="s"%>
-<html>
-
-<!--
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-//-->
-
-<%@include file="inc/head.inc"%>
-
-<body>
-
-<f:view>
-
-	<h:form>
-	   
-	    <table>
-		
-		<tr><td>
-		<h:outputText
-			value="Enter your password" /> 
-		</td>
-		<td>
-			[Preferred password length is 10 Without custom rules]
-		</td>
-		</tr>
-		
-		<tr><td>
-		<h:outputText value="Text Mode" />
-		</td><td>
-		<s:passwordStrength id="txtPwdText" preferredPasswordLength="10"
-			value="#{passwordStrengthBean.password}" prefixText="Strength : "
-			textStrengthDescriptions="Very Poor;Weak;Average;Strong;Excellent" strengthIndicatorType="text"/> 
-		</td></tr>
-
-		<tr><td>
-		<h:outputText value="ProgressBar Mode" />
-		</td><td>		
-		<s:passwordStrength id="txtPrgBarText" preferredPasswordLength="10"
-			value="#{passwordStrengthBean.password}" prefixText="Strength : "
-			textStrengthDescriptions="Very Poor;Weak;Average;Strong;Excellent" strengthIndicatorType="bar"/>
-		</td></tr>			
-			
-	    </table>			
-	    
-	    <br/><br/><br/>
-	    
-	    
-	    <table>
-		
-		<tr><td>
-		<h:outputText
-			value="Enter your password" /> 
-		</td>
-		<td>
-			[Preferred password length is 10 With custom rules (A3S2N3A2)] <br/>
-			Note that (A3S2N3A2) means the password should be : <br/>
-			3 or more Alphabets followed by			 <br/>
-			2 or more Symbols followed by			 <br/> 
-			3 or more Numbers followed by			 <br/>				
-			2 or more Alphabets followed by			 <br/>	
-		</td>
-		</tr>
-		
-		<tr><td>
-		<h:outputText value="Text Mode" />
-		</td><td>
-		<s:passwordStrength id="txtCustomPwdText" preferredPasswordLength="10"
-			value="#{passwordStrengthBean.password}" prefixText="Strength : "
-			textStrengthDescriptions="Very Poor;Weak;Average;Strong;Excellent" 
-			strengthIndicatorType="text" useCustomSecurity="true"
-			customSecurityExpression="A3S2N3A2" penaltyRatio="50"/> 
-		</td></tr>
-
-		<tr><td>
-		<h:outputText value="ProgressBar Mode" />
-		</td><td>		
-		<s:passwordStrength id="txtCustomPrgBarText" preferredPasswordLength="10"
-			value="#{passwordStrengthBean.password}" prefixText="Strength : "
-			textStrengthDescriptions="Very Poor;Weak;Average;Strong;Excellent" 
-			strengthIndicatorType="bar"  useCustomSecurity="true"
-			customSecurityExpression="A3S2N3A2" penaltyRatio="50"/>
-		</td></tr>			
-			
-	    </table>			
-	    
-	    
-	</h:form>
-
-	<%@include file="inc/page_footer.jsp"%>
-
-</f:view>
-
-</body>
-
-</html>
-
-
-
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://myfaces.apache.org/tomahawk" prefix="t"%>
+<%@ taglib uri="http://myfaces.apache.org/sandbox" prefix="s"%>
+<html>
+
+<!--
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+//-->
+
+<%@include file="inc/head.inc"%>
+
+<body>
+
+<f:view>
+
+	<h:form>
+	   
+	    <table>
+		
+		<tr><td>
+		<h:outputText
+			value="Enter your password" /> 
+		</td>
+		<td>
+			[Preferred password length is 10 Without custom rules]
+		</td>
+		</tr>
+		
+		<tr><td>
+		<h:outputText value="Text Mode" />
+		</td><td>
+		<s:passwordStrength id="txtPwdText" preferredPasswordLength="10"
+			value="#{passwordStrengthBean.password}" prefixText="Strength : "
+			textStrengthDescriptions="Very Poor;Weak;Average;Strong;Excellent" strengthIndicatorType="text"/> 
+		</td></tr>
+
+		<tr><td>
+		<h:outputText value="ProgressBar Mode" />
+		</td><td>		
+		<s:passwordStrength id="txtPrgBarText" preferredPasswordLength="10"
+			value="#{passwordStrengthBean.password}" prefixText="Strength : "
+			textStrengthDescriptions="Very Poor;Weak;Average;Strong;Excellent" strengthIndicatorType="bar"/>
+		</td></tr>			
+			
+	    </table>			
+	    
+	    <br/><br/><br/>
+	    
+	    
+	    <table>
+		
+		<tr><td>
+		<h:outputText
+			value="Enter your password" /> 
+		</td>
+		<td>
+			[Preferred password length is 10 With custom rules (A3S2N3A2)] <br/>
+			Note that (A3S2N3A2) means the password should be : <br/>
+			3 or more Alphabets followed by			 <br/>
+			2 or more Symbols followed by			 <br/> 
+			3 or more Numbers followed by			 <br/>				
+			2 or more Alphabets followed by			 <br/>	
+		</td>
+		</tr>
+		
+		<tr><td>
+		<h:outputText value="Text Mode" />
+		</td><td>
+		<s:passwordStrength id="txtCustomPwdText" preferredPasswordLength="10"
+			value="#{passwordStrengthBean.password}" prefixText="Strength : "
+			textStrengthDescriptions="Very Poor;Weak;Average;Strong;Excellent" 
+			strengthIndicatorType="text" useCustomSecurity="true"
+			customSecurityExpression="A3S2N3A2" penaltyRatio="50"/> 
+		</td></tr>
+
+		<tr><td>
+		<h:outputText value="ProgressBar Mode" />
+		</td><td>		
+		<s:passwordStrength id="txtCustomPrgBarText" preferredPasswordLength="10"
+			value="#{passwordStrengthBean.password}" prefixText="Strength : "
+			textStrengthDescriptions="Very Poor;Weak;Average;Strong;Excellent" 
+			strengthIndicatorType="bar"  useCustomSecurity="true"
+			customSecurityExpression="A3S2N3A2" penaltyRatio="50"/>
+		</td></tr>			
+			
+	    </table>			
+	    
+	    
+	</h:form>
+
+	<%@include file="inc/page_footer.jsp"%>
+
+</f:view>
+
+</body>
+
+</html>
+
+
+

Propchange: myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/passwordStrength.jsp
------------------------------------------------------------------------------
    svn:eol-style = native