Subversion Repositories DevTools

Rev

Rev 5506 | Rev 6543 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
5357 dpurdie 1
<!-- _header.asp -->
5360 dpurdie 2
<!-- Global Shortcuts -->
4293 dpurdie 3
<div id="Layer1" style="position:absolute; left:2; top:2; height:14px; z-index:2">
2365 dpurdie 4
<% if (not IsEmpty(Eval("objAccessControl"))) Then
5
    If (objAccessControl.UserLogedIn) Then %>
6
        <% If IsEmpty(Eval("MenuHeaderDefined")) Then %>
7
            <a href="#"><img src="<%=strRelativePath%>images/i_logout_disabled.gif" width="14" height="14" border="0" alt="Logout from <%=objAccessControl.UserName%> disabled" title="Logout from <%=objAccessControl.UserName%> disabled"></a>
8
        <% Else %>
9
            <a href="<%=strRelativePath%>_Logout.asp"><img src="<%=strRelativePath%>images/i_logout.gif" width="14" height="14" border="0" alt="Logout from <%=objAccessControl.UserName%>" title="Logout from <%=objAccessControl.UserName%>"></a>
10
        <%End If%>
11
    <%End If%>
12
<%End If%>
4293 dpurdie 13
<a href="<%=strRelativePath%>index.asp"><img src="<%=strRelativePath%>images/i_home.png" width="14" height="14" border="0" alt="Home" title="Home"></a>
14
<a href="<%=strRelativePath%>index.asp?listby=1"><img src="<%=strRelativePath%>images/i_package.png" width="14" height="14" border="0" alt="Packages" title="Packages"></a>
15
<a href="<%=strRelativePath%>index.asp?listby=2"><img src="<%=strRelativePath%>images/i_files.png" width="14" height="14" border="0" alt="Files" title="Files"></a>
16
</div>
2365 dpurdie 17
 
5357 dpurdie 18
<%' Highlight Development Systems
19
If ( NOT IsEmpty(Application("TestBannerStyle"))) Then
5326 dpurdie 20
    Dim DevStyle, DevExtraText, DevTitle
21
    DevStyle = Application("TestBannerStyle")
22
    DevTitle = Application("TestBanner")
23
 
2365 dpurdie 24
    DevExtraText = ""
5338 dpurdie 25
    If ( NOT IsEmpty(Application("LiveSystem"))) Then
2365 dpurdie 26
        DevExtraText = " Live Database"
27
    End If
119 ghuddy 28
%>
5114 dpurdie 29
<div id="Layer2" style="position:absolute; left:0; top:0; width:100%; z-index:1;font:16px tahoma,sans-serif;text-decoration:none;">
5326 dpurdie 30
    <center style="<%=DevStyle%>;"><%=DevTitle%>:<%=request.servervariables("server_name")%> Database:<%=OraDatabase.DatabaseName%><%=DevExtraText%></center>
2365 dpurdie 31
</div>
119 ghuddy 32
<%End If%>
6070 dpurdie 33
<!-- MENU LAYERS -------------------------------------->
34
<div id="popmenu" class="menuskin" onMouseover="clearhidemenu();highlightmenu(event,'on')" onMouseout="highlightmenu(event,'off');dynamichide(event)"></div>
119 ghuddy 35
<table width="100%" border="0" cellspacing="0" cellpadding="0">
2365 dpurdie 36
  <tr>
5142 dpurdie 37
    <td bgcolor="#FFFFFF" width="1%">
5114 dpurdie 38
      <a href="<%=strRelativePath%>index.asp" target="_parent" alt="Home" title="Home">
39
        <img src="<%=strRelativePath%>images/b_release_manager.jpg" border="0" style="display: block;">
40
      </a>
119 ghuddy 41
    </td>
2365 dpurdie 42
    <% if not IsEmpty(Eval("MenuHeaderDefined")) Then %>
43
    <td valign="bottom" align="right">
44
        <%Call Print_TopRight_Menu_ROW1 ()%>
5114 dpurdie 45
    </td>
2365 dpurdie 46
    <% End If %>
119 ghuddy 47
  </tr>
5114 dpurdie 48
 
2365 dpurdie 49
  <tr>
5114 dpurdie 50
    <td colspan=2 style="height:1px;background-color:black"></td>
119 ghuddy 51
  </tr>
2365 dpurdie 52
 
53
  <% if not IsEmpty(Eval("MenuHeaderDefined")) Then
54
	  If (Request("rtag_id") <> "") OR  (Request("proj_id") <> "") OR (Request("pv_id") <> "") Then %>
55
  <tr>
119 ghuddy 56
    <td align=left noWrap valign=center width=150>
57
	  <!-- TOP-LEFT MENU --------->
58
	  <%
59
	  If (Request("rtag_id") <> "") OR  (Request("proj_id") <> "") Then
60
	  	Call Print_TopLeft_Menu
61
 
62
	  ElseIf Request("pv_id") <> "" Then
63
	  	Call Print_Package_TopLeft_Menu
64
 
65
	  End If%>
5114 dpurdie 66
	  <!-- End TOP-LEFT MENU --------->
119 ghuddy 67
    </td>
68
    <td align="right"> 
69
	  <!-- TOP-RIGHT MENU ROW2 ---->
70
      <%
71
	  If (Request("rtag_id") <> "") OR  (Request("proj_id") <> "") Then
72
	  	Call Print_TopRight_Menu_ROW2
73
	  End If
74
	  %>
5114 dpurdie 75
	  <!-- End TOP-RIGHT MENU ROW2 ---->
119 ghuddy 76
    </td>
77
  </tr>
5114 dpurdie 78
  <tr>
79
    <td colspan=2 style="height:1px;background-color:black"</td>
119 ghuddy 80
  </tr>
2365 dpurdie 81
<% End If %>
82
<% End If %>
83
</table>
6070 dpurdie 84