[java-shib-idp2 COMMIT] in /branches/REL_2: doc/RELEASE-NOTES.txt src/main/webapp/login.jsp
noreply at shibboleth.net
noreply at shibboleth.net
Sun Oct 9 15:48:08 BST 2011
Author: lajoie
Date: Sun Oct 9 15:48:08 2011
New Revision: 3071
URL: http://svn.shibboleth.net/view/java-shib-idp2?rev=3071&view=rev
Log:
Add attribute to j_username input in example login page in order to turn off auto-capitalize on iOS devices - SIDP-520
Modified:
branches/REL_2/doc/RELEASE-NOTES.txt
branches/REL_2/src/main/webapp/login.jsp
Modified: branches/REL_2/doc/RELEASE-NOTES.txt
URL: http://svn.shibboleth.net/view/java-shib-idp2/branches/REL_2/doc/RELEASE-NOTES.txt?rev=3071&r1=3070&r2=3071&view=diff
==============================================================================
--- branches/REL_2/doc/RELEASE-NOTES.txt (original)
+++ branches/REL_2/doc/RELEASE-NOTES.txt Sun Oct 9 15:48:08 2011
@@ -3,6 +3,7 @@
[SIDP-516] - Example login.jsp / Usage of label tag
[SIDP-513] - idpui taglib could look for more languages matches
[SIDP-514] - Alt text for IdP Logos is not esapiEncoder.encodeForHTMLAttribute
+[SIDP-520] - Ipad/iOS devices will auto capitalize text entered into the IdP login screen, which can cause errors. Adding an HTML element will prevent that
[SIDP-522] - supplied examples shouldn't promote federation URIs as relying parties
Changes in Release 2.3.3
Modified: branches/REL_2/src/main/webapp/login.jsp
URL: http://svn.shibboleth.net/view/java-shib-idp2/branches/REL_2/src/main/webapp/login.jsp?rev=3071&r1=3070&r2=3071&view=diff
==============================================================================
--- branches/REL_2/src/main/webapp/login.jsp (original)
+++ branches/REL_2/src/main/webapp/login.jsp Sun Oct 9 15:48:08 2011
@@ -25,7 +25,7 @@
<form action="j_security_check" method="post">
<% } %>
<table>
- <tr><td width="40%"><label for="username">Username:</label></td><td><input name="j_username" type="text" id="username" /></td></tr>
+ <tr><td width="40%"><label for="username">Username:</label></td><td><input name="j_username" type="text" id="username" autocapitalize="off" /></td></tr>
<tr><td><label for="password">Password:</label></td><td><input name="j_password" type="password" id="password" /></td></tr>
<tr><td></td><td><button type="submit" value="Login" >Continue</button></td></tr>
</table></form>
More information about the commits
mailing list