ad_topic_bottom.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. <jsp:useBean id="StrUtil" scope="page" class="cn.js.fan.util.StrUtil"/>
  8. <%@ taglib uri="/WEB-INF/tlds/LabelTag.tld" prefix="lt" %>
  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.ad_topic_bottom" key="ad_manage"/></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 up(id) {
  27. var ntc = form1.advertise.value;
  28. var ary = ntc.split(",");
  29. for (var i=0; i<ary.length; i++) {
  30. if (ary[i]==id) {
  31. // 往上移动的节点不是第一个节点
  32. if (i!=0) {
  33. var tmp = ary[i-1];
  34. ary[i-1] = ary[i];
  35. ary[i] = tmp;
  36. }
  37. else
  38. return;
  39. break;
  40. }
  41. }
  42. ntc = "";
  43. for (i=0; i<ary.length; i++) {
  44. if (ntc=="")
  45. ntc += ary[i];
  46. else
  47. ntc += "," + ary[i];
  48. }
  49. form1.advertise.value = ntc;
  50. form1.submit();
  51. }
  52. function down(id) {
  53. var ntc = form1.advertise.value;
  54. var ary = ntc.split(",");
  55. for (var i=0; i<ary.length; i++) {
  56. if (ary[i]==id) {
  57. // 往上移动的节点不是第一个节点
  58. if (i!=ary.length-1) {
  59. var tmp = ary[i+1];
  60. ary[i+1] = ary[i];
  61. ary[i] = tmp;
  62. }
  63. else
  64. return;
  65. break;
  66. }
  67. }
  68. ntc = "";
  69. for (i=0; i<ary.length; i++) {
  70. if (ntc=="")
  71. ntc += ary[i];
  72. else
  73. ntc += "," + ary[i];
  74. }
  75. form1.advertise.value = ntc;
  76. form1.submit();
  77. }
  78. function delAD(id) {
  79. var ntc = form1.advertise.value;
  80. var ary = ntc.split(",");
  81. var ary2 = new Array();
  82. var k = 0;
  83. for (var i=0; i<ary.length; i++) {
  84. if (ary[i]==id) {
  85. continue;
  86. }
  87. else {
  88. ary2[k] = ary[i];
  89. k++;
  90. }
  91. }
  92. ntc = "";
  93. for (i=0; i<ary2.length; i++) {
  94. if (ntc=="")
  95. ntc += ary2[i];
  96. else
  97. ntc += "," + ary2[i];
  98. }
  99. form1.advertise.value = ntc;
  100. form1.submit();
  101. }
  102. function selTopic(ids) {
  103. // 检查在advertise中是否已包含了ids中的id,避免重复加入
  104. var ary = ids.split(",");
  105. var ntc = form1.advertise.value;
  106. var ary2 = ntc.split(",");
  107. for (var i=0; i<ary.length; i++) {
  108. var founded = false;
  109. for (var j=0; j<ary2.length; j++) {
  110. if (ary[i]==ary2[j]) {
  111. founded = true;
  112. break;
  113. }
  114. }
  115. if (!founded) {
  116. if (ntc=="")
  117. ntc += ary[i];
  118. else
  119. ntc += "," + ary[i];
  120. }
  121. }
  122. form1.advertise.value = ntc;
  123. }
  124. //-->
  125. </script>
  126. <link href="../common.css" rel="stylesheet" type="text/css">
  127. <LINK href="default.css" type=text/css rel=stylesheet>
  128. <body bgcolor="#FFFFFF" topmargin='0' leftmargin='0'>
  129. <%
  130. ForumDb fd = new ForumDb();
  131. fd = fd.getForumDb();
  132. String op = ParamUtil.get(request, "op");
  133. if (op.equals("setAdvertise")) {
  134. String ids = ParamUtil.get(request, "advertise");
  135. fd.setAdTopicBottom(ids);
  136. if (fd.save())
  137. out.print(StrUtil.Alert(SkinUtil.LoadString(request, "info_op_success")));
  138. else
  139. out.print(StrUtil.Alert(SkinUtil.LoadString(request, "info_op_fail")));
  140. }
  141. fd = ForumDb.getInstance();
  142. %>
  143. <table width='100%' cellpadding='0' cellspacing='0' >
  144.   <tr>
  145.     <td class="head"><lt:Label res="res.label.forum.admin.ad_topic_bottom" key="ad_manage"/></td>
  146.   </tr>
  147. </table>
  148. <jsp:useBean id="privilege" scope="page" class="com.redmoon.forum.Privilege"/>
  149. <%
  150. if (!privilege.isMasterLogin(request))
  151. {
  152. out.print(cn.js.fan.web.SkinUtil.makeErrMsg(request, cn.js.fan.web.SkinUtil.LoadString(request, "pvg_invalid")));
  153. return;
  154. }%>
  155. <br>
  156. <TABLE class="frame_gray"  
  157. cellSpacing=0 cellPadding=0 width="95%" align=center>
  158.   <TBODY>
  159.     <TR>
  160.       <TD valign="top" bgcolor="#FFFBFF" class="thead"><lt:Label res="res.label.forum.admin.ad_topic_bottom" key="ad_setup"/></TD>
  161.     </TR>
  162.     <TR>
  163.       <TD valign="top" bgcolor="#FFFBFF"><br>
  164.       <table width="60%" border='0' align="center" cellpadding='0' cellspacing='0' class="tableframe_gray">
  165.         <tr>
  166.           <td height=20 align="left">&nbsp;&nbsp;<lt:Label res="res.label.forum.admin.ad_topic_bottom" key="ad_desc"/></td>
  167.           </tr>
  168.         <tr>
  169.           <td valign="top"><table width="100%" border='0' align="center" cellpadding='0' cellspacing='0'>
  170.               <tr >
  171.                 <td width="100%">                    <tr>
  172.                       <FORM METHOD=POST ACTION="?op=setAdvertise" name="form1">
  173.                         <td height="23" colspan=3 align="center"><table width="100%">
  174.                           <tr>
  175.                             <td width="44%" height="22" align="left"><input type=text value="<%=fd.getAdTopicBottom()%>" name="advertise" style='border:1pt solid #636563;font-size:9pt' size=40>                            </td>
  176.                             <td><input type="submit" value="<lt:Label key="ok"/>">
  177. &nbsp;&nbsp;&nbsp;
  178.                             <input type="button" value="<lt:Label res="res.label.forum.admin.ad_topic_bottom" key="sel_topic"/>" onClick="openSelTopicWin()"></td>
  179.                           </tr>
  180.                           <tr>
  181.                             <td colspan="2" align="left"><%
  182. Vector v = fd.getAllAdTopicBottom();
  183. int nsize = v.size();
  184. if (nsize==0)
  185. out.print(SkinUtil.LoadString(request, "res.label.forum.admin.ad_topic_bottom", "no_ad"));
  186. else {
  187. for (int k=0; k<nsize; k++) {
  188. MsgDb md = (MsgDb)v.get(k);
  189. String color = StrUtil.getNullString(md.getColor());
  190. if (color.equals("")) {%>
  191.                                <img src="../../images/arrow.gif">&nbsp;<a href="../showtopic.jsp?rootid=<%=md.getId()%>"><%=md.getTitle()%></a>&nbsp;&nbsp;[<a href="javascript:delAD('<%=md.getId()%>')"><lt:Label key="op_del"/></a>]
  192.   <%if (k!=0) {%>
  193.    &nbsp;&nbsp;[<a href="javascript:up('<%=md.getId()%>')"><lt:Label res="res.label.forum.admin.ad_topic_bottom" key="up"/></a>]
  194.   <%}%>
  195.   <%if (k!=nsize-1) {%>
  196.    &nbsp;&nbsp;[<a href="javascript:down('<%=md.getId()%>')"><lt:Label res="res.label.forum.admin.ad_topic_bottom" key="down"/></a>]
  197.    <%}%>
  198.   <BR>
  199.                               <%}else{%>
  200.   <img src="../../images/arrow.gif">&nbsp;<a href="../showtopic.jsp?rootid=<%=md.getId()%>"><font color="<%=color%>"><%=md.getTitle()%></font></a>&nbsp;&nbsp;[<a href="javascript:delAD('<%=md.getId()%>')"><lt:Label key="op_del"/></a>]
  201.   <%if (k!=0) {%>
  202. &nbsp;&nbsp;[<a href="javascript:up('<%=md.getId()%>')"><lt:Label res="res.label.forum.admin.ad_topic_bottom" key="up"/></a>]
  203. <%}%>
  204. <%if (k!=nsize-1) {%>
  205. &nbsp;&nbsp;[<a href="javascript:down('<%=md.getId()%>')"><lt:Label res="res.label.forum.admin.ad_topic_bottom" key="down"/></a>]
  206. <%}%>
  207. <BR>
  208.   <%}%>
  209.                             <% }
  210. }%></td>
  211.                           </tr>
  212.                         </table></td>
  213.                       </FORM>
  214.                     </tr>
  215.           </TABLE></td>
  216.         </tr>
  217.         </table>
  218.       <br></TD>
  219.     </TR>
  220.   </TBODY>
  221. </TABLE>
  222. <br>
  223. </td>
  224. </tr>
  225. </table>
  226. </td>
  227. </tr>
  228. </table>
  229. </body>  
  230. </html>                            
  231.