Thread: [Ejtools-cvs] CVS: applications/jmx.browser/src/webapp/content index.jsp,1.2,1.3
Brought to you by:
letiemble
From: Laurent E. <let...@us...> - 2002-05-17 20:38:16
|
Update of /cvsroot/ejtools/applications/jmx.browser/src/webapp/content In directory usw-pr-cvs1:/tmp/cvs-serv7863/jmx.browser/src/webapp/content Modified Files: index.jsp Log Message: Modify headers and tree generation Index: index.jsp =================================================================== RCS file: /cvsroot/ejtools/applications/jmx.browser/src/webapp/content/index.jsp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** index.jsp 17 May 2002 07:23:12 -0000 1.2 --- index.jsp 17 May 2002 20:38:13 -0000 1.3 *************** *** 1,119 **** ! <?xml version="1.0"?> ! <!-- edited with XML Spy v4.3 U (http://www.xmlspy.com) by Laurent Etiemble (Orange) --> ! <jsp:root version="1.2" xmlns:jsp="http://java.sun.com/JSP/Page" xmlns:app="/WEB-INF/application.tld" xmlns:bean="/WEB-INF/struts-bean.tld" xmlns:html="/WEB-INF/struts-html.tld" xmlns:logic="/WEB-INF/struts-logic.tld"> ! <jsp:directive.page language="java" contentType="text/html"/> ! <app:connect/> ! <html> ! <head> ! <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"/> ! <meta name="GENERATOR" content="Microsoft FrontPage 4.0"/> ! <meta name="ProgId" content="FrontPage.Editor.Document"/> ! <link rel="stylesheet" type="text/css" href="style.css"/> ! <html:base/> ! <title>Agent View</title> ! </head> ! <body> ! <!-- ======================================== --> ! <!-- Header --> ! <!-- ======================================== --> ! <table border="0" width="100%" bgcolor="#CCCCCC" cellspacing="0"> ! <tr> ! <td width="100%"> ! <table border="0" width="100%" cellspacing="0" cellpadding="3" bgcolor="#FFFFFF"> ! <tr> ! <td> ! <b> ! <font face="verdana,arial,sans-serif" color="#000000" size="6">Agent View</font> ! </b> ! </td> ! <td align="right" rowspan="2"> ! <img border="0" src="images/ejtools50.png" width="175" height="50"/> ! </td> ! </tr> ! <tr> ! <td>Agent View</td> ! </tr> ! </table> ! </td> ! </tr> ! </table> ! <!-- ======================================== --> ! <!-- Spacer --> ! <!-- ======================================== --> ! <img border="0" src="images/white.png" width="5" height="15"/> ! <!-- ======================================== --> ! <!-- Agent Detail --> ! <!-- ======================================== --> ! <table border="0" cellspacing="1" bgcolor="#CCCCCC" width="100%"> ! <tr bgcolor="#EEEEEE"> ! <td align="left" valign="top"> ! <!-- ======================================== --> ! <!-- Filter and Admin Forms --> ! <!-- ======================================== --> ! <table border="0" width="100%" cellspacing="0" cellpadding="3"> ! <tr> ! <form action="/admin.do"> ! <td align="right"> ! <input type="submit" value="Admin" class="button"/> ! </td> ! </form> ! </tr> ! </table> ! <!-- ======================================== --> ! <!-- Agent Informations --> ! <!-- ======================================== --> ! <table border="0" width="100%" cellspacing="0" cellpadding="3"> ! <tr> ! <td align="left">This agent is registered on the domain <strong> ! <bean:write name="tree" property="defaultDomain"/> ! </strong>.<br/>This page contains <strong> ! <bean:write name="tree" property="count"/> ! </strong> MBean(s).</td> ! </tr> ! </table> ! </td> ! </tr> ! <!-- ======================================== --> ! <!-- JMX Tree --> ! <!-- ======================================== --> ! <tr bgcolor="#FFFFFF"> ! <td align="left" valign="top"> ! <!-- ======================================== --> ! <!-- Domain List --> ! <!-- ======================================== --> ! <logic:iterate name="tree" property="server" id="domain" type="net.sourceforge.ejtools.jmxbrowser.model.Domain"> ! <table> ! <tr> ! <td> ! <img src="images/icons/Home16.gif"/> ! </td> ! <td class=".tree-content"> ! <bean:write name="domain" property="name"/> ! </td> ! </tr> ! </table> ! <!-- ======================================== --> ! <!-- MBean List --> ! <!-- ======================================== --> ! <logic:iterate name="domain" id="resource" type="net.sourceforge.ejtools.jmxbrowser.model.Resource" indexId="resourcePosition"> ! <table> ! <tr> ! <td> ! <img src="images/tree/empty.gif"/> ! <img src="images/icons/EJBModule16.gif"/> ! </td> ! <td class=".tree-content"> ! <html:link page="/detail.do" paramId="reference" paramName="resource" paramProperty="name"> ! <bean:write name="resource" property="name"/> ! </html:link> ! </td> ! </tr> ! </table> ! </logic:iterate> ! </logic:iterate> ! </td> ! </tr> ! </table> ! </body> ! </html> ! </jsp:root> --- 1,111 ---- ! <?xml version="1.0"?> ! <!-- edited with XML Spy v4.3 U (http://www.xmlspy.com) by Laurent Etiemble (Orange) --> ! <jsp:root version="1.2" xmlns:jsp="http://java.sun.com/JSP/Page" xmlns:app="/WEB-INF/application.tld" xmlns:bean="/WEB-INF/struts-bean.tld" xmlns:html="/WEB-INF/struts-html.tld" xmlns:logic="/WEB-INF/struts-logic.tld"> ! <jsp:directive.page language="java" contentType="text/html"/> ! <app:connect/> ! <html> ! <head> ! <link rel="stylesheet" type="text/css" href="style.css"/> ! <html:base/> ! <title>Agent View</title> ! </head> ! <body> ! <!-- ======================================== --> ! <!-- Header --> ! <!-- ======================================== --> ! <table border="0" width="100%" bgcolor="#CCCCCC" cellspacing="0"> ! <tr> ! <td width="100%"> ! <table border="0" width="100%" cellspacing="0" cellpadding="3" bgcolor="#FFFFFF"> ! <tr> ! <td> ! <b> ! <font face="verdana,arial,sans-serif" color="#000000" size="6">Agent View</font> ! </b> ! </td> ! <td align="right" rowspan="2"> ! <img border="0" src="images/ejtools50.png" width="175" height="50"/> ! </td> ! </tr> ! <tr> ! <td>Agent View</td> ! </tr> ! </table> ! </td> ! </tr> ! </table> ! <!-- ======================================== --> ! <!-- Spacer --> ! <!-- ======================================== --> ! <img border="0" src="images/white.png" width="5" height="15"/> ! <!-- ======================================== --> ! <!-- Agent Detail --> ! <!-- ======================================== --> ! <table border="0" cellspacing="1" bgcolor="#CCCCCC" width="100%"> ! <tr bgcolor="#EEEEEE"> ! <td align="left" valign="top"> ! <!-- ======================================== --> ! <!-- Search and Admin Forms --> ! <!-- ======================================== --> ! <table border="0" width="100%" cellspacing="0" cellpadding="3"> ! <tr> ! <form action="search.do"> ! <td align="right"> ! <input type="submit" value="Search" class="button"/> ! </td> ! </form> ! <form action="admin.do"> ! <td align="left"> ! <input type="submit" value="Admin" class="button"/> ! </td> ! </form> ! </tr> ! </table> ! <!-- ======================================== --> ! <!-- Agent Informations --> ! <!-- ======================================== --> ! <table border="0" width="100%" cellspacing="0" cellpadding="3"> ! <tr> ! <td align="left">This agent is registered on the domain <strong> ! <bean:write name="tree" property="defaultDomain"/> ! </strong>. This domain contains <strong> ! <bean:write name="tree" property="count"/> ! </strong> MBean(s).</td> ! </tr> ! </table> ! </td> ! </tr> ! <!-- ======================================== --> ! <!-- JMX Tree View --> ! <!-- ======================================== --> ! <tr bgcolor="#FFFFFF"> ! <td align="left" valign="top"> ! <table cellspacing="0" cellpadding="0" border="0"> ! <tr> ! <td class=".tree-content"> ! <img src="images/icons/J2EEServer16.gif"/>Server</td> ! </tr> ! </table> ! <app:generateTree name="tree" property="server" id="jmxtree"/> ! <logic:iterate name="jmxtree" id="object" type="net.sourceforge.ejtools.jmxbrowser.web.taglib.IndentedObject"> ! <table cellspacing="0" cellpadding="0" border="0"> ! <tr> ! <td class=".tree-content"> ! <app:treeSpacer name="object" property="depth"/> ! <app:treeLeaf name="object" property="last"/> ! <app:treeRenderer name="object" property="object"/> ! </td> ! <td class=".tree-content"> ! <html:link page="/detail.do" paramId="reference" paramName="object" paramProperty="object"> ! <bean:write name="object" property="object"/> ! </html:link> ! </td> ! </tr> ! </table> ! </logic:iterate> ! </td> ! </tr> ! </table> ! </body> ! </html> ! </jsp:root> |