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

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.db.*" %>
  5. <%@ page import="com.redmoon.blog.*" %>
  6. <%@ page import="cn.js.fan.util.*" %>
  7. <%@ page import="cn.js.fan.web.*" %>
  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>
  11. <head>
  12. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  13. <title></title>
  14. <LINK href="../../common.css" type=text/css rel=stylesheet>
  15. <LINK href="default.css" type=text/css rel=stylesheet>
  16. <script>
  17. function findObj(theObj, theDoc)
  18. {
  19.   var p, i, foundObj;
  20.   
  21.   if(!theDoc) theDoc = document;
  22.   if( (p = theObj.indexOf("?")) > 0 && parent.frames.length)
  23.   {
  24.     theDoc = parent.frames[theObj.substring(p+1)].document;
  25.     theObj = theObj.substring(0,p);
  26.   }
  27.   if(!(foundObj = theDoc[theObj]) && theDoc.all) foundObj = theDoc.all[theObj];
  28.   for (i=0; !foundObj && i < theDoc.forms.length; i++) 
  29.     foundObj = theDoc.forms[i][theObj];
  30.   for(i=0; !foundObj && theDoc.layers && i < theDoc.layers.length; i++) 
  31.     foundObj = findObj(theObj,theDoc.layers[i].document);
  32.   if(!foundObj && document.getElementById) foundObj = document.getElementById(theObj);
  33.   
  34.   return foundObj;
  35. }
  36. function ShowChild(imgobj, name)
  37. {
  38. var tableobj = findObj("childof"+name);
  39. if (tableobj.style.display=="none")
  40. {
  41. tableobj.style.display = "";
  42. if (imgobj.src.indexOf("i_puls-root-1.gif")!=-1)
  43. imgobj.src = "images/i_puls-root.gif";
  44. if (imgobj.src.indexOf("i_plus-1-1.gif")!=-1)
  45. imgobj.src = "images/i_plus2-2.gif";
  46. if (imgobj.src.indexOf("i_plus-1.gif")!=-1)
  47. imgobj.src = "images/i_plus2-1.gif";
  48. }
  49. else
  50. {
  51. tableobj.style.display = "none";
  52. if (imgobj.src.indexOf("i_puls-root.gif")!=-1)
  53. imgobj.src = "images/i_puls-root-1.gif";
  54. if (imgobj.src.indexOf("i_plus2-2.gif")!=-1)
  55. imgobj.src = "images/i_plus-1-1.gif";
  56. if (imgobj.src.indexOf("i_plus2-1.gif")!=-1)
  57. imgobj.src = "images/i_plus-1.gif";
  58. }
  59. }
  60. </script>
  61. </head>
  62. <body>
  63. <jsp:useBean id="privilege" scope="page" class="com.redmoon.forum.Privilege"/>
  64. <%
  65. if (!privilege.isMasterLogin(request))
  66. {
  67. out.print(cn.js.fan.web.SkinUtil.makeErrMsg(request, cn.js.fan.web.SkinUtil.LoadString(request, "pvg_invalid")));
  68. return;
  69. }
  70. %><jsp:useBean id="dir" scope="page" class="com.redmoon.blog.Directory"/>
  71. <%
  72. String root_code = ParamUtil.get(request, "root_code");
  73. if (root_code.equals(""))
  74. {
  75. root_code = "root";
  76. }
  77. %>
  78. <Script>
  79. var root_code = "<%=root_code%>";// 使框架的bottom能得到此root_code
  80. function getRootCode() {
  81. return root_code;
  82. }
  83. </Script>
  84. <%
  85. String op = ParamUtil.get(request, "op");
  86. if (op.equals("AddRootChild")) {
  87. boolean re = false;
  88. try {
  89. re = dir.AddRootChild(request);
  90. }
  91. catch (ErrMsgException e) {
  92. out.print(StrUtil.Alert(e.getMessage()));
  93. }
  94. if (!re) {
  95. out.print(StrUtil.Alert(SkinUtil.LoadString(request,"res.label.blog.admin.dir", "add_leaf_fail")));
  96. }
  97. }
  98. if (op.equals("AddChild")) {
  99. boolean re = false;
  100. try {
  101. re = dir.AddChild(request);
  102. }
  103. catch (ErrMsgException e) {
  104. out.print(StrUtil.Alert(e.getMessage()));
  105. }
  106. if (!re) {
  107. out.print(StrUtil.Alert(SkinUtil.LoadString(request,"res.label.blog.admin.dir", "add_leaf_fail")));
  108. }
  109. }
  110. if (op.equals("del")) {
  111. String delcode = ParamUtil.get(request, "delcode");
  112. Leaf delleaf = dir.getLeaf(delcode);
  113. if (delleaf==null) {
  114. }
  115. else {
  116. try {
  117. dir.del(delcode);
  118. out.print(StrUtil.Alert(SkinUtil.LoadString(request,"res.common", "info_op_success")));
  119. }
  120. catch (ErrMsgException e) {
  121. out.print(StrUtil.Alert(e.getMessage()));
  122. }
  123. }
  124. }
  125. if (op.equals("modify")) {
  126. boolean re = true;
  127. try {
  128. re = dir.update(request);
  129. }
  130. catch (ErrMsgException e) {
  131. out.print(StrUtil.Alert(e.getMessage()));
  132. }
  133. if (re)
  134. out.print(StrUtil.Alert(SkinUtil.LoadString(request,"res.common", "info_op_success")));
  135. }
  136. if (op.equals("move")) {
  137. try {
  138. dir.move(request);
  139. }
  140. catch (ErrMsgException e) {
  141. out.print(StrUtil.Alert(e.getMessage()));
  142. }
  143. }
  144. /*
  145. if (op.equals("removecache")) {
  146. String curcode = ParamUtil.get(request, "code");
  147. LeafChildrenCacheMgr.remove(curcode);
  148. out.print(StrUtil.Alert(curcode + "缓存已被清除!"));
  149. }
  150. */
  151. Leaf leaf = dir.getLeaf(root_code);
  152. String root_name = leaf.getName();
  153. int root_layer = leaf.getLayer();
  154. String root_description = leaf.getDescription();
  155. boolean isHome = false;
  156. %>
  157. <table width='100%' cellpadding='0' cellspacing='0' >
  158.   <tr>
  159.     <td class="head"><lt:Label res="res.label.blog.admin.dir" key="mgr"/>&nbsp;<%=root_name%></td>
  160.   </tr>
  161. </table>
  162. <br>
  163. <TABLE class="frame_gray"  
  164. cellSpacing=0 cellPadding=0 width="95%" align=center>
  165.   <TBODY>
  166.     <TR>
  167.       <TD height=200 valign="top" bgcolor="#FFFBFF">
  168.         <table class="tbg1" cellspacing=0 cellpadding=0 width="100%" align=center onMouseOver="this.className='tbg1sel'" onMouseOut="this.className='tbg1'" border=0>
  169.           <tbody>
  170.             <tr>
  171.               <td width="66%" height="13" align=left nowrap>              &nbsp;&nbsp;&nbsp;&nbsp;                             </td>
  172.             <td width="34%" align=right nowrap>>>&nbsp;<%=root_name%>&nbsp;&nbsp;<a target="_parent" href="document_list_m.jsp?dir_code=<%=StrUtil.UrlEncode(root_code)%>&dir_name=<%=StrUtil.UrlEncode(root_name)%>"></a>&nbsp;<a target=dirbottomFrame href="dir_bottom.jsp?parent_code=<%=StrUtil.UrlEncode(root_code, "utf-8")%>&parent_name=<%=StrUtil.UrlEncode(root_name, "utf-8")%>&op=AddChild"><lt:Label res="res.label.blog.admin.dir" key="add_child"/></a><!--<a target=_self href="#" onClick="if (window.confirm('您确定要删除<%=root_name%>吗?')) window.location.href='dir_top.jsp?op=del&delcode=<%=root_code%>'">删除</a>-->   </td>
  173.             </tr>
  174.           </tbody>
  175.         </table>
  176. <%
  177. DirectoryView tv = new DirectoryView(request, leaf);
  178. tv.list(out);
  179. %>
  180.        </TD>
  181.     </TR>
  182.   </TBODY>
  183. </TABLE>
  184. </body>
  185. </html>