config_m.jsp
来自「一个用java编写的功能强大的OA系统」· JSP 代码 · 共 251 行
JSP
251 行
<%@ page contentType="text/html;charset=utf-8" %>
<%@ page import="java.util.Enumeration"%>
<%@ page import="cn.js.fan.util.*"%>
<%@ page import="cn.js.fan.web.*"%>
<%@ page import="java.util.Iterator"%>
<%@ page import="com.redmoon.forum.ui.*"%>
<%@ page import="com.redmoon.forum.*"%>
<%@ page import="org.jdom.*"%>
<%@ include file="../inc/inc.jsp" %>
<%@ include file="../inc/nocache.jsp" %>
<%@ taglib uri="/WEB-INF/tlds/LabelTag.tld" prefix="lt" %>
<jsp:useBean id="fchar" scope="page" class="cn.js.fan.util.StrUtil"/>
<html><head>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache, must-revalidate">
<meta http-equiv="expires" content="wed, 26 Feb 1997 08:21:57 GMT">
<title><lt:Label res="res.label.forum.admin.config_m" key="forum_config"/></title>
<%@ include file="../inc/nocache.jsp" %>
<LINK href="images/default.css" type=text/css rel=stylesheet>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
}
-->
</style><body bgcolor="#FFFFFF">
<jsp:useBean id="cfgparser" scope="page" class="cn.js.fan.util.CFGParser"/>
<jsp:useBean id="myconfig" scope="page" class="com.redmoon.forum.Config"/>
<jsp:useBean id="privilege" scope="page" class="com.redmoon.forum.Privilege"/>
<%
if (!privilege.isMasterLogin(request)) {
out.print(cn.js.fan.web.SkinUtil.makeErrMsg(request, cn.js.fan.web.SkinUtil.LoadString(request, "pvg_invalid")));
return;
}
ForumDb fd = new ForumDb();
fd = fd.getForumDb();
String op = ParamUtil.get(request, "op");
if (op.equals("setShowLink")) {
boolean isShowLink = ParamUtil.getBoolean(request, "isShowLink", false);
boolean canGuestSeeTopic = ParamUtil.getBoolean(request, "canGuestSeeTopic", false);
boolean canGuestSeeAttachment = ParamUtil.getBoolean(request, "canGuestSeeAttachment", false);
String guestAction = canGuestSeeTopic?"1":"0";
guestAction += canGuestSeeAttachment?"1":"0";
fd.setShowLink(isShowLink);
fd.setGuestAction(guestAction);
if (fd.save())
out.print(StrUtil.Alert(SkinUtil.LoadString(request, "info_op_success")));
else
out.print(StrUtil.Alert_Back(SkinUtil.LoadString(request, "info_op_fail")));
}
fd = ForumDb.getInstance();
%>
<TABLE cellSpacing=0 cellPadding=0 width="100%">
<TBODY>
<TR>
<TD class=head><lt:Label res="res.label.forum.admin.config_m" key="sys_config"/></TD>
</TR>
</TBODY>
</TABLE>
<br>
<table width="98%" border="0" align="center" cellpadding="0" cellspacing="0" class="tableframe" style="BORDER-RIGHT: #a6a398 1px solid; BORDER-TOP: #a6a398 1px solid; BORDER-LEFT: #a6a398 1px solid; BORDER-BOTTOM: #a6a398 1px solid" >
<tr>
<td width="100%" height="23" class="thead"> <lt:Label res="res.label.forum.admin.config_m" key="forum_config"/></td>
</tr>
<tr>
<td valign="top" bgcolor="#FFFFFF"><table width="100%" border='0' align="center" cellpadding='0' cellspacing='0' class="tableframe_gray">
<tr >
<td width="100%" class="stable">
<tr>
<FORM METHOD=POST ACTION="?op=setShowLink" name="frm4">
<td height="23" colspan=3 align="center" class="stable"><table width="100%" border="0" cellpadding="0" cellspacing="1">
<tr>
<td height="22" bgcolor="#F6F6F6"><input type="checkbox" name="isShowLink" value="true" <%=fd.isShowLink()?"checked":""%>>
<lt:Label res="res.label.forum.admin.forum_m" key="show_link"/>
<input type="checkbox" name="canGuestSeeTopic" value="true" <%=fd.canGuestSeeTopic()?"checked":""%>>
<lt:Label res="res.label.forum.admin.forum_m" key="guest_can_view_topic"/>
<input type="checkbox" name="canGuestSeeAttachment" value="true" <%=fd.canGuestSeeAttachment()?"checked":""%>>
<lt:Label res="res.label.forum.admin.forum_m" key="guest_can_download_attach"/></td>
<td width="14%" align="center" bgcolor="#F6F6F6"><input name="submit" type="submit" value="<lt:Label key="ok"/>"></td>
</tr>
</table></td>
</FORM>
</tr>
</TABLE>
<%
Element root = myconfig.getRootElement();
if (op.equals("setDefaultSkin")) {
SkinMgr sm = new SkinMgr();
String defaultSkinCode = ParamUtil.get(request, "defaultSkinCode");
sm.setDefaultSkin(defaultSkinCode);
out.print(StrUtil.Alert(SkinUtil.LoadString(request, "info_op_success")));
}
String name="",value = "";
name = request.getParameter("name");
if (name!=null && !name.equals("")) {
value = ParamUtil.get(request, "value");
if (name.equals("fullTextSearchTime")) {
value = ParamUtil.get(request, "search_date") + " " + ParamUtil.get(request, "search_time");
}
myconfig.put(name,value);
out.println(fchar.Alert_Redirect(SkinUtil.LoadString(request, "info_op_success"), "config_m.jsp"));
ForumSchedulerUnit.initParam();
com.redmoon.forum.MsgDb.initParam();
ForumPage.init();
}
int k = 0;
Iterator ir = root.getChild("forum").getChildren().iterator();
String desc = "";
while (ir.hasNext()) {
Element e = (Element)ir.next();
desc = e.getAttributeValue("desc");
name = e.getName();
value = e.getValue();
%>
<table width="100%" border="0" align="center" cellpadding="2" cellspacing="1">
<FORM METHOD=POST id="form<%=k%>" name="form<%=k%>" ACTION='config_m.jsp'>
<tr>
<td bgcolor=#F6F6F6 width='52%'> <INPUT TYPE=hidden name=name value="<%=name%>">
<%=myconfig.getDescription(request, name)%>
<td bgcolor=#F6F6F6 width='34%'>
<%
if (name.equals("waterMarkPos")) {%>
<select name="value">
<option value="<%=cn.js.fan.util.file.image.WaterMarkUtil.POS_LEFT_TOP%>"><lt:Label res="res.label.forum.admin.config_m" key="left_top"/></option>
<option value="<%=cn.js.fan.util.file.image.WaterMarkUtil.POS_LEFT_BOTTOM%>"><lt:Label res="res.label.forum.admin.config_m" key="left_bottom"/></option>
<option value="<%=cn.js.fan.util.file.image.WaterMarkUtil.POS_RIGHT_TOP%>"><lt:Label res="res.label.forum.admin.config_m" key="right_top"/></option>
<option value="<%=cn.js.fan.util.file.image.WaterMarkUtil.POS_RIGHT_BOTTOM%>"><lt:Label res="res.label.forum.admin.config_m" key="right_bottom"/></option>
</select>
<script>
form<%=k%>.value.value = "<%=value%>";
</script>
<%}
else if (value.equals("true") || value.equals("false")) {%>
<select name="value"><option value="true"><lt:Label key="yes"/></option><option value="false"><lt:Label key="no"/></option></select>
<script>
form<%=k%>.value.value = "<%=value%>";
</script>
<%}else if(name.equals("userLevel")){%>
<select name="value">
<option value="levelCredit">信用值</option>
<option value="levelExperience">经验值</option>
<option value="levelGold">金币</option>
<option value="levelTopticCount">最少发贴</option>
</select>
<script>
form<%=k%>.value.value = "<%=value%>";
</script>
<%}else if (name.equals("fullTextSearchTime")) {
java.util.Date d = DateUtil.parse(value, "yyyy-MM-dd HH:mm:ss");
String dstr = DateUtil.format(d, "yyyy-MM-dd");
String hstr = DateUtil.format(d, "HH:mm:ss");
%>
<input name="vlaue" size="10" type="hidden">
<input name="search_date" size=10 readonly value="<%=dstr%>">
<img src="../../util/calendar/calendar.gif" align=absMiddle style="cursor:hand" onClick="SelectDate('search_date','yyyy-mm-dd')">
<input style="WIDTH: 80px" value="<%=hstr%>" name="search_time" size="30">
<img style="CURSOR: hand" onClick="SelectDateTime(form<%=k%>.search_time)" src="../images/clock.gif" align="absMiddle" width="18" height="18">
<%}else{%>
<input type=text value="<%=value%>" name="value" style='border:1pt solid #636563;font-size:9pt' size=30>
<%}%>
<td width="14%" align=center bgcolor=#F6F6F6> <INPUT TYPE=submit name='edit' value='<lt:Label key="op_modify"/>'> </td>
</tr>
</FORM>
</table>
<%
k++;
}
%>
<table width="100%" border="0" align="center" cellpadding="2" cellspacing="1">
<FORM METHOD=POST id="form_skin" name="form_skin" ACTION='config_m.jsp?op=setDefaultSkin'>
<tr>
<td bgcolor=#F6F6F6 width='52%'> <%=myconfig.getDescription(request, "default_skin")%>
<td bgcolor=#F6F6F6 width='34%'>
<%
String opt = "";
SkinMgr sm = new SkinMgr();
Iterator irskin = sm.getAllSkin().iterator();
while (irskin.hasNext()) {
Skin sk = (Skin)irskin.next();
String d = "";
if (sk.isDefaultSkin())
d = "selected";
opt += "<option value=" + sk.getCode() + " " + d + ">" + sk.getName() + "</option>";
}
%>
<select name="defaultSkinCode">
<%=opt%>
</select>
</td>
<td width="14%" align=center bgcolor=#F6F6F6><INPUT TYPE=submit name='edit2' value='<lt:Label key="op_modify"/>'>
</td>
</tr>
</FORM>
</table></td>
</tr>
<tr class=row style="BACKGROUND-COLOR: #fafafa">
<td valign="top" bgcolor="#FFFFFF" class="thead"> </td>
</tr>
</table>
</body>
<script>
function findObj(theObj, theDoc)
{
var p, i, foundObj;
if(!theDoc) theDoc = document;
if( (p = theObj.indexOf("?")) > 0 && parent.frames.length)
{
theDoc = parent.frames[theObj.substring(p+1)].document;
theObj = theObj.substring(0,p);
}
if(!(foundObj = theDoc[theObj]) && theDoc.all) foundObj = theDoc.all[theObj];
for (i=0; !foundObj && i < theDoc.forms.length; i++)
foundObj = theDoc.forms[i][theObj];
for(i=0; !foundObj && theDoc.layers && i < theDoc.layers.length; i++)
foundObj = findObj(theObj,theDoc.layers[i].document);
if(!foundObj && document.getElementById) foundObj = document.getElementById(theObj);
return foundObj;
}
var GetDate="";
function SelectDate(ObjName,FormatDate) {
var PostAtt = new Array;
PostAtt[0]= FormatDate;
PostAtt[1]= findObj(ObjName);
GetDate = showModalDialog("../../util/calendar/calendar.htm", PostAtt ,"dialogWidth:286px;dialogHeight:221px;status:no;help:no;");
}
function SetDate()
{
findObj(ObjName).value = GetDate;
}
function SelectDateTime(obj) {
var dt = showModalDialog("../../util/calendar/time.jsp", "" ,"dialogWidth:266px;dialogHeight:125px;status:no;help:no;");
if (dt!=null)
obj.value = dt;
}
</script>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?