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

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.security.*"%>
  8. <%@ page import="com.redmoon.forum.*"%>
  9. <%@ page import="org.jdom.*"%>
  10. <%@ include file="../inc/inc.jsp" %>
  11. <%@ include file="../inc/nocache.jsp" %>
  12. <%@ taglib uri="/WEB-INF/tlds/LabelTag.tld" prefix="lt" %>
  13. <jsp:useBean id="fchar" scope="page" class="cn.js.fan.util.StrUtil"/>
  14. <html><head>
  15. <meta http-equiv="pragma" content="no-cache">
  16. <meta http-equiv="Cache-Control" content="no-cache, must-revalidate">
  17. <meta http-equiv="expires" content="wed, 26 Feb 1997 08:21:57 GMT">
  18. <title><lt:Label res="res.label.forum.admin.config_m" key="forum_config"/></title>
  19. <%@ include file="../inc/nocache.jsp" %>
  20. <LINK href="images/default.css" type=text/css rel=stylesheet>
  21. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  22. <style type="text/css">
  23. <!--
  24. body {
  25. margin-left: 0px;
  26. margin-top: 0px;
  27. }
  28. -->
  29. </style><body bgcolor="#FFFFFF">
  30. <jsp:useBean id="cfgparser" scope="page" class="cn.js.fan.util.CFGParser"/>
  31. <jsp:useBean id="regconfig" scope="page" class="com.redmoon.forum.RegConfig"/>
  32. <jsp:useBean id="privilege" scope="page" class="com.redmoon.forum.Privilege"/>
  33. <%
  34. if (!privilege.isMasterLogin(request)) {
  35. out.print(cn.js.fan.web.SkinUtil.makeErrMsg(request, cn.js.fan.web.SkinUtil.LoadString(request, "pvg_invalid")));
  36. return;
  37. }
  38. %>
  39. <TABLE cellSpacing=0 cellPadding=0 width="100%">
  40.   <TBODY>
  41.     <TR>
  42.       <TD class=head><lt:Label res="res.label.forum.admin.ad_list" key="reg_config"/></TD>
  43.     </TR>
  44.   </TBODY>
  45. </TABLE>
  46. <br>
  47. <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" >
  48.   <tr> 
  49.     <td width="100%" height="23" class="thead">&nbsp;<lt:Label res="res.label.forum.admin.config_m" key="forum_config"/></td>
  50.   </tr>
  51.   <tr> 
  52.     <td>
  53. <%
  54. Element root = regconfig.getRootElement();
  55. String name="",value = "";
  56. name = request.getParameter("name");
  57. if (name!=null && !name.equals(""))
  58. {
  59.         value = ParamUtil.get(request, "value");
  60.         if(!regconfig.isValueValid(value,name)){
  61. out.println(fchar.Alert_Redirect(SkinUtil.LoadString(request, "info_op_fail"), "config_reg.jsp"));
  62. return;
  63. }
  64. regconfig.put(name,value);
  65. out.println(fchar.Alert_Redirect(SkinUtil.LoadString(request, "info_op_success"), "config_reg.jsp"));
  66. }
  67. int k = 0;
  68. Iterator ir = root.getChild("forum").getChildren().iterator();
  69. String desc = "",help = "";
  70. while (ir.hasNext()) {
  71. Element e = (Element)ir.next();
  72. desc = e.getAttributeValue("desc");
  73. help = e.getAttributeValue("help");
  74. name = e.getName();
  75. value = e.getValue();
  76. %>
  77.       <table width="100%" border="0" align="center" cellpadding="2" cellspacing="1">
  78.         <FORM METHOD=POST id="form<%=k%>" name="form<%=k%>" ACTION='config_reg.jsp'>
  79.           <tr> 
  80.             <td bgcolor=#F6F6F6 width='43%'> <INPUT TYPE=hidden name=name value="<%=name%>"> 
  81.               <strong><%=regconfig.getDescription(request, name)%>:</strong><br><%=regconfig.getDescription(request, name + "_help")%>
  82.             <td bgcolor=#F6F6F6 width='35%'>
  83. <%
  84. if (value.equals("true") || value.equals("false")) {
  85. %>
  86. <select name="value"><option value="true"><lt:Label key="yes"/></option><option value="false"><lt:Label key="no"/></option></select>
  87. <script>
  88. form<%=k%>.value.value = "<%=value%>";
  89. </script>
  90. <%
  91. }else{
  92. if(name.equals("regVerify")){
  93. %>
  94. <select name="value"><option value="<%=RegConfig.REGIST_VERIFY_NOT%>"><lt:Label res="res.label.forum.admin.config_m" key="no"/></option><option value="<%=RegConfig.REGIST_VERIFY_EMAIL%>"><lt:Label res="res.label.forum.admin.config_m" key="Email_confirm"/></option><option value="<%=RegConfig.REGIST_VERIFY_MANUAL%>"><lt:Label res="res.label.forum.admin.config_m" key="man_check"/></option></select>
  95. <script>
  96. form<%=k%>.value.value = "<%=value%>";
  97. </script>
  98. <%
  99.                 }else{
  100. if(name.equals("IPRegCtrl") || name.equals("newUserAddTopicTimeLimit") || name.equals("registInterval") || name.equals("registUseValidateCodeLen") || name.equals("welcomeMsgTitle")){
  101. %>
  102. <input type=text value="<%=value%>" name="value" style='border:1pt solid #636563;font-size:9pt' size=30>
  103. <%
  104. }else{
  105. %>
  106. <textarea name="value" style='border:1pt solid #636563;font-size:9pt' cols="40" rows="5"><%=value%></textarea>
  107. <%
  108. }
  109. }
  110. }
  111. %>
  112. <td width="22%" align=center bgcolor=#F6F6F6> <INPUT TYPE=submit value='<lt:Label key="op_modify"/>'></td>
  113.           </tr>
  114.         </FORM>
  115.       </table>
  116. <%
  117.   k++;
  118. }
  119. %>
  120. </td>
  121.   </tr>
  122.   <tr class=row style="BACKGROUND-COLOR: #fafafa">
  123.     <td valign="top" bgcolor="#FFFFFF" class="thead">&nbsp;</td>
  124.   </tr>
  125. </table> 
  126. </body>                                       
  127. </html>