You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by cc...@apache.org on 2007/01/18 09:05:06 UTC

svn commit: r497339 - in /geronimo/server/trunk/applications/console/geronimo-console-standard/src/main/webapp/WEB-INF/view: jmxmanager/viewJMXServer.jsp ldapmanager/viewLDAPServer.jsp

Author: ccardona
Date: Thu Jan 18 00:05:06 2007
New Revision: 497339

URL: http://svn.apache.org/viewvc?view=rev&rev=497339
Log:
- Fixed scrolling problem
- Modified Attributes table (JMX Viewer portlet only)

Modified:
    geronimo/server/trunk/applications/console/geronimo-console-standard/src/main/webapp/WEB-INF/view/jmxmanager/viewJMXServer.jsp
    geronimo/server/trunk/applications/console/geronimo-console-standard/src/main/webapp/WEB-INF/view/ldapmanager/viewLDAPServer.jsp

Modified: geronimo/server/trunk/applications/console/geronimo-console-standard/src/main/webapp/WEB-INF/view/jmxmanager/viewJMXServer.jsp
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/applications/console/geronimo-console-standard/src/main/webapp/WEB-INF/view/jmxmanager/viewJMXServer.jsp?view=diff&rev=497339&r1=497338&r2=497339
==============================================================================
--- geronimo/server/trunk/applications/console/geronimo-console-standard/src/main/webapp/WEB-INF/view/jmxmanager/viewJMXServer.jsp (original)
+++ geronimo/server/trunk/applications/console/geronimo-console-standard/src/main/webapp/WEB-INF/view/jmxmanager/viewJMXServer.jsp Thu Jan 18 00:05:06 2007
@@ -401,6 +401,9 @@
             function(attribute) { /* AttribType Column */
                 return attribute['type'];
             },
+            function(attribute) { /* AttribGetterName Column */
+                return attribute['getterName'];
+            },
             function(attribute) { /* AttribSetterName Column */
                 var attribSetterName = attribute['setterName']; 
                 var abstractName = $('abstractName').value;
@@ -422,27 +425,26 @@
             function(attribute) { /* AttribManageable Column */
                 var isManageable = attribute['manageable'];
                 if (isManageable == 'true') {
-                    return attribute['manageable'];   
+                    return 'Yes';   
                 }
-                return null;
+                return 'No';
                  
             },
             function(attribute) { /* AttribPersistent Column */
                 var isPersistent = attribute['persistent']; 
                 if (isPersistent == 'true') {
-                    return attribute['persistent']; 
+                    return 'Yes'; 
                 }
-                return null;
-            /* },
+                return 'No';
+            }
+            /*
             function(attribute) { AttribReadable Column
                 return attribute['readable']; 
             },
             function(attribute) { AttribWritable Column
-                return attribute['writable']; */
+                return attribute['writable'];
             },
-            function(attribute) { /* AttribGetterName Column */
-                return attribute['getterName'];
-            }
+            */
         ],
         tableOption
     );
@@ -832,7 +834,7 @@
     	    sizeShare="60">
             
             <!-- Attributes tab -->
-    		<div id="attributesTab" dojoType="ContentPane" title="MBean Attributes" label="Attributes">
+    		<div id="attributesTab" dojoType="ContentPane" title="MBean Attributes" label="Attributes" style="overflow: auto">
                 <br>
             	<table dojoType="SortableTable" 
             	    widgetId="attribsTable" 
@@ -849,14 +851,14 @@
                             <th field="Name" dataType="String" width="10%">&nbsp;Name&nbsp;</th>
                             <th dataType="html" width="20%">&nbsp;Value&nbsp;</th>
                             <th field="Type" dataType="String" width="10%">&nbsp;Type&nbsp;</th>
-                            <th dataType="html" width="10%">&nbsp;Writable&nbsp;</th>
-                            <th field="Manageable" dataType="String" width="10%">&nbsp;Manageable&nbsp;</th>
-                            <th field="Persistent" dataType="String" width="10%">&nbsp;Persistent&nbsp;</th>
+                            <th field="Getter" dataType="String" width="10%">&nbsp;Getter&nbsp;</th>
+                            <th dataType="html" width="10%">&nbsp;Setter&nbsp;</th>
+                            <th field="Manageable" dataType="String" width="10%" align="center">&nbsp;Manageable&nbsp;</th>
+                            <th field="Persistent" dataType="String" width="10%" align="center">&nbsp;Persistent&nbsp;</th>
                             <!--
                             <th field="Readable" dataType="String" width="10%">&nbsp;Readable&nbsp;</th>
                             <th field="Writable" dataType="String" width="10%">&nbsp;Writable&nbsp;</th>
                             -->
