Subversion Repositories DevTools

Rev

Rev 6543 | Rev 7291 | 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>
6543 dpurdie 14
<a href="<%=strRelativePath%>index.asp?listby=5"><img src="<%=strRelativePath%>images/i_release.png" width="14" height="14" border="0" alt="Releases" title="Releases"></a>
4293 dpurdie 15
<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>
16
<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>
17
</div>
2365 dpurdie 18
 
5357 dpurdie 19
<%' Highlight Development Systems
20
If ( NOT IsEmpty(Application("TestBannerStyle"))) Then
5326 dpurdie 21
    Dim DevStyle, DevExtraText, DevTitle
22
    DevStyle = Application("TestBannerStyle")
23
    DevTitle = Application("TestBanner")
24
 
2365 dpurdie 25
    DevExtraText = ""
5338 dpurdie 26
    If ( NOT IsEmpty(Application("LiveSystem"))) Then
2365 dpurdie 27
        DevExtraText = " Live Database"
28
    End If
119 ghuddy 29
%>
5114 dpurdie 30
<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 31
    <center style="<%=DevStyle%>;"><%=DevTitle%>:<%=request.servervariables("server_name")%> Database:<%=OraDatabase.DatabaseName%><%=DevExtraText%></center>
2365 dpurdie 32
</div>
119 ghuddy 33
<%End If%>
6070 dpurdie 34
<!-- MENU LAYERS -------------------------------------->
35
<div id="popmenu" class="menuskin" onMouseover="clearhidemenu();highlightmenu(event,'on')" onMouseout="highlightmenu(event,'off');dynamichide(event)"></div>
119 ghuddy 36
<table width="100%" border="0" cellspacing="0" cellpadding="0">
2365 dpurdie 37
  <tr>
5142 dpurdie 38
    <td bgcolor="#FFFFFF" width="1%">
5114 dpurdie 39
      <a href="<%=strRelativePath%>index.asp" target="_parent" alt="Home" title="Home">
40
        <img src="<%=strRelativePath%>images/b_release_manager.jpg" border="0" style="display: block;">
41
      </a>
119 ghuddy 42
    </td>
7063 dpurdie 43
    <td id=hdrError valign="bottom" align="center"></td>
44
    <td valign="bottom" align="right" width="1%">
45
    <span id=hdrDateTime class=mmItem style="position: absolute; top: 1px; right: 5px;"></span>
2365 dpurdie 46
    <% if not IsEmpty(Eval("MenuHeaderDefined")) Then %>
47
        <%Call Print_TopRight_Menu_ROW1 ()%>
7063 dpurdie 48
    <% End If %>
5114 dpurdie 49
    </td>
119 ghuddy 50
  </tr>
5114 dpurdie 51
 
2365 dpurdie 52
  <tr>
7063 dpurdie 53
    <td colspan=3 style="height:1px;background-color:black"></td>
119 ghuddy 54
  </tr>
2365 dpurdie 55
 
56
  <% if not IsEmpty(Eval("MenuHeaderDefined")) Then
57
	  If (Request("rtag_id") <> "") OR  (Request("proj_id") <> "") OR (Request("pv_id") <> "") Then %>
58
  <tr>
7063 dpurdie 59
    <td align=left noWrap valign=center width=150 colspan=2>
119 ghuddy 60
	  <!-- TOP-LEFT MENU --------->
61
	  <%
62
	  If (Request("rtag_id") <> "") OR  (Request("proj_id") <> "") Then
63
	  	Call Print_TopLeft_Menu
64
 
65
	  ElseIf Request("pv_id") <> "" Then
66
	  	Call Print_Package_TopLeft_Menu
67
 
68
	  End If%>
5114 dpurdie 69
	  <!-- End TOP-LEFT MENU --------->
119 ghuddy 70
    </td>
7063 dpurdie 71
    <td align="right" width="1%"> 
119 ghuddy 72
	  <!-- TOP-RIGHT MENU ROW2 ---->
73
      <%
74
	  If (Request("rtag_id") <> "") OR  (Request("proj_id") <> "") Then
75
	  	Call Print_TopRight_Menu_ROW2
76
	  End If
77
	  %>
5114 dpurdie 78
	  <!-- End TOP-RIGHT MENU ROW2 ---->
119 ghuddy 79
    </td>
80
  </tr>
5114 dpurdie 81
  <tr>
7063 dpurdie 82
    <td colspan=3 style="height:1px;background-color:black"</td>
119 ghuddy 83
  </tr>
2365 dpurdie 84
<% End If %>
85
<% End If %>
86
</table>
6070 dpurdie 87