📄 user-browser.jsp
字号:
<%--
- $RCSfile$
- $Revision: 28108 $
- $Date: 2006-03-06 13:49:44 -0800 (Mon, 06 Mar 2006) $
--%>
<%@ page import="org.jivesoftware.util.ParamUtils,
java.util.Iterator,
org.jivesoftware.openfire.user.User,
org.jivesoftware.xmpp.workgroup.utils.ModelUtil"
%>
<%@ page import="org.xmpp.packet.JID"%>
<jsp:useBean id="webManager" class="org.jivesoftware.util.WebManager" />
<% webManager.init(request, response, session, application, out ); %>
<% // Get parameters
int start = ParamUtils.getIntParameter(request,"start",0);
int range = ParamUtils.getIntParameter(request,"range",10);
String formName = ParamUtils.getParameter(request,"formName");
String elName = ParamUtils.getParameter(request,"elName");
String panel = ParamUtils.getParameter(request,"panel");
if (panel == null) {
panel = "frameset";
}
%>
<% if ("frameset".equals(panel)) { %>
<html>
<head>
<title>User Browser</title>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"/>
<meta name="decorator" content="none"/>
<link rel="stylesheet" type="text/css" href="/style/global.css">
<script language="JavaScript" type="text/javascript">
var users = new Array();
function getUserListDisplay() {
var display = "";
var sep = ", ";
for (var i=0; i<users.length; i++) {
if ((i+1) == users.length) {
sep = "";
}
display += (users[i] + sep);
}
return display;
}
function printUsers(theForm) {
theForm.users.value = getUserListDisplay();
}
function addUser(theForm, username) {
users[users.length] = username;
printUsers(theForm);
}
function closeWin() {
window.close();
}
function done() {
closeWin();
}
</script>
</head>
<frameset rows="*,105">
<frame name="main" src="user-browser.jsp?panel=main"
marginwidth="5" marginheight="5" scrolling="auto" frameborder="0">
<frame name="bottom" src="user-browser.jsp?panel=bottom&formName=<%= formName %>&elName=<%= elName %>"
marginwidth="5" marginheight="5" scrolling="no" frameborder="0">
</frameset>
</html>
<% } else if ("bottom".equals(panel)) { %>
<html>
<head>
<title><fmt:message key="title" /> <fmt:message key="header.admin" /></title>
<meta http-equiv="content-type" content="text/html; charset=">
<meta name="decorator" content="none"/>
<link rel="stylesheet" href="style/global.css" type="text/css">
</head>
<body>
<style type="text/css">
.mybutton {
width : 100%;
}
</style>
<form name="f" onsubmit="return false;">
<table cellpadding="3" cellspacing="0" border="0" width="100%">
<tr>
<td width="99%">
<textarea rows="4" cols="40" style="width:100%;" name="users" wrap="virtual"></textarea>
</td>
<td width="1%" nowrap>
<table cellpadding="0" cellspacing="0" border="0" width="75">
<tr>
<td>
<script language="javascript">
var currentValue = parent.opener.document.<%= formName %>.<%= elName %>.value;
if(currentValue.length > 0){
currentValue = ","+currentValue;
}
</script>
<input type="submit" name="" value="Done" class="mybutton"
onclick="if(parent.getUserListDisplay()!=''){parent.opener.document.<%= formName %>.<%= elName %>.value=parent.getUserListDisplay()+currentValue;}parent.done();return false;">
</td>
</tr>
<tr>
<td>
<input type="submit" name="" value="Cancel" class="mybutton"
onclick="parent.closeWin();return false;">
</td>
</tr>
</table>
</td>
</tr>
</table>
</form>
</body>
</html>
<% } else if ("main".equals(panel)) { %>
<% // Get the user manager
int userCount = webManager.getUserManager().getUserCount();
// paginator vars
int numPages = (int)Math.ceil((double)userCount/(double)range);
int curPage = (start/range) + 1;
%>
<html>
<head>
<title>User Browser</title>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<meta name="decorator" content="none"/>
<link rel="stylesheet" type="text/css" href="/style/global.css">
</head>
<body class="jive-body">
<p>
Total Users: <%= webManager.getUserManager().getUserCount() %>,
<% if (numPages > 1) { %>
Showing <%= (start+1) %>-<%= (start+range) %>,
<% } %>
Sorted by User ID.
</p>
<p>
Viewing page <%= curPage %>
</p>
<p>Click "Add User" to add a user to the list box below. When you're done
click "Done".
</p>
<% if (numPages > 1) { %>
<p>
Pages:
[
<% for (int i=0; i<numPages; i++) {
String sep = ((i+1)<numPages) ? " " : "";
boolean isCurrent = (i+1) == curPage;
%>
<a href="user-browser.jsp?panel=main&start=<%= (i*range) %>"
class="<%= ((isCurrent) ? "jive-current" : "") %>"
><%= (i+1) %></a><%= sep %>
<% } %>
]
</p>
<% } %>
<fieldset>
<legend>Possible Agents to Add</legend>
<table class="jive-table" cellpadding="3" cellspacing="1" border="0" width="100%">
<th> </th>
<th>Username</th>
<th>Name</th>
<th align="center">Add</th>
<% // Print the list of users
Iterator users = webManager.getUserManager().getUsers(start, range).iterator();
if (!users.hasNext()) {
%>
<tr>
<td align="center" colspan="4">
No users in the system.
</td>
</tr>
<%
}
int i = start;
while (users.hasNext()) {
User user = (User)users.next();
i++;
%>
<tr class="jive-<%= (((i%2)==0) ? "even" : "odd") %>">
<td width="1%">
<%= i %>
</td>
<td width="60%">
<%= JID.unescapeNode(user.getUsername()) %>
</td>
<td width="50%">
<% String name = user.getName();
if(!ModelUtil.hasLength(name)){
name = " ";
}
%>
<%= name %>
</td>
<td width="1%" align="center">
<input type="submit" name="" value="Add User" class="jive-sm-button"
onclick="parent.addUser(parent.frames['bottom'].document.f,'<%= JID.unescapeNode(user.getUsername()) %>');">
</td>
</tr>
<%
}
%>
</table>
</fieldset>
<% if (numPages > 1) { %>
<p>
Pages:
[
<% for (i=0; i<numPages; i++) {
String sep = ((i+1)<numPages) ? " " : "";
boolean isCurrent = (i+1) == curPage;
%>
<a href="user-browser.jsp?panel=main&start=<%= (i*range) %>"
class="<%= ((isCurrent) ? "jive-current" : "") %>"
><%= (i+1) %></a><%= sep %>
<% } %>
]
</p>
<% } %>
</body>
</html>
<% } %>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -