From: <the...@us...> - 2003-12-18 09:15:18
|
Update of /cvsroot/junk/junk/pages In directory sc8-pr-cvs1:/tmp/cvs-serv31505 Modified Files: WhoIsOnline.jsp Log Message: styling Index: WhoIsOnline.jsp =================================================================== RCS file: /cvsroot/junk/junk/pages/WhoIsOnline.jsp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** WhoIsOnline.jsp 17 Dec 2003 23:05:40 -0000 1.2 --- WhoIsOnline.jsp 18 Dec 2003 09:15:15 -0000 1.3 *************** *** 1,4 **** - <%@page contentType="text/html"%><?xml version="1.0" encoding="iso-8859-1" ?> - <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <% /* --- 1,2 ---- *************** *** 26,48 **** <%@ taglib uri="/tags/struts-html" prefix="html" %> <%@ taglib uri="/tags/struts-logic" prefix="logic" %> ! ! <html:html locale="true"> ! <head> ! <title>WhoIsOnline</title> ! <html:base /> ! <link href="style.css" rel="stylesheet" type="text/css"> ! <script language="JavaScript" src="functions.js" type="text/javascript"></script> ! </head> ! <body> ! <center> ! <h2>Jetzt Online:</h2> <table> <logic:iterate id="row" name="wio-iterator" scope="request"> <tr> <logic:iterate id="host" name="row"> ! <td style="border-bottom: 1px dotted black;"align="center" nowrap="nowrap"> ! <a href="file://<bean:write name="host" property="ip"/>"> <bean:write name="host" property="name"/> ! </a> </td> </logic:iterate> --- 24,44 ---- <%@ taglib uri="/tags/struts-html" prefix="html" %> <%@ taglib uri="/tags/struts-logic" prefix="logic" %> ! <!--wio--> ! <center> ! <a title="Hosts online: <bean:write name="wio-num-online" />"> ! <h1 class="wio">Jetzt Online:</h1> ! </a> <table> <logic:iterate id="row" name="wio-iterator" scope="request"> <tr> <logic:iterate id="host" name="row"> ! <td class="wio" nowrap="nowrap"> ! <a ! href="file://<bean:write name="host" property="ip"/>" ! title="<bean:write name="host" property="ip"/>" ! target="_blank" ! > <bean:write name="host" property="name"/> ! </a> </td> </logic:iterate> *************** *** 51,54 **** </table> </center> ! </body> ! </html:html> \ No newline at end of file --- 47,49 ---- </table> </center> ! <!--/wio--> \ No newline at end of file |