-                            <th field="Getter" dataType="String" width="10%">&nbsp;Getter&nbsp;</th>
                         </tr>
                     </thead>
                     <tbody id="attributesTableBody">
@@ -865,7 +867,7 @@
     		</div> <!-- Attributes tab -->
 
             <!-- Operations tab -->
-    		<div id="operationsTab" dojoType="ContentPane" title="MBean Operations" label="Operations">
+    		<div id="operationsTab" dojoType="ContentPane" title="MBean Operations" label="Operations" style="overflow: auto">
                 <br>
                 <table width="100%">
                     <tr>
@@ -882,7 +884,7 @@
     		</div> <!-- Operations tab -->
 
             <!-- Info tab -->
-    		<div id="infoTab" dojoType="ContentPane" title="MBean Info" label="Info">
+    		<div id="infoTab" dojoType="ContentPane" title="MBean Info" label="Info" style="overflow: auto">
     		    <br>
                 <table width="100%">
                     <tr>
@@ -899,7 +901,7 @@
             </div> <!-- Info tab -->
 
             <!-- Search tab -->
-            <div id="searchTab" dojoType="ContentPane" title="Search" label="Search">
+            <div id="searchTab" dojoType="ContentPane" title="Search" label="Search" style="overflow: auto">
                 <!-- JMXSearch Form -->
                 <form name="JMXSearchForm" onsubmit="return false;">
                     <br>

Modified: geronimo/server/trunk/applications/console/geronimo-console-standard/src/main/webapp/WEB-INF/view/ldapmanager/viewLDAPServer.jsp
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/applications/console/geronimo-console-standard/src/main/webapp/WEB-INF/view/ldapmanager/viewLDAPServer.jsp?view=diff&rev=497339&r1=497338&r2=497339
==============================================================================
--- geronimo/server/trunk/applications/console/geronimo-console-standard/src/main/webapp/WEB-INF/view/ldapmanager/viewLDAPServer.jsp (original)
+++ geronimo/server/trunk/applications/console/geronimo-console-standard/src/main/webapp/WEB-INF/view/ldapmanager/viewLDAPServer.jsp Thu Jan 18 00:05:06 2007
@@ -486,11 +486,11 @@
     	<div id="mainTabContainer" 
     	    dojoType="TabContainer" 
     	    selectedTab="attributesTab" 
-    	    style="overflow: auto" 
+    	    style="overflow: hidden" 
     	    sizeShare="60">
             
             <!-- Attributes tab -->
-    		<div id="attributesTab" dojoType="ContentPane" title="LDAP Entry Attributes" label="Attributes">
+    		<div id="attributesTab" dojoType="ContentPane" title="LDAP Entry Attributes" label="Attributes" style="overflow: auto">
                 <br>
                 <table width="100%">
                     <tr>
@@ -503,7 +503,7 @@
     		</div> <!-- Attributes tab -->
 
             <!-- Search tab -->
-    		<div id="searchTab" dojoType="ContentPane" title = "" label="Search">
+    		<div id="searchTab" dojoType="ContentPane" title = "" label="Search" style="overflow: auto">
     		    <br>
                 <form NAME="LDAPSearchForm">
         	        <table>
@@ -545,7 +545,7 @@
             </div> <!-- Search tab -->
 
             <!-- Connection Info tab -->
-    		<div id="connectInfoTab" dojoType="ContentPane" title = "" label="Connect Info">
+    		<div id="connectInfoTab" dojoType="ContentPane" title = "" label="Connect Info" style="overflow: auto">
     		    <br>
                 <form NAME="LDAPConnectForm">
         	        <table>
@@ -629,7 +629,7 @@
 
             <!-- Help tab -->
     		<!--
-    		<div id="helpTab" dojoType="ContentPane" title="Help Information" label="Help">
+    		<div id="helpTab" dojoType="ContentPane" title="Help Information" label="Help" style="overflow: auto">
                 <br>
                 <p>The LDAP viewer portlet can be used to do the following:
                 <ul>