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

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html; charset=utf-8" %>
  2. <%@ include file="../inc/inc.jsp" %>
  3. <%@ page import="cn.js.fan.web.*"%>
  4. <%@ page import="cn.js.fan.util.*"%>
  5. <%@ page import="com.redmoon.forum.*"%>
  6. <%@ page import="cn.js.fan.module.pvg.*" %>
  7. <%@ taglib uri="/WEB-INF/tlds/LabelTag.tld" prefix="lt" %>
  8. <jsp:useBean id="StrUtil" scope="page" class="cn.js.fan.util.StrUtil"/>
  9. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  10. <html><head>
  11. <meta http-equiv="pragma" content="no-cache">
  12. <meta http-equiv="Cache-Control" content="no-cache, must-revalidate">
  13. <meta http-equiv="expires" content="wed, 26 Feb 1997 08:21:57 GMT">
  14. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  15. <title><lt:Label res="res.label.forum.admin.forum_m" key="filter_info"/></title>
  16. <link rel="stylesheet" href="../../common.css">
  17. <script language="JavaScript">
  18. <!--
  19. function openWin(url,width,height)
  20. {
  21. var newwin = window.open(url,"_blank","scrollbars=yes,resizable=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,top=50,left=120,width="+width+",height="+height);
  22. }
  23. function openSelTopicWin() {
  24. openWin("../topic_m.jsp?action=sel", 640, 480);
  25. }
  26. function delNotice(id) {
  27. var ntc = form1.notices.value;
  28. var ary = ntc.split(",");
  29. var ary2 = new Array();
  30. var k = 0;
  31. for (var i=0; i<ary.length; i++) {
  32. if (ary[i]==id) {
  33. continue;
  34. }
  35. else {
  36. ary2[k] = ary[i];
  37. k++;
  38. }
  39. }
  40. ntc = "";
  41. for (i=0; i<ary2.length; i++) {
  42. if (ntc=="")
  43. ntc += ary2[i];
  44. else
  45. ntc += "," + ary2[i];
  46. }
  47. form1.notices.value = ntc;
  48. form1.submit();
  49. }
  50. function selTopic(ids) {
  51. // 检查在notices中是否已包含了ids中的id,避免重复加入
  52. var ary = ids.split(",");
  53. var ntc = form1.notices.value;
  54. var ary2 = ntc.split(",");
  55. for (var i=0; i<ary.length; i++) {
  56. var founded = false;
  57. for (var j=0; j<ary2.length; j++) {
  58. if (ary[i]==ary2[j]) {
  59. founded = true;
  60. break;
  61. }
  62. }
  63. if (!founded) {
  64. if (ntc=="")
  65. ntc += ary[i];
  66. else
  67. ntc += "," + ary[i];
  68. }
  69. }
  70. form1.notices.value = ntc;
  71. }
  72. function up(id) {
  73. var ntc = form1.notices.value;
  74. var ary = ntc.split(",");
  75. for (var i=0; i<ary.length; i++) {
  76. if (ary[i]==id) {
  77. // 往上移动的节点不是第一个节点
  78. if (i!=0) {
  79. var tmp = ary[i-1];
  80. ary[i-1] = ary[i];
  81. ary[i] = tmp;
  82. }
  83. else
  84. return;
  85. break;
  86. }
  87. }
  88. ntc = "";
  89. for (i=0; i<ary.length; i++) {
  90. if (ntc=="")
  91. ntc += ary[i];
  92. else
  93. ntc += "," + ary[i];
  94. }
  95. form1.notices.value = ntc;
  96. form1.submit();
  97. }
  98. function down(id) {
  99. var ntc = form1.notices.value;
  100. var ary = ntc.split(",");
  101. for (var i=0; i<ary.length; i++) {
  102. if (ary[i]==id) {
  103. // 往上移动的节点不是第一个节点
  104. if (i!=ary.length-1) {
  105. var tmp = ary[i+1];
  106. ary[i+1] = ary[i];
  107. ary[i] = tmp;
  108. }
  109. else
  110. return;
  111. break;
  112. }
  113. }
  114. ntc = "";
  115. for (i=0; i<ary.length; i++) {
  116. if (ntc=="")
  117. ntc += ary[i];
  118. else
  119. ntc += "," + ary[i];
  120. }
  121. form1.notices.value = ntc;
  122. form1.submit();
  123. }
  124. //-->
  125. </script>
  126. <LINK href="default.css" type=text/css rel=stylesheet>
  127. <body bgcolor="#FFFFFF" topmargin='0' leftmargin='0'>
  128. <%
  129. ForumDb fd = new ForumDb();
  130. fd = fd.getForumDb();
  131. String op = ParamUtil.get(request, "op");
  132. if (op.equals("setNotice")) {
  133. String ids = ParamUtil.get(request, "notices");
  134. fd.setNotices(ids);
  135. if (fd.save())
  136. out.print(StrUtil.Alert(SkinUtil.LoadString(request, "info_op_success")));
  137. else
  138. out.print(StrUtil.Alert_Back(SkinUtil.LoadString(request, "info_op_fail")));
  139. }
  140. if (op.equals("setFilterName")) {
  141. String filterName = ParamUtil.get(request, "filterName");
  142. fd.setFilterUserName(filterName);
  143. if (fd.save())
  144. out.print(StrUtil.Alert(SkinUtil.LoadString(request, "info_op_success")));
  145. else
  146. out.print(StrUtil.Alert_Back(SkinUtil.LoadString(request, "info_op_fail")));
  147. }
  148. if (op.equals("setFilterMsg")) {
  149. String filterMsg = ParamUtil.get(request, "filterMsg");
  150. fd.setFilterMsg(filterMsg);
  151. if (fd.save())
  152. out.print(StrUtil.Alert(SkinUtil.LoadString(request, "info_op_success")));
  153. else
  154. out.print(StrUtil.Alert_Back(SkinUtil.LoadString(request, "info_op_fail")));
  155. }
  156. fd = ForumDb.getInstance();
  157. %>
  158. <table width='100%' cellpadding='0' cellspacing='0' >
  159.   <tr>
  160.     <td class="head"><lt:Label res="res.label.forum.admin.forum_m" key="forum_notice"/></td>
  161.   </tr>
  162. </table>
  163. <jsp:useBean id="privilege" scope="page" class="com.redmoon.forum.Privilege"/>
  164. <%
  165. if (!privilege.isMasterLogin(request))
  166. {
  167. out.print(cn.js.fan.web.SkinUtil.makeErrMsg(request, cn.js.fan.web.SkinUtil.LoadString(request, "pvg_invalid")));
  168. return;
  169. }%>
  170. <br>
  171. <TABLE class="frame_gray" cellSpacing=0 cellPadding=0 width="95%" align=center>
  172.   <TBODY>
  173.     <TR>
  174.       <TD valign="top" bgcolor="#FFFBFF" class="thead"><lt:Label res="res.label.forum.admin.forum_m" key="forum_notice"/></TD>
  175.     </TR>
  176.     <TR>
  177.       <TD height=166 valign="top" bgcolor="#FFFBFF"><br>
  178.       <table width="80%" border='0' align="center" cellpadding='5' cellspacing='0' class="tableframe_gray">
  179.         <tr>
  180.           <td height=20 align="left"><lt:Label res="res.label.forum.admin.forum_m" key="notice"/></td>
  181.           </tr>
  182.         <tr>
  183.           <td valign="top"><table width="100%" border='0' align="center" cellpadding='0' cellspacing='0'>
  184.               <tr >
  185.                 <td width="100%">                    <tr>
  186.                       <FORM METHOD=POST ACTION="?op=setNotice" name="form1">
  187.                         <td height="23" colspan=3 align="center"><table width="100%">
  188.                           <tr>
  189.                             <td width="32%" height="22"><input type=text value="<%=fd.getNotices()%>" name="notices" style='border:1pt solid #636563;font-size:9pt' size=40>
  190.                             </td>
  191.                             <td width="68%"><input type="submit" value="<lt:Label key="ok"/>">
  192. &nbsp;&nbsp;&nbsp;
  193.                             <input type="button" value="<lt:Label res="res.label.forum.admin.forum_m" key="cancel_notice"/>" onClick="window.location.href='forum_notice.jsp?op=setNotice&noticeMsgId=-1'">
  194.                             &nbsp;&nbsp;
  195.                             <input type="button" value="<lt:Label res="res.label.forum.admin.forum_m" key="sel_topic"/>" onClick="openSelTopicWin()"></td>
  196.                           </tr>
  197.                           <tr>
  198.                             <td height="22" colspan="2" align="left"><%
  199. Vector v = fd.getAllNotice();
  200. int nsize = v.size();
  201. if (nsize==0)
  202. out.print(SkinUtil.LoadString(request, "res.label.forum.admin.forum_m", "no_notice"));
  203. else {
  204. for (int k=0; k<nsize; k++) {
  205. MsgDb md = (MsgDb)v.get(k);
  206. String color = StrUtil.getNullString(md.getColor());
  207. String tp = md.getTitle();
  208. if (!color.equals(""))
  209. tp = "<font color='" + color + "'>" + tp + "</font>";
  210. if (md.isBold())
  211. tp = "<B>" + tp + "</B>";
  212. %>
  213.   <img src="../../images/arrow.gif">&nbsp;<a href="../showtopic.jsp?rootid=<%=md.getId()%>"><%=tp%></a>&nbsp;&nbsp;[<a href="javascript:delNotice('<%=md.getId()%>')"><lt:Label key="op_del"/></a>]
  214.   <%if (k!=0) {%>
  215. &nbsp;&nbsp;[<a href="javascript:up('<%=md.getId()%>')">
  216. <lt:Label res="res.label.forum.admin.ad_topic_bottom" key="up"/>
  217. </a>]
  218. <%}%>
  219. <%if (k!=nsize-1) {%>
  220. &nbsp;&nbsp;[<a href="javascript:down('<%=md.getId()%>')">
  221. <lt:Label res="res.label.forum.admin.ad_topic_bottom" key="down"/>
  222. </a>]
  223. <%}%>
  224. <BR>
  225.                             <% }
  226. }%></td>
  227.                           </tr>
  228.                         </table></td>
  229.                       </FORM>
  230.                     </tr>
  231.           </TABLE></td>
  232.         </tr>
  233.         </table>
  234.       <br></TD>
  235.     </TR>
  236.   </TBODY>
  237. </TABLE>
  238. </td>
  239. </tr>
  240. </table>
  241. </td>
  242. </tr>
  243. </table>
  244. </body>  
  245. <script>
  246. function form5_onsubmit() {
  247. form5.reason.value = getHtml();
  248. if (form5.reason.value.length>3000) {
  249. alert("<lt:Label res="res.label.forum.admin.forum_m" key="too_long"/>" + 3000);
  250. return false;
  251. }
  252. }
  253. </script>                                      
  254. </html>                            
  255.