[java-idp-testbed COMMIT] /trunk/src/main/webapp/index.html

noreply at shibboleth.net noreply at shibboleth.net
Tue Jun 23 12:27:50 EDT 2015


Author: tzeller
Date: Tue Jun 23 12:27:50 2015
New Revision: 314

URL: http://svn.shibboleth.net/view/java-idp-testbed?rev=314&view=rev
Log:
Minor rearrangement of local storage forms.

Modified:
    trunk/src/main/webapp/index.html

Modified: trunk/src/main/webapp/index.html
URL: http://svn.shibboleth.net/view/java-idp-testbed/trunk/src/main/webapp/index.html?rev=314&r1=313&r2=314&view=diff
==============================================================================
--- trunk/src/main/webapp/index.html	(original)
+++ trunk/src/main/webapp/index.html	Tue Jun 23 12:27:50 2015
@@ -48,31 +48,38 @@
 <li><a href="sp/SAML2/FinishSLO/POST?success=0">SAML 2 LogoutResponse, POST Binding, Failure</a>
 
 <p>Local storage tests require 'idp.views = %{idp.home}/views,%{idp.home}/views-test' in conf/idp.properties</p>
-<li>
+<li>Read from local storage
 <form action="idp/profile/test/local-storage/read" method="GET">
-    <p>Read from local storage</p>
-    <p>key:
-    <input id="localStorageKey" type="text" name="localStorageKey" size="60"/>
-    </p>
-    <p>version:
-    <input id="localStorageVersion" type="text" name="localStorageVersion" size="10" value="0" />
-    </p>
+    <table>
+        <tr>
+            <td>key</td>
+            <td><input name="localStorageKey" type="text" size="30" value="shib_idp_ls" /></td>
+        </tr>
+        <tr>
+            <td>version</td>
+            <td><input name="localStorageVersion" type="text" size="10" value="0" /></td>
+        </tr>
+    </table>
     <input type="submit" value="Read">
 </form>
 </li>
 
-<li>
+<li>Write to local storage
 <form action="idp/profile/test/local-storage/write" method="GET">
-    <p>Write to local storage</p>
-    <p>key:
-    <input id="localStorageKey" type="text" name="localStorageKey" size="60"/>
-    </p>
-    <p>value:
-    <input id="localStorageValue" type="text" name="localStorageValue" size="60"/>
-    </p>
-    <p>version:
-    <input id="localStorageVersion" type="text" name="localStorageVersion" size="10"/>
-    </p>
+    <table>
+        <tr>
+            <td>key</td>
+            <td><input name="localStorageKey" type="text" size="30" value="shib_idp_ls" /></td>
+        </tr>
+        <tr>
+            <td>version</td>
+            <td><input name="localStorageVersion" type="text" size="10" value="1" /></td>
+        </tr>
+        <tr>
+            <td>value</td>
+            <td><input name="localStorageValue" type="text" size="60"/></td>
+        </tr>
+    </table>
     <input type="submit" value="Write">
 </form>
 </li>



More information about the commits mailing list