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

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html; charset=utf-8" language="java" import="java.sql.*" errorPage="" %>
  2. <%@ page import="java.io.InputStream" %>
  3. <%@ page import="java.util.*" %>
  4. <%@ page import="cn.js.fan.web.*" %>
  5. <%@ page import="cn.js.fan.db.*" %>
  6. <%@ page import="cn.js.fan.util.*" %>
  7. <%@ page import="com.redmoon.forum.*" %>
  8. <%@ page import="com.redmoon.forum.plugin2.*" %>
  9. <%@ page import="com.redmoon.forum.ui.*" %>
  10. <%@ taglib uri="/WEB-INF/tlds/LabelTag.tld" prefix="lt" %>
  11. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  12. <html>
  13. <head>
  14. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  15. <title></title>
  16. <LINK href="../common.css" type=text/css rel=stylesheet>
  17. <LINK href="default.css" type=text/css rel=stylesheet>
  18. </head>
  19. <body>
  20. <jsp:useBean id="dir" scope="page" class="com.redmoon.forum.Directory"/>
  21. <jsp:useBean id="privilege" scope="page" class="com.redmoon.forum.Privilege"/>
  22. <%
  23. if (!privilege.isMasterLogin(request)) {
  24. out.print(cn.js.fan.web.SkinUtil.makeErrMsg(request, cn.js.fan.web.SkinUtil.LoadString(request, "pvg_invalid")));
  25. return;
  26. }
  27. %>
  28. <%
  29. String parent_code = ParamUtil.get(request, "parent_code");
  30. if (parent_code.equals(""))
  31. parent_code = "root";
  32. String parent_name = ParamUtil.get(request, "parent_name");
  33. String code = ParamUtil.get(request, "code");
  34. String name = ParamUtil.get(request, "name");
  35. String description = ParamUtil.get(request, "description");
  36. String op = ParamUtil.get(request, "op");
  37. boolean isHome = false;
  38. int type = 0;
  39. if (op.equals(""))
  40. op = "AddChild";
  41. Leaf leaf = null;
  42. if (op.equals("modifydo")) {
  43. boolean re = true;
  44. try {
  45. re = dir.update(application, request);
  46. }
  47. catch (ErrMsgException e) {
  48. out.print(StrUtil.Alert(e.getMessage()));
  49. }
  50. if (re)
  51. out.print(StrUtil.Alert(SkinUtil.LoadString(request, "res.label.forum.admin.dir_bottom", "op_success_need_refresh")));
  52. }
  53. String action = "dir_top.jsp";
  54. String target = "dirmainFrame";
  55. if (op.equals("modify") || op.equals("modifydo")) {
  56. leaf = dir.getLeaf(code);
  57. Leaf parentLeaf = leaf.getLeaf(leaf.getParentCode());
  58. parent_name = parentLeaf.getName();
  59. name = leaf.getName();
  60. description = leaf.getDescription();
  61. type = leaf.getType();
  62. isHome = leaf.getIsHome();
  63. op = "modifydo";
  64. action = "dir_bottom.jsp";
  65. target = "_self";
  66. }
  67. %>
  68. <TABLE 
  69. style="BORDER-RIGHT: #a6a398 1px solid; BORDER-TOP: #a6a398 1px solid; BORDER-LEFT: #a6a398 1px solid; BORDER-BOTTOM: #a6a398 1px solid" 
  70. cellSpacing=0 cellPadding=3 width="95%" align=center>
  71.   <!-- Table Head Start-->
  72.   <TBODY>
  73.     <TR>
  74.       <TD class=thead style="PADDING-LEFT: 10px" noWrap width="70%"><lt:Label res="res.label.forum.admin.dir_bottom" key="dir_add_or_del"/></TD>
  75.     </TR>
  76.     <TR class=row style="BACKGROUND-COLOR: #fafafa">
  77.       <TD align="center" style="PADDING-LEFT: 10px"><table class="frame_gray" width="88%" border="0" cellpadding="0" cellspacing="1">
  78.         <tr>
  79.           <td align="center"><table width="98%">
  80.             <form name="form1" method="post" action="<%=action%>?op=<%=op%>&code=<%=code%>" target="<%=target%>" enctype="MULTIPART/FORM-DATA">
  81.               <tr>
  82.                 <td width="118" rowspan="8" align="left" valign="top"><br>
  83.                   父结点:<br>
  84.                     <font color=blue><%=parent_name.equals("")?SkinUtil.LoadString(request, "res.label.forum.admin.dir_bottom", "dir_root"):parent_name%></font>
  85.                     <br>
  86.                     <%
  87. if (op.equals("modify") || op.equals("modifydo")) {
  88. if (leaf.getLogo()!=null && !leaf.getLogo().equals(""))
  89. out.print("<img src='../images/board_logo/" + leaf.getLogo() + "'>");
  90. }
  91. %></td>
  92.                 <td width="93" align="right"> <lt:Label res="res.label.forum.admin.dir_bottom" key="code"/></td>
  93.               <td width="316" align="left"><input name="code" value="<%=code%>" <%=(op.equals("modify") || op.equals("modifydo"))?"readonly":""%>></td>
  94.               </tr>
  95.               <tr>
  96.                 <td width="93" align="right"><lt:Label res="res.label.forum.admin.dir_bottom" key="name"/></td>
  97.               <td align="left"><input name="name" value="<%=name%>">
  98.                 <select name="delMode">
  99.                   <option value="<%=Leaf.DEL_DUSTBIN%>">
  100.                     <lt:Label res="res.label.forum.admin.dir_bottom" key="del_dustbin"/>
  101.                   </option>
  102.                   <option value="<%=Leaf.DEL_FOREVER%>">
  103.                     <lt:Label res="res.label.forum.admin.dir_bottom" key="del_forever"/>
  104.                   </option>
  105.                 </select>
  106.   <script>
  107.   <%if (op.equals("modify") || op.equals("modifydo")) {%>
  108.   form1.delMode.value = "<%=leaf.getDelMode()%>"
  109.   <%}%>
  110.   </script>
  111. </td>
  112.               </tr>
  113.               <tr>
  114.                 <td width="93" align="right"><lt:Label res="res.label.forum.admin.dir_bottom" key="desc"/></td>
  115.               <td align="left"><textarea name="description" cols="40" rows="3"><%=description%></textarea>
  116.                 <input type=hidden name=parent_code value="<%=parent_code%>"></td>
  117.               </tr>
  118.               <tr>
  119.                 <td width="93" align="right">
  120. <script>
  121. // var root_code = window.parent.dirmainFrame.getRootCode();   
  122. // document.write("<input type=hidden name=root_code value='" + root_code + "'");
  123.   </script>   </td>
  124.               <td align="left"><%
  125. String disabled = "";
  126. if (op.equals("modify") && leaf.getType()>=1) {
  127. disabled = "disabled"; %>
  128.                   <input type=hidden name="type" value="<%=leaf.getType()%>">
  129.                 <%}%>
  130. <lt:Label res="res.label.forum.admin.dir_bottom" key="type"/>
  131. <select name="type" <%=disabled%>>
  132.   <option value="0"><lt:Label res="res.label.forum.admin.dir_bottom" key="field"/></option>
  133.   <option value="1" <%=!parent_code.equals("root")?"selected":""%>><lt:Label res="res.label.forum.admin.dir_bottom" key="board"/></option>
  134. </select>
  135.   <script>
  136.   <%if (op.equals("modify") || op.equals("modifydo")) {%>
  137.   form1.type.value = "<%=type%>"
  138.   <%}%>
  139.   </script>
  140. <%
  141. ThemeMgr tmmgr = new ThemeMgr();
  142. Vector v = tmmgr.getAllTheme();
  143. Iterator ir = v.iterator();
  144. String options = "";
  145. while (ir.hasNext()) {
  146. Theme tm = (Theme) ir.next();
  147. options += "<option value='" + tm.getCode() + "'>" + tm.getName() + "</option>";
  148. }
  149. String theme = "";
  150. if (leaf!=null)
  151. theme = StrUtil.getNullString(leaf.getTheme());
  152. // if (theme.equals(""))
  153. //  theme = "default";
  154. %> 
  155. <lt:Label res="res.label.forum.admin.dir_bottom" key="topic"/>   
  156. <select name="theme">
  157. <option value=""><lt:Label res="res.label.forum.admin.dir_bottom" key="none"/></option>
  158. <%=options%>
  159. </select>
  160. <%
  161. SkinMgr skmgr = new SkinMgr();
  162. v = skmgr.getAllSkin();
  163. ir = v.iterator();
  164. String skinoptions = "";
  165. while (ir.hasNext()) {
  166. Skin skin = (Skin) ir.next();
  167. skinoptions += "<option value='" + skin.getCode() + "'>" + skin.getName() + "</option>";
  168. }
  169. String skin = "";
  170. if (leaf!=null)
  171. skin = StrUtil.getNullString(leaf.getSkin());
  172. // if (skin.equals(""))
  173. //  skin = "default";
  174. %>
  175. <lt:Label res="res.label.forum.admin.dir_bottom" key="skin"/>   
  176. <select name="skin">
  177. <option value=""><lt:Label res="res.label.forum.admin.dir_bottom" key="none"/></option>
  178. <%=skinoptions%>
  179. </select>
  180.   <script>
  181.   <%if (op.equals("modify") || op.equals("modifydo")) {%>
  182.   form1.theme.value = "<%=theme%>"
  183.   form1.skin.value = "<%=skin%>"
  184.   <%}%>   
  185.   </script> </td>
  186.               </tr>
  187.               <tr>
  188.                 <td width="93" align="right">&nbsp;</td>
  189.               <td align="left">
  190.     <%if (op.equals("modifydo")) {%>
  191.                 <input type="checkbox" name="isHome" value="true" <%=isHome?"checked":""%> >
  192.                 <%}else{%>
  193.                 <input type="checkbox" name="isHome" value="true" checked>
  194.                 <%}%>
  195. <lt:Label res="res.label.forum.admin.dir_bottom" key="confirm_home"/>
  196. <select name="isLocked">
  197. <option value=0><lt:Label res="res.label.forum.admin.dir_bottom" key="open"/></option>
  198. <option value=1><lt:Label res="res.label.forum.admin.dir_bottom" key="lock"/></option>
  199. </select>
  200. <%if (op.equals("modifydo")) {%>
  201. <script>
  202. form1.isLocked.value = "<%=leaf.isLocked()?1:0%>";
  203. </script>
  204. <%}%>
  205. <select name="color">
  206.                   <option value="" style="COLOR: black" selected><lt:Label res="res.label.forum.admin.dir_bottom" key="clear_color"/></option>
  207.                   <option style="BACKGROUND: #000088" value="#000088"></option>
  208.                   <option style="BACKGROUND: #0000ff" value="#0000ff"></option>
  209.                   <option style="BACKGROUND: #008800" value="#008800"></option>
  210.                   <option style="BACKGROUND: #008888" value="#008888"></option>
  211.                   <option style="BACKGROUND: #0088ff" value="#0088ff"></option>
  212.                   <option style="BACKGROUND: #00a010" value="#00a010"></option>
  213.                   <option style="BACKGROUND: #1100ff" value="#1100ff"></option>
  214.                   <option style="BACKGROUND: #111111" value="#111111"></option>
  215.                   <option style="BACKGROUND: #333333" value="#333333"></option>
  216.                   <option style="BACKGROUND: #50b000" value="#50b000"></option>
  217.                   <option style="BACKGROUND: #880000" value="#880000"></option>
  218.                   <option style="BACKGROUND: #8800ff" value="#8800ff"></option>
  219.                   <option style="BACKGROUND: #888800" value="#888800"></option>
  220.                   <option style="BACKGROUND: #888888" value="#888888"></option>
  221.                   <option style="BACKGROUND: #8888ff" value="#8888ff"></option>
  222.                   <option style="BACKGROUND: #aa00cc" value="#aa00cc"></option>
  223.                   <option style="BACKGROUND: #aaaa00" value="#aaaa00"></option>
  224.                   <option style="BACKGROUND: #ccaa00" value="#ccaa00"></option>
  225.                   <option style="BACKGROUND: #ff0000" value="#ff0000"></option>
  226.                   <option style="BACKGROUND: #ff0088" value="#ff0088"></option>
  227.                   <option style="BACKGROUND: #ff00ff" value="#ff00ff"></option>
  228.                   <option style="BACKGROUND: #ff8800" value="#ff8800"></option>
  229.                   <option style="BACKGROUND: #ff0005" value="#ff0005"></option>
  230.                   <option style="BACKGROUND: #ff88ff" value="#ff88ff"></option>
  231.                   <option style="BACKGROUND: #ee0005" value="#ee0005"></option>
  232.                   <option style="BACKGROUND: #ee01ff" value="#ee01ff"></option>
  233.                   <option style="BACKGROUND: #3388aa" value="#3388aa"></option>
  234.                   <option style="BACKGROUND: #000000" value="#000000"></option>
  235.                 </select>
  236. <select name="checkMsg">
  237. <option value="<%=Leaf.CHECK_NOT%>"><lt:Label res="res.label.forum.admin.dir_bottom" key="chk_not"/></option>
  238. <option value="<%=Leaf.CHECK_TOPIC%>"><lt:Label res="res.label.forum.admin.dir_bottom" key="chk_topic"/></option>
  239. <option value="<%=Leaf.CHECK_TOPIC_REPLY%>"><lt:Label res="res.label.forum.admin.dir_bottom" key="chk_topic_reply"/></option>
  240. </select>
  241. <select name="displayStyle">
  242. <option value="<%=Leaf.DISPLAY_STYLE_VERTICAL%>"><lt:Label res="res.label.forum.admin.dir_bottom" key="display_style_vertical"/></option>
  243. <option value="<%=Leaf.DISPALY_STYLE_HORIZON%>"><lt:Label res="res.label.forum.admin.dir_bottom" key="display_style_horizon"/></option>
  244. </select>
  245. <%if (op.equals("modifydo")) {%>
  246. <script>
  247. form1.color.value = "<%=leaf.getColor()%>";
  248. form1.checkMsg.value = "<%=leaf.getCheckMsg()%>";
  249. form1.displayStyle.value = "<%=leaf.getDisplayStyle()%>";
  250. </script>
  251. <%}%>
  252. </td>
  253.               </tr>
  254.               <tr>
  255.                 <td width="93" align="right">&nbsp;</td>
  256.                 <td align="left"><span class="unnamed2">
  257.                   <%if (op.equals("modifydo")) {%>
  258. <script>
  259.   var bcode = "<%=leaf.getCode()%>";
  260. </script>
  261. &nbsp;父结点:
  262. <select name="parentCode">
  263. <%
  264. Leaf rootlf = leaf.getLeaf("root");
  265. DirectoryView dv = new DirectoryView(rootlf);
  266. dv.ShowDirectoryAsOptionsWithCode(out, rootlf, rootlf.getLayer());
  267. %>
  268. </select>
  269. <script>
  270. form1.parentCode.value = "<%=leaf.getParentCode()%>";
  271. </script>
  272.   <%}%>
  273.   <lt:Label res="res.label.forum.admin.dir_bottom" key="add_mode"/>
  274.                   <select name="webeditAllowType">
  275.   <option value="<%=Leaf.WEBEDIT_ALLOW_TYPE_UBB_NORMAL%>"><lt:Label res="res.label.forum.admin.dir_bottom" key="normal_ubb"/></option>
  276.   <option value="<%=Leaf.WEBEDIT_ALLOW_TYPE_UBB_NORMAL_REDMOON%>"><lt:Label res="res.label.forum.admin.dir_bottom" key="normal_ubb_senior"/></option>
  277.   <option value="<%=Leaf.WEBEDIT_ALLOW_TYPE_REDMOON_FIRST%>"><lt:Label res="res.label.forum.admin.dir_bottom" key="default_senior"/></option>
  278.   </select>
  279.                   <%if (op.equals("modifydo")) {%>
  280.   <script>
  281.   form1.webeditAllowType.value = "<%=leaf.getWebeditAllowType()%>";
  282.   </script>
  283.   <%}%>
  284. </span></td>
  285.               </tr>
  286.               <tr>
  287.                 <td align="center">&nbsp;</td>
  288.                 <td align="left">LOGO
  289.                   <input type="file" name="filename">
  290.                   <%
  291.   String codes = "";
  292.   String names = "";
  293.   if (op.equals("modify") || op.equals("modifydo")){
  294.    String logo = StrUtil.getNullString(leaf.getLogo());
  295. if (!logo.equals("")) {%>
  296.                   <input type=checkbox name=dellogo value=1>
  297. <lt:Label res="res.label.forum.admin.dir_bottom" key="del_logo"/>
  298. <%}
  299. String[] ary = StrUtil.split(leaf.getPlugin2Code(), ",");
  300.   if (ary!=null) {
  301. int len = ary.length;
  302. Plugin2Mgr pm = new Plugin2Mgr();
  303. Plugin2Unit pu = null;
  304. for (int i=0; i<len; i++) {
  305. if (codes.equals("")) {
  306. codes = ary[i];
  307. pu = pm.getPlugin2Unit(ary[i]);
  308. if (pu!=null)
  309. names = pu.getName(request);
  310. }
  311. else {
  312. codes += "," + ary[i];
  313. pu = pm.getPlugin2Unit(ary[i]);
  314. if (pu!=null)
  315. names += "," + pu.getName(request);
  316. }
  317. }
  318.   }
  319.   }%>
  320. <br>
  321. 插件:
  322. <input name="plugin2Code" type="hidden" value="<%=leaf!=null?codes:""%>">
  323. <input name="plugin2CodeName" value="<%=leaf==null?"":names%>" readonly size="50">
  324. &nbsp;<input type="button" onClick="openSelWin()" value="<lt:Label res="res.label.forum.admin.dir_bottom" key="select"/>"></td>
  325.               </tr>
  326.               <tr>
  327.                 <td colspan="2" align="center"><input name="Submit" type="submit" class="singleboarder" value="<lt:Label key="commit"/>">
  328.                   &nbsp;&nbsp;&nbsp;
  329.                   <input name="Submit" type="reset" class="singleboarder" value="<lt:Label key="reset"/>"></td>
  330.               </tr>
  331.               <tr>
  332.                 <td align="left" valign="top">&nbsp;</td>
  333.                 <td colspan="2" align="center">&nbsp; </td>
  334.               </tr>
  335.             </form>
  336.           </table></td>
  337.         </tr>
  338.       </table>
  339.       </TD>
  340.     </TR>
  341.     <!-- Table Body End -->
  342.     <!-- Table Foot -->
  343.     <TR>
  344.       <TD class=tfoot align=right><DIV align=right> </DIV></TD>
  345.     </TR>
  346.     <!-- Table Foot -->
  347.   </TBODY>
  348. </TABLE>
  349. </body>
  350. <script>
  351. function openWin(url,width,height)
  352. {
  353.   var newwin = window.open(url,"_blank","toolbar=no,location=no,directories=no,status=no,menubar=no,top=50,left=120,width="+width+",height="+height);
  354. }
  355. function getPlugin2Code() {
  356. return form1.plugin2Code.value;
  357. }
  358. function openSelWin() {
  359. openWin("sel_plugin2.jsp", 480, 320);
  360. }
  361. function setPlugin2Code(ret) {
  362. if (ret==null)
  363. return;
  364. form1.plugin2CodeName.value = "";
  365. form1.plugin2Code.value = "";
  366. for (var i=0; i<ret.length; i++) {
  367. if (form1.plugin2CodeName.value=="") {
  368. form1.plugin2Code.value += ret[i][0];
  369. form1.plugin2CodeName.value += ret[i][1];
  370. }
  371. else {
  372. form1.plugin2Code.value += "," + ret[i][0];
  373. form1.plugin2CodeName.value += "," + ret[i][1];
  374. }
  375. }
  376. }
  377. </script>
  378. </html>