From: <the...@us...> - 2003-12-17 16:58:32
|
Update of /cvsroot/junk/junk/pages In directory sc8-pr-cvs1:/tmp/cvs-serv21867 Added Files: WhoIsOnline.jsp Log Message: initial release --- NEW FILE: WhoIsOnline.jsp --- <%@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"> <% /* * (c) 2003 by Marcus Proest * * This file is part of junk (java usefull net kollektor). * * junk is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * junk is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with junk; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * */ %> <%@ taglib uri="/tags/struts-bean" prefix="bean" %> <%@ 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> <logic:iterate id="host" name="wio-iterator" scope="request"> <logic:equal name="host" value="true" property="online"> <a href="file://<bean:write name="host" property="ip"/>"><bean:write name="host" property="name"/></a><br /> </logic:equal> </logic:iterate> </center> </body> </html:html> |