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

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html;charset=utf-8"%>
  2. <%@ page import="org.jdom.*"%>
  3. <%@ page import="org.jdom.output.*"%>
  4. <%@ page import="org.jdom.input.*"%>
  5. <%@ page import="java.util.Iterator"%>
  6. <%@ page import="com.redmoon.forum.*"%>
  7. <%@ page import="cn.js.fan.util.*"%>
  8. <%@ page import="com.redmoon.forum.person.*"%>
  9. <%@ taglib uri="/WEB-INF/tlds/LabelTag.tld" prefix="lt" %>
  10. <%
  11. String skincode = UserSet.getSkin(request);
  12. if (skincode.equals(""))
  13. skincode = UserSet.defaultSkin;
  14. SkinMgr skm = new SkinMgr();
  15. Skin skin = skm.getSkin(skincode);
  16. if (skin==null)
  17. skin = skm.getSkin(UserSet.defaultSkin);
  18. String skinPath = skin.getPath();
  19. %>
  20. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
  21. <HTML><HEAD><TITLE><%=Global.AppName%> -   <lt:Label res="res.label.forum.manager" key="toptic_op"/></TITLE>
  22. <META http-equiv=Content-Type content="text/html; charset=utf-8">
  23. <%@ include file="../inc/nocache.jsp"%>
  24. <link href="../<%=skinPath%>/skin.css" rel="stylesheet" type="text/css">
  25. <STYLE>
  26. TABLE {
  27. BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 1px
  28. }
  29. TD {
  30. BORDER-RIGHT: 0px; BORDER-TOP: 0px
  31. }
  32. .style1 {color: #FFFFFF}
  33. body {
  34. margin-left: 0px;
  35. margin-right: 0px;
  36. }
  37. </STYLE>
  38. <script>
  39. function findObj(theObj, theDoc)
  40. {
  41.   var p, i, foundObj;
  42.   
  43.   if(!theDoc) theDoc = document;
  44.   if( (p = theObj.indexOf("?")) > 0 && parent.frames.length)
  45.   {
  46.     theDoc = parent.frames[theObj.substring(p+1)].document;
  47.     theObj = theObj.substring(0,p);
  48.   }
  49.   if(!(foundObj = theDoc[theObj]) && theDoc.all) foundObj = theDoc.all[theObj];
  50.   for (i=0; !foundObj && i < theDoc.forms.length; i++) 
  51.     foundObj = theDoc.forms[i][theObj];
  52.   for(i=0; !foundObj && theDoc.layers && i < theDoc.layers.length; i++) 
  53.     foundObj = findObj(theObj,theDoc.layers[i].document);
  54.   if(!foundObj && document.getElementById) foundObj = document.getElementById(theObj);
  55.   
  56.   return foundObj;
  57. }
  58. var GetDate=""; 
  59. function SelectDate(ObjName,FormatDate){
  60. var PostAtt = new Array;
  61. PostAtt[0]= FormatDate;
  62. PostAtt[1]= findObj(ObjName);
  63. GetDate = showModalDialog("../../util/calendar/calendar.htm", PostAtt ,"dialogWidth:286px;dialogHeight:221px;status:no;help:no;");
  64. }
  65. function SetDate()
  66. findObj(ObjName).value = GetDate; 
  67. </script>
  68. <META content="MSHTML 6.00.2600.0" name=GENERATOR></HEAD>
  69. <BODY topMargin=0>
  70. <%@ include file="../inc/header.jsp"%>
  71. <%@ include file="../inc/inc.jsp"%>
  72. <jsp:useBean id="privilege" scope="page" class="com.redmoon.forum.Privilege"/>
  73. <jsp:useBean id="topic" scope="page" class="com.redmoon.forum.MsgMgr" />
  74. <%
  75. String querystring = StrUtil.getNullString(request.getQueryString());
  76. String privurl=request.getRequestURL()+"?"+StrUtil.UrlEncode(querystring,"utf-8");
  77. int id = 0;
  78. try {
  79. id = ParamUtil.getInt(request, "id");
  80. }
  81. catch (ErrMsgException e) {
  82. out.print(StrUtil.p_center(e.getMessage(), "red"));
  83. return;
  84. }
  85. if (!privilege.isUserLogin(request)) {
  86. out.print(StrUtil.Alert_Redirect(SkinUtil.LoadString(request,"info_please_login"), "../index.jsp"));
  87. return;
  88. }
  89. if (!privilege.canManage(request, id)) {
  90. out.print(StrUtil.Alert_Redirect(SkinUtil.LoadString(request,"res.label.forum.manager","error_pvg") + "\n" + SkinUtil.LoadString(request,"res.label.forum.manager","check_ok"), "../treasure_use.jsp?id="+id));
  91. return;
  92. }
  93. boolean re = false;
  94. String op = ParamUtil.get(request, "op");
  95. if (op.equals("changeColor")) {
  96. try {
  97. re = topic.ChangeColor(request);
  98. if (re) {
  99. out.println(StrUtil.Alert(SkinUtil.LoadString(request,"info_operate_success")));
  100. }
  101. else {
  102. out.println(StrUtil.Alert(SkinUtil.LoadString(request,"info_operate_fail")));
  103. }
  104. }
  105. catch (ErrMsgException e) {
  106. out.print(StrUtil.p_center(e.getMessage(),"red"));
  107. }
  108. }
  109. if (op.equals("changeBold")) {
  110. try {
  111. re = topic.ChangeBold(request);
  112. if (re) {
  113. out.println(StrUtil.Alert(SkinUtil.LoadString(request,"info_operate_success")));
  114. }
  115. else {
  116. out.println(StrUtil.Alert(SkinUtil.LoadString(request,"info_operate_fail")));
  117. }
  118. }
  119. catch (ErrMsgException e) {
  120. out.print(StrUtil.p_center(e.getMessage(),"red"));
  121. }
  122. }
  123. MsgDb md = new MsgDb();
  124. md = md.getMsgDb(id);
  125. String boardCode = md.getboardcode();
  126. %>   
  127.   <table width="100%" border="0" cellspacing="1" cellpadding="3" align="center" class="9black">
  128.     <tr> 
  129.       <td height="153" align="center" valign="middle"> 
  130.         <div align="">
  131.   <table width="100%"  border="0" cellspacing="1" cellpadding="1">
  132.             <tr>
  133.               <td align="center">
  134.                 <%
  135. Leaf lf = new Leaf();
  136. lf = lf.getLeaf(boardCode);
  137. %>
  138.     <lt:Label res="res.label.forum.manager" key="board"/><a href="../listtopic.jsp?boardcode=<%=StrUtil.UrlEncode(boardCode)%>"><%=lf.getName()%></a>
  139.   <%if (md.isBold()) out.print("<B>");%>
  140.   <%
  141. String color = StrUtil.getNullString(md.getColor());
  142. if (color.equals("")) {%>
  143.   <a href="../showtopic.jsp?rootid=<%=id%>"><%=md.getTitle()%></a>
  144.   <%}else{%>
  145.   <a href="../showtopic.jsp?rootid=<%=id%>"><font color="<%=color%>"><%=md.getTitle()%></font></a>
  146.   <%}%>
  147.   <%if (md.isBold()) out.print("</B>");%>
  148.               </td>
  149.             </tr>
  150.           </table>
  151.   <table width="100%"  border="0" align="center" cellpadding="5">
  152.             <tr>
  153.               <td align="center"><form name="form1" method="post" action="?op=changeColor">
  154.   <span class="stable"> &nbsp;
  155.   <select name="color">
  156.     <option value="" style="COLOR: black" selected><lt:Label res="res.label.forum.manager" key="clear_color"/></option>
  157.     <option style="BACKGROUND: #000088" value="#000088"></option>
  158.     <option style="BACKGROUND: #0000ff" value="#0000ff"></option>
  159.     <option style="BACKGROUND: #008800" value="#008800"></option>
  160.     <option style="BACKGROUND: #008888" value="#008888"></option>
  161.     <option style="BACKGROUND: #0088ff" value="#0088ff"></option>
  162.     <option style="BACKGROUND: #00a010" value="#00a010"></option>
  163.     <option style="BACKGROUND: #1100ff" value="#1100ff"></option>
  164.     <option style="BACKGROUND: #111111" value="#111111"></option>
  165.     <option style="BACKGROUND: #333333" value="#333333"></option>
  166.     <option style="BACKGROUND: #50b000" value="#50b000"></option>
  167.     <option style="BACKGROUND: #880000" value="#880000"></option>
  168.     <option style="BACKGROUND: #8800ff" value="#8800ff"></option>
  169.     <option style="BACKGROUND: #888800" value="#888800"></option>
  170.     <option style="BACKGROUND: #888888" value="#888888"></option>
  171.     <option style="BACKGROUND: #8888ff" value="#8888ff"></option>
  172.     <option style="BACKGROUND: #aa00cc" value="#aa00cc"></option>
  173.     <option style="BACKGROUND: #aaaa00" value="#aaaa00"></option>
  174.     <option style="BACKGROUND: #ccaa00" value="#ccaa00"></option>
  175.     <option style="BACKGROUND: #ff0000" value="#ff0000"></option>
  176.     <option style="BACKGROUND: #ff0088" value="#ff0088"></option>
  177.     <option style="BACKGROUND: #ff00ff" value="#ff00ff"></option>
  178.     <option style="BACKGROUND: #ff8800" value="#ff8800"></option>
  179.     <option style="BACKGROUND: #ff0005" value="#ff0005"></option>
  180.     <option style="BACKGROUND: #ff88ff" value="#ff88ff"></option>
  181.     <option style="BACKGROUND: #ee0005" value="#ee0005"></option>
  182.     <option style="BACKGROUND: #ee01ff" value="#ee01ff"></option>
  183.     <option style="BACKGROUND: #3388aa" value="#3388aa"></option>
  184.     <option style="BACKGROUND: #000000" value="#000000"></option>
  185.   </select>
  186.   <script>
  187. form1.color.value = "<%=color%>";
  188.   </script>
  189.   <input type=hidden name="id" value="<%=id%>">
  190.   </span> &nbsp;  <lt:Label res="res.label.forum.manager" key="to_date"/>
  191. <input name=colorExpire size=10 readonly value="<%=DateUtil.format(md.getColorExpire(), "yyyy-MM-dd")%>"><img src="../../util/calendar/calendar.gif" align=absMiddle style="cursor:hand" onClick="SelectDate('colorExpire','yyyy-mm-dd')">  
  192.   <input type="submit" name="Submit" value="<%=SkinUtil.LoadString(request,"ok")%>">
  193.   <br>
  194.               </form></td>
  195.             </tr>
  196.             <tr>
  197.               <td align="center"><form name="form2" method="post" action="?op=changeBold">
  198.   <input type=hidden name="id" value="<%=id%>">
  199.   <input type=checkbox name=isBold value="1" <%=md.isBold()?"checked":""%>>
  200.   <lt:Label res="res.label.forum.manager" key="blod_display"/>
  201.   <lt:Label res="res.label.forum.manager" key="to_date"/>
  202.   <input name=boldExpire size=10 readonly value="<%=DateUtil.format(md.getBoldExpire(), "yyyy-MM-dd")%>">
  203.   <img src="../../util/calendar/calendar.gif" align=absMiddle style="cursor:hand" onClick="SelectDate('boldExpire','yyyy-mm-dd')">
  204. <input type="submit" name="Submit" value="<%=SkinUtil.LoadString(request,"ok")%>">
  205.   <br>
  206.               </form></td>
  207.             </tr>
  208.           </table>
  209.         </div>                
  210.   </td>
  211.     </tr>
  212. </table>
  213. <%@ include file="../inc/footer.jsp"%>
  214. </BODY></HTML>