Edit C:\galaxie\deploy\Tomcat6\webapps\galaxie\admin\licence\listSessions.jsp
<%@page import="com.edeal.frontline.controller.actions.ListSessionsAction"%><% /****************************************************************************** * Copyright (c) 2000-2009 e-Deal * * e-Deal S.A. * 55 rue Brillat Savarin * 75013 Paris * France * * T: +33 (0)1 53 80 80 30 * F: +33 (0)1 73 01 69 77 * http://www.e-deal.com * * La diffusion de ce code source sous quelque forme que ce soit sans * l'autorisation de E-DEAL est interdite. * * Vous êtes autorisés à modifier ce code source uniquement pour votre usage * propre et sous réserve que les mentions de copyright demeurent intactes. * * Ce code est fourni en l'état. Aucune garantie d'aucune sorte, explicite ou * implicite n'est donnée. En aucun cas E-DEAL ne pourra être tenu pour * responsable des dommages pouvant résulter de l'utilisation de ce code * source. ******************************************************************************/ %> <%@ page session="true" contentType="text/html; charset=UTF-8"%> <%@page import="com.edeal.frontline.ActorBean"%> <%@page import="java.text.SimpleDateFormat"%> <%@page import="java.util.Iterator"%> <%@ page import="java.util.Vector" %> <%@ page import="com.edeal.frontline.navigation.FlRequest" %> <%@ page import="com.edeal.frontline.FlContext" %> <%@ page import="com.edeal.frontline.LicenceManager" %> <%@ page import="com.edeal.frontline.LicenceBean" %> <%@ page import="java.util.Date" %> <%@ page import="java.text.DecimalFormat" %> <%@ page import="java.util.Hashtable" %> <%@ page import="java.util.Enumeration" %> <%@ page import="com.edeal.frontline.Utils" %> <%@ page import="com.edeal.frontline.FlLocale" %> <%@ taglib uri="http://www.e-deal.com/taglib/fl" prefix="fl" %> <% final org.apache.commons.logging.Log logger = org.apache.commons.logging.LogFactory.getLog(getClass()); FlRequest flRequest = new FlRequest(request); FlContext context = flRequest.getContext(); LicenceManager licMgr = context.getLicenceManager(); String sfwID = flRequest.getParameter("SfwID"); %> <fl:bigTabs objectTitle="<%= Utils.getMessage(session, \"L65FF\", \"Etat des sessions HTTP\") %>" ou="/listSessions.fl"> <link rel="stylesheet" href="<fl:webapp/>/css/smalltabs_css.jsp" type="text/css"> <script language="javascript"> function invalidateSession(sessionID) { if (confirm('<fl:getMessage code="L6600" alt="L\'utilisateur perdera ses modifications en cours. Voulez-vous continuer?" js="true"/>')) { var url = '<fl:webapp/>/listSesssions.fl?<%= (sfwID == null ? "" : "SfwID=" + sfwID + "&") %>'; url += '<%= ListSessionsAction.SESSION_TO_INVALIDATE_ATTR %>=' + sessionID; window.location = url; } } </script> <table class="container" cellpadding="0" width="100%"> <tr> <td nowrap width="1%" class="transparent" style="text-align: center;"> </td> <td nowrap width="99%" style="text-align: left" class="transparent"> <table border="0" cellpadding="3" cellspacing="3" width="95%" align="center"> <tr valign="top"> <td class="titreInterneSmalltabs" style="text-align: left; width: 40%"><fl:getMessage code="L6606" alt="Acteur connecté"/></td> <td class="titreInterneSmalltabs" style="text-align: left; width: 40%"><fl:getMessage code="L6607" alt="Licence(s) flottante(s)"/></td> <td class="titreInterneSmalltabs" style="text-align: right; width: 20%"><fl:getMessage code="L6608" alt="Date dernier accès"/></td> </tr> </table> </td> </tr> <% Vector<HttpSession> sessionList = context.listHttpSessions(); for (HttpSession edealSession : sessionList) { String actID = (String)edealSession.getAttribute("actorID"); if (actID == null) { continue; } ActorBean actBean = new ActorBean(actID, context); boolean isCurSession = edealSession.getId().equals(session.getId()); Date lastAccDate = new Date(edealSession.getLastAccessedTime()); SimpleDateFormat sdf = new SimpleDateFormat("dd/MM HH:mm:ss"); Vector flotLicsInUse = licMgr.getFloatingLicsInUse(actID, edealSession); StringBuffer licsBuffer = new StringBuffer("("); Iterator licIter = flotLicsInUse.iterator(); boolean needComma = false; while (licIter.hasNext()) { if (needComma) { licsBuffer.append(", "); } else { needComma = true; } licsBuffer.append(licIter.next()); } licsBuffer.append(")"); %> <tr valign="top"> <td nowrap width="1%" class="transparent" style="text-align: center;"> <% if (!isCurSession) { %> <a href="javascript:invalidateSession('<%= edealSession.getId() %>');"><img style="border: none;" src="<fl:webapp/>/icons/ico/supprimer.gif"></a> <% } else { %> <% } %> </td> <td nowrap width="99%" style="text-align: left"> <table border="0" cellpadding="3" cellspacing="3" width="95%" align="center"> <tr valign="top"> <td class="dataValue" style="text-align: left; width: 40%;"> <%= actBean.toString() %> </td> <td class="dataValue" style="text-align: left; width: 40%;"> <%= licsBuffer.toString() %> </td> <td class="dataValue" style="text-align: right; width: 20%;"> <%= sdf.format(lastAccDate) %> </td> </tr> </table> </td> </tr> <% } %> </table> </fl:bigTabs>
Ms-Dos/Windows
Unix
Write backup
jsp File Browser version 1.2 by
www.vonloesch.de