You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by am...@apache.org on 2005/12/11 23:32:35 UTC

svn commit: r356046 - /geronimo/trunk/applications/console-standard/src/webapp/WEB-INF/view/webmanager/connector/editHTTPS.jsp

Author: ammulder
Date: Sun Dec 11 14:32:34 2005
New Revision: 356046

URL: http://svn.apache.org/viewcvs?rev=356046&view=rev
Log:
Accomodate a setting of "Default" for SSL algorithm (GERONIMO-1161)
Fix some typos in the JSP

Modified:
    geronimo/trunk/applications/console-standard/src/webapp/WEB-INF/view/webmanager/connector/editHTTPS.jsp

Modified: geronimo/trunk/applications/console-standard/src/webapp/WEB-INF/view/webmanager/connector/editHTTPS.jsp
URL: http://svn.apache.org/viewcvs/geronimo/trunk/applications/console-standard/src/webapp/WEB-INF/view/webmanager/connector/editHTTPS.jsp?rev=356046&r1=356045&r2=356046&view=diff
==============================================================================
--- geronimo/trunk/applications/console-standard/src/webapp/WEB-INF/view/webmanager/connector/editHTTPS.jsp (original)
+++ geronimo/trunk/applications/console-standard/src/webapp/WEB-INF/view/webmanager/connector/editHTTPS.jsp Sun Dec 11 14:32:34 2005
@@ -198,7 +198,8 @@
     <td><div align="right">HTTPS Algorithm: </div></td>
     <td>
       <select name="algorithm">
-        <option value="SunX509"<c:if test="${algorithm eq 'SunX509' || logLevel eq ''}"> selected</c:if>>Sun</option>
+        <option value="Default"<c:if test="${algorithm eq 'Default' || algorithm eq ''}"> selected</c:if>>JVM Default</option>
+        <option value="SunX509"<c:if test="${algorithm eq 'SunX509' eq ''}"> selected</c:if>>Sun</option>
         <option value="IbmX509"<c:if test="${algorithm eq 'IbmX509'}"> selected</c:if>>IBM</option>
       </select>
 	</td>
@@ -214,7 +215,7 @@
     <td><div align="right">HTTPS Protocol: </div></td>
     <td>
       <select name="secureProtocol">
-        <option<c:if test="${secureProtocol eq 'TLS' || logLevel eq ''}"> selected</c:if>>TLS</option>
+        <option<c:if test="${secureProtocol eq 'TLS' || secureProtocol eq ''}"> selected</c:if>>TLS</option>
         <option<c:if test="${secureProtocol eq 'SSL'}"> selected</c:if>>SSL</option>
       </select>
 	</td>