You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by va...@apache.org on 2008/01/30 21:03:58 UTC

svn commit: r616883 - in /geronimo/server: branches/2.0/applications/console/geronimo-console-standard/src/main/webapp/WEB-INF/view/logmanager/view.jsp trunk/plugins/console/console-base-portlets/src/main/webapp/WEB-INF/view/logmanager/view.jsp

Author: vamsic007
Date: Wed Jan 30 12:03:57 2008
New Revision: 616883

URL: http://svn.apache.org/viewvc?rev=616883&view=rev
Log:
Correct ordering of log levels

Modified:
    geronimo/server/branches/2.0/applications/console/geronimo-console-standard/src/main/webapp/WEB-INF/view/logmanager/view.jsp
    geronimo/server/trunk/plugins/console/console-base-portlets/src/main/webapp/WEB-INF/view/logmanager/view.jsp

Modified: geronimo/server/branches/2.0/applications/console/geronimo-console-standard/src/main/webapp/WEB-INF/view/logmanager/view.jsp
URL: http://svn.apache.org/viewvc/geronimo/server/branches/2.0/applications/console/geronimo-console-standard/src/main/webapp/WEB-INF/view/logmanager/view.jsp?rev=616883&r1=616882&r2=616883&view=diff
==============================================================================
--- geronimo/server/branches/2.0/applications/console/geronimo-console-standard/src/main/webapp/WEB-INF/view/logmanager/view.jsp (original)
+++ geronimo/server/branches/2.0/applications/console/geronimo-console-standard/src/main/webapp/WEB-INF/view/logmanager/view.jsp Wed Jan 30 12:03:57 2008
@@ -15,6 +15,8 @@
    limitations under the License.
 --%>
 
+<%-- $Rev$ $Date$ --%>
+
 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
 <%@ taglib uri="http://java.sun.com/portlet" prefix="portlet"%>
 
@@ -69,12 +71,12 @@
     <td>
     <select name="logLevel">
         <option<c:if test="${logLevel eq 'ALL'}"> selected</c:if>>ALL</option>
+        <option<c:if test="${logLevel eq 'TRACE'}"> selected</c:if>>TRACE</option>
         <option<c:if test="${logLevel eq 'DEBUG'}"> selected</c:if>>DEBUG</option>
         <option<c:if test="${logLevel eq 'INFO'}"> selected</c:if>>INFO</option>
         <option<c:if test="${logLevel eq 'WARN'}"> selected</c:if>>WARN</option>
         <option<c:if test="${logLevel eq 'ERROR'}"> selected</c:if>>ERROR</option>
         <option<c:if test="${logLevel eq 'FATAL'}"> selected</c:if>>FATAL</option>
-        <option<c:if test="${logLevel eq 'TRACE'}"> selected</c:if>>TRACE</option>
         <option<c:if test="${logLevel eq 'OFF'}"> selected</c:if>>OFF</option>
     </select>
     </td>

Modified: geronimo/server/trunk/plugins/console/console-base-portlets/src/main/webapp/WEB-INF/view/logmanager/view.jsp
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/plugins/console/console-base-portlets/src/main/webapp/WEB-INF/view/logmanager/view.jsp?rev=616883&r1=616882&r2=616883&view=diff
==============================================================================
--- geronimo/server/trunk/plugins/console/console-base-portlets/src/main/webapp/WEB-INF/view/logmanager/view.jsp (original)
+++ geronimo/server/trunk/plugins/console/console-base-portlets/src/main/webapp/WEB-INF/view/logmanager/view.jsp Wed Jan 30 12:03:57 2008
@@ -15,6 +15,8 @@
    limitations under the License.
 --%>
 
+<%-- $Rev$ $Date$ --%>
+
 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
 <%@ taglib uri="http://java.sun.com/portlet" prefix="portlet"%>
 <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
@@ -71,12 +73,12 @@
     <td>
     <select name="logLevel">
         <option<c:if test="${logLevel eq 'ALL'}"> selected</c:if>>ALL</option>
+        <option<c:if test="${logLevel eq 'TRACE'}"> selected</c:if>>TRACE</option>
         <option<c:if test="${logLevel eq 'DEBUG'}"> selected</c:if>>DEBUG</option>
         <option<c:if test="${logLevel eq 'INFO'}"> selected</c:if>>INFO</option>
         <option<c:if test="${logLevel eq 'WARN'}"> selected</c:if>>WARN</option>
         <option<c:if test="${logLevel eq 'ERROR'}"> selected</c:if>>ERROR</option>
         <option<c:if test="${logLevel eq 'FATAL'}"> selected</c:if>>FATAL</option>
-        <option<c:if test="${logLevel eq 'TRACE'}"> selected</c:if>>TRACE</option>
         <option<c:if test="${logLevel eq 'OFF'}"> selected</c:if>>OFF</option>
     </select>
     </td>