Subversion Repositories DevTools

Rev

Rev 7063 | Rev 7292 | 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%>
7291 dpurdie 34
<!-- Global Progress spinner ------------------------->
35
<div id='progressSpinner' class='vixSpinner' style='visibility:hidden;'></div>
36
<script language="JavaScript1.2">
37
function showGlobalProgress() {
38
    document.getElementById("progressSpinner").style.visibility = "unset";
39
}
40
function hideGlobalProgress() {
41
    document.getElementById("progressSpinner").style.visibility = "hidden";
42
}
43
</script>
6070 dpurdie 44
<!-- MENU LAYERS -------------------------------------->
45
<div id="popmenu" class="menuskin" onMouseover="clearhidemenu();highlightmenu(event,'on')" onMouseout="highlightmenu(event,'off');dynamichide(event)"></div>
119 ghuddy 46
<table width="100%" border="0" cellspacing="0" cellpadding="0">
2365 dpurdie 47
  <tr>
5142 dpurdie 48
    <td bgcolor="#FFFFFF" width="1%">
5114 dpurdie 49
      <a href="<%=strRelativePath%>index.asp" target="_parent" alt="Home" title="Home">
50
        <img src="<%=strRelativePath%>images/b_release_manager.jpg" border="0" style="display: block;">
51
      </a>
119 ghuddy 52
    </td>
7063 dpurdie 53
    <td id=hdrError valign="bottom" align="center"></td>
54
    <td valign="bottom" align="right" width="1%">
55
    <span id=hdrDateTime class=mmItem style="position: absolute; top: 1px; right: 5px;"></span>
2365 dpurdie 56
    <% if not IsEmpty(Eval("MenuHeaderDefined")) Then %>
57
        <%Call Print_TopRight_Menu_ROW1 ()%>
7063 dpurdie 58
    <% End If %>
5114 dpurdie 59
    </td>
119 ghuddy 60
  </tr>
5114 dpurdie 61
 
2365 dpurdie 62
  <tr>
7063 dpurdie 63
    <td colspan=3 style="height:1px;background-color:black"></td>
119 ghuddy 64
  </tr>
2365 dpurdie 65
 
66
  <% if not IsEmpty(Eval("MenuHeaderDefined")) Then
67
	  If (Request("rtag_id") <> "") OR  (Request("proj_id") <> "") OR (Request("pv_id") <> "") Then %>
68
  <tr>
7063 dpurdie 69
    <td align=left noWrap valign=center width=150 colspan=2>
119 ghuddy 70
	  <!-- TOP-LEFT MENU --------->
71
	  <%
72
	  If (Request("rtag_id") <> "") OR  (Request("proj_id") <> "") Then
73
	  	Call Print_TopLeft_Menu
74
 
75
	  ElseIf Request("pv_id") <> "" Then
76
	  	Call Print_Package_TopLeft_Menu
77
 
78
	  End If%>
5114 dpurdie 79
	  <!-- End TOP-LEFT MENU --------->
119 ghuddy 80
    </td>
7063 dpurdie 81
    <td align="right" width="1%"> 
119 ghuddy 82
	  <!-- TOP-RIGHT MENU ROW2 ---->
83
      <%
84
	  If (Request("rtag_id") <> "") OR  (Request("proj_id") <> "") Then
85
	  	Call Print_TopRight_Menu_ROW2
86
	  End If
87
	  %>
5114 dpurdie 88
	  <!-- End TOP-RIGHT MENU ROW2 ---->
119 ghuddy 89
    </td>
90
  </tr>
5114 dpurdie 91
  <tr>
7063 dpurdie 92
    <td colspan=3 style="height:1px;background-color:black"</td>
119 ghuddy 93
  </tr>
2365 dpurdie 94
<% End If %>
95
<% End If %>
96
</table>
6070 dpurdie 97