presence-service.jsp

来自「基于Jabber协议的即时消息服务器」· JSP 代码 · 共 95 行

JSP
95
字号
<%@ page import="java.util.*,                 org.jivesoftware.wildfire.XMPPServer,                 org.jivesoftware.util.*,                 org.jivesoftware.wildfire.plugin.PresencePlugin"    errorPage="error.jsp"%><%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c" %><%@ taglib uri="http://java.sun.com/jstl/fmt_rt" prefix="fmt" %><%  // Get parameters    boolean save = request.getParameter("save") != null;    boolean success = request.getParameter("success") != null;	boolean presencePublic = ParamUtils.getBooleanParameter(request, "presencePublic");	PresencePlugin plugin = (PresencePlugin)XMPPServer.getInstance().getPluginManager().getPlugin("presence");    // Handle a save    if (save) {        plugin.setPresencePublic(presencePublic);        response.sendRedirect("presence-service.jsp?success=true");        return;    }    presencePublic = plugin.isPresencePublic();%><html>    <head>        <title>Presence Service Properties</title>        <meta name="pageID" content="presence-service"/>    </head>    <body><p>Use the form below to configure user presence visibility. By default, userpresence should only be visible to those users that are authorized.<br></p><%  if (success) { %>    <div class="jive-success">    <table cellpadding="0" cellspacing="0" border="0">    <tbody>        <tr><td class="jive-icon"><img src="images/success-16x16.gif" width="16" height="16" border="0"></td>        <td class="jive-icon-label">            Presence service properties edited successfully.        </td></tr>    </tbody>    </table>    </div><br><% } %><form action="presence-service.jsp?save" method="post"><fieldset>    <legend>Presence visibility</legend>    <div>    <p>    For security reasons, users control which users are authorized to see their presence. However,    it is posible to configure the service so that anyone has access to all presence information.    Use this option with caution.    </p>    <table cellpadding="3" cellspacing="0" border="0" width="100%">    <tbody>        <tr>            <td width="1%">            <input type="radio" name="presencePublic" value="true" id="rb01"             <%= ((presencePublic) ? "checked" : "") %>>            </td>            <td width="99%">                <label for="rb01"><b>Anyone</b> - Anyone may get presence information.</label>            </td>        </tr>        <tr>            <td width="1%">            <input type="radio" name="presencePublic" value="false" id="rb02"             <%= ((!presencePublic) ? "checked" : "") %>>            </td>            <td width="99%">                <label for="rb02"><b>Subscribed</b> - Presence information is only visibile to authorized users.</label>            </td>        </tr>    </tbody>    </table>    </div></fieldset><br><br><input type="submit" value="Save Properties"></form></body></html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?