header.jsp
上传用户:guhaomin
上传日期:2007-06-10
资源大小:23203k
文件大小:2k
源码类别:

电子政务应用

开发平台:

Java

  1. <%
  2. /**
  3.  * $RCSfile: header.jsp,v $
  4.  * $Revision: 1.3 $
  5.  * $Date: 2000/12/18 02:06:21 $
  6.  */
  7. %>
  8. <%@ page 
  9. import="com.coolservlets.forum.*,
  10.         com.coolservlets.forum.util.*"
  11. %>
  12. <jsp:useBean id="adminBean" scope="session"
  13.  class="com.coolservlets.forum.util.admin.AdminBean"/>
  14. <% ////////////////////////////////
  15. // Jive authorization check
  16. // check the bean for the existence of an authorization token.
  17. // Its existence proves the user is valid. If it's not found, redirect
  18. // to the login page
  19. Authorization authToken = adminBean.getAuthToken();
  20. if( authToken == null ) {
  21. response.sendRedirect( "/mainctrl/bbs/admin" );
  22. return;
  23. }
  24. %>
  25. <% ////////////////////////////////////////
  26. // figure out what type of user we are:
  27. boolean isSystemAdmin = ((Boolean)session.getValue("jiveAdmin.systemAdmin")).booleanValue();
  28. boolean isForumAdmin  = ((Boolean)session.getValue("jiveAdmin.forumAdmin")).booleanValue();
  29. boolean isGroupAdmin  = ((Boolean)session.getValue("jiveAdmin.groupAdmin")).booleanValue();
  30. %>
  31. <% ////////////////
  32. // get parameters
  33. String tab = ParamUtils.getParameter(request,"tab");
  34. if( tab == null ) {
  35. tab = "global";
  36. }
  37. %>
  38. <html>
  39. <head>
  40. <title>header.jsp</title>
  41. <link rel="stylesheet" href="style/global.css">
  42. </head>
  43. <body background="images/backleft.gif" marginwidth=0 marginheight=0 leftmargin=0 topmargin=0 bgcolor="#ffffff">
  44. <%-- begin header --%>
  45. <table cellpadding="0" cellspacing="0" border="0" width="100%" height="100%">
  46. <tr height="100%">
  47. <td height="100%" width="1%" nowrap valign="bottom"
  48. ><img src="images/title.gif" hspace="15" width="215" height="50" alt="Jive Administration Tool" border="0"
  49. ><br><a href="sidebar.jsp?tree=system" onclick="location.href='header.jsp?tab=global';" target="sidebar"
  50. ><img src="images/tabs_global_<%= (tab.equals("global"))?"on":"off" %>.gif" width="138" height="35" alt="" border="0"
  51. ></a><a href="sidebar.jsp?tree=forum" onclick="location.href='header.jsp?tab=forums';" target="sidebar"
  52. ><img src="images/tabs_forum_<%= (tab.equals("forums"))?"on":"off" %>.gif" width="138" height="35" alt="" border="0"
  53. ></a></td><td height="100%" width="98%" valign="bottom"
  54. ><img src="images/tabs_padding.gif" width="100%" height="85" alt="" border="0"></td
  55. ><td height="100%" width="1%" valign="bottom"
  56. ><a href="index.jsp?logout=true"
  57. ><img src="images/logout.gif" width="64" height="85" alt="" border="0"></a></td>
  58. </tr>
  59. </table>
  60. <%-- end header --%>
  61. </body>
  62. </html>