config_m.jsp
上传用户:jhtang88
上传日期:2014-01-27
资源大小:28528k
文件大小:8k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html;charset=utf-8" %>
  2. <%@ page import="java.util.Enumeration"%>
  3. <%@ page import="cn.js.fan.util.*"%>
  4. <%@ page import="cn.js.fan.web.*"%>
  5. <%@ page import="java.util.Iterator"%>
  6. <%@ page import="com.redmoon.forum.ui.*"%>
  7. <%@ page import="com.redmoon.forum.*"%>
  8. <%@ page import="org.jdom.*"%>
  9. <%@ include file="../inc/inc.jsp" %>
  10. <%@ include file="../inc/nocache.jsp" %>
  11. <%@ taglib uri="/WEB-INF/tlds/LabelTag.tld" prefix="lt" %>
  12. <jsp:useBean id="fchar" scope="page" class="cn.js.fan.util.StrUtil"/>
  13. <html><head>
  14. <meta http-equiv="pragma" content="no-cache">
  15. <meta http-equiv="Cache-Control" content="no-cache, must-revalidate">
  16. <meta http-equiv="expires" content="wed, 26 Feb 1997 08:21:57 GMT">
  17. <title><lt:Label res="res.label.forum.admin.config_m" key="forum_config"/></title>
  18. <%@ include file="../inc/nocache.jsp" %>
  19. <LINK href="images/default.css" type=text/css rel=stylesheet>
  20. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  21. <style type="text/css">
  22. <!--
  23. body {
  24. margin-left: 0px;
  25. margin-top: 0px;
  26. }
  27. -->
  28. </style><body bgcolor="#FFFFFF">
  29. <jsp:useBean id="cfgparser" scope="page" class="cn.js.fan.util.CFGParser"/>
  30. <jsp:useBean id="myconfig" scope="page" class="com.redmoon.forum.Config"/>
  31. <jsp:useBean id="privilege" scope="page" class="com.redmoon.forum.Privilege"/>
  32. <%
  33. if (!privilege.isMasterLogin(request)) {
  34.     out.print(cn.js.fan.web.SkinUtil.makeErrMsg(request, cn.js.fan.web.SkinUtil.LoadString(request, "pvg_invalid")));
  35. return;
  36. }
  37. ForumDb fd = new ForumDb();
  38. fd = fd.getForumDb();
  39. String op = ParamUtil.get(request, "op");
  40. if (op.equals("setShowLink")) {
  41. boolean isShowLink = ParamUtil.getBoolean(request, "isShowLink", false);
  42. boolean canGuestSeeTopic = ParamUtil.getBoolean(request, "canGuestSeeTopic", false);
  43. boolean canGuestSeeAttachment = ParamUtil.getBoolean(request, "canGuestSeeAttachment", false);
  44. String guestAction = canGuestSeeTopic?"1":"0";
  45. guestAction += canGuestSeeAttachment?"1":"0";
  46. fd.setShowLink(isShowLink);
  47. fd.setGuestAction(guestAction);
  48. if (fd.save())
  49. out.print(StrUtil.Alert(SkinUtil.LoadString(request, "info_op_success")));
  50. else
  51. out.print(StrUtil.Alert_Back(SkinUtil.LoadString(request, "info_op_fail")));
  52. }
  53. fd = ForumDb.getInstance();
  54. %>
  55. <TABLE cellSpacing=0 cellPadding=0 width="100%">
  56.   <TBODY>
  57.     <TR>
  58.       <TD class=head><lt:Label res="res.label.forum.admin.config_m" key="sys_config"/></TD>
  59.     </TR>
  60.   </TBODY>
  61. </TABLE>
  62. <br>
  63. <table width="80%" 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" >
  64.   <tr> 
  65.     <td width="100%" height="23" class="thead">&nbsp;<lt:Label res="res.label.forum.admin.config_m" key="forum_config"/></td>
  66.   </tr>
  67.   <tr> 
  68.     <td valign="top" bgcolor="#FFFFFF"><table width="100%" border='0' align="center" cellpadding='0' cellspacing='0' class="tableframe_gray">
  69.       <tr >
  70.         <td width="100%" class="stable">    
  71.       <tr>
  72.         <FORM METHOD=POST ACTION="?op=setShowLink" name="form4">
  73.           <td height="23" colspan=3 align="center" class="stable"><table width="100%" border="0" cellpadding="0" cellspacing="1">
  74.               <tr>
  75.                 <td height="22" bgcolor="#F6F6F6"><input type="checkbox" name="isShowLink" value="true" <%=fd.isShowLink()?"checked":""%>>
  76.                     <lt:Label res="res.label.forum.admin.forum_m" key="show_link"/>
  77.                     <input type="checkbox" name="canGuestSeeTopic" value="true" <%=fd.canGuestSeeTopic()?"checked":""%>>
  78.                     <lt:Label res="res.label.forum.admin.forum_m" key="guest_can_view_topic"/>
  79.                     <input type="checkbox" name="canGuestSeeAttachment" value="true" <%=fd.canGuestSeeAttachment()?"checked":""%>>
  80.                     <lt:Label res="res.label.forum.admin.forum_m" key="guest_can_download_attach"/></td>
  81.                 <td width="14%" align="center" bgcolor="#F6F6F6"><input name="submit" type="submit" value="<lt:Label key="ok"/>"></td>
  82.               </tr>
  83.           </table></td>
  84.         </FORM>
  85.       </tr>
  86.     </TABLE>
  87.       <%
  88. Element root = myconfig.getRootElement();
  89. if (op.equals("setDefaultSkin")) {
  90. SkinMgr sm = new SkinMgr();
  91. String defaultSkinCode = ParamUtil.get(request, "defaultSkinCode");
  92. sm.setDefaultSkin(defaultSkinCode);
  93. out.print(StrUtil.Alert(SkinUtil.LoadString(request, "info_op_success")));
  94. }
  95. String name="",value = "";
  96. name = request.getParameter("name");
  97. if (name!=null && !name.equals(""))
  98. {
  99. value = ParamUtil.get(request, "value");
  100. myconfig.put(name,value);
  101. out.println(fchar.Alert_Redirect(SkinUtil.LoadString(request, "info_op_success"), "config_m.jsp"));
  102. ForumSchedulerUnit.initParam();
  103. com.redmoon.forum.MsgDb.initParam();
  104. ForumPage.init();
  105. }
  106. int k = 0;
  107. Iterator ir = root.getChild("forum").getChildren().iterator();
  108. String desc = "";
  109. while (ir.hasNext()) {
  110.   Element e = (Element)ir.next();
  111.   desc = e.getAttributeValue("desc");
  112.   name = e.getName();
  113.   value = e.getValue();
  114. %>
  115.       <table width="100%" border="0" align="center" cellpadding="2" cellspacing="1">
  116.         <FORM METHOD=POST id="form<%=k%>" name="form<%=k%>" ACTION='config_m.jsp'>
  117.           <tr> 
  118.             <td bgcolor=#F6F6F6 width='52%'> <INPUT TYPE=hidden name=name value="<%=name%>"> 
  119.               &nbsp;<%=myconfig.getDescription(request, name)%> 
  120.             <td bgcolor=#F6F6F6 width='34%'>
  121. <%
  122. if (name.equals("waterMarkPos")) {%>
  123. <select name="value">
  124. <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>
  125. <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>
  126. <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>
  127. <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>
  128. </select>
  129. <script>
  130. form<%=k%>.value.value = "<%=value%>";
  131. </script>
  132. <%}
  133. else if (value.equals("true") || value.equals("false")) {%>
  134. <select name="value"><option value="true"><lt:Label key="yes"/></option><option value="false"><lt:Label key="no"/></option></select>
  135. <script>
  136. form<%=k%>.value.value = "<%=value%>";
  137. </script>
  138. <%}else if(name.equals("userLevel")){%>
  139. <select name="value">
  140. <option value="levelCredit">信用值</option>
  141. <option value="levelExperience">经验值</option>
  142. <option value="levelGold">金币</option>
  143. <option value="levelTopticCount">最少发贴</option>
  144. </select>
  145. <script>
  146. form<%=k%>.value.value = "<%=value%>";
  147. </script>
  148. <%}else{%>
  149. <input type=text value="<%=value%>" name="value" style='border:1pt solid #636563;font-size:9pt' size=30>
  150.             <%}%>
  151. <td width="14%" align=center bgcolor=#F6F6F6> <INPUT TYPE=submit name='edit' value='<lt:Label key="op_modify"/>'>            </td>
  152.           </tr>
  153.         </FORM>
  154.       </table>
  155. <%
  156.   k++;
  157. }
  158. %>
  159. <table width="100%" border="0" align="center" cellpadding="2" cellspacing="1">
  160.   <FORM METHOD=POST id="form_skin" name="form_skin" ACTION='config_m.jsp?op=setDefaultSkin'>
  161.     <tr>
  162.       <td bgcolor=#F6F6F6 width='52%'>&nbsp;<%=myconfig.getDescription(request, "default_skin")%>
  163.       <td bgcolor=#F6F6F6 width='34%'>
  164.       <%
  165.   String opt = "";
  166.   SkinMgr sm = new SkinMgr();
  167.   Iterator irskin = sm.getAllSkin().iterator();
  168.   while (irskin.hasNext()) {
  169.    Skin sk = (Skin)irskin.next();
  170. String d = "";
  171. if (sk.isDefaultSkin())
  172. d = "selected";
  173. opt += "<option value=" + sk.getCode() + " " + d + ">" + sk.getName() + "</option>";
  174.   }
  175.   %>
  176.   <select name="defaultSkinCode">
  177.   <%=opt%>
  178.   </select>
  179.   </td>
  180.       <td width="14%" align=center bgcolor=#F6F6F6><INPUT TYPE=submit name='edit2' value='<lt:Label key="op_modify"/>'>
  181.       </td>
  182.     </tr>
  183.   </FORM>
  184. </table></td>
  185.   </tr>
  186.   <tr class=row style="BACKGROUND-COLOR: #fafafa">
  187.     <td valign="top" bgcolor="#FFFFFF" class="thead">&nbsp;</td>
  188.   </tr>
  189. </table> 
  190. </body>                                       
  191. </html>