Subversion Repositories DevTools

Rev

Rev 6790 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
5357 dpurdie 1
<%@LANGUAGE="VBSCRIPT"%>
2
<%
3
Option explicit
4
Response.Expires = 0	' always load the page, dont store
5
%>
6
<%
7
'=====================================================
8
'					VERSIONS HISTORY
9
'=====================================================
10
%>
11
<!--#include file="common/conf.asp"-->
12
<!--#include file="common/globals.asp"-->
13
<!--#include file="common/formating.asp"-->
14
<!--#include file="common/qstr.asp"-->
15
<!--#include file="common/common_subs.asp"-->
16
<!--#include file="common/common_dbedit.asp"-->
17
<!--#include file="_tabs.asp"-->
18
<!--#include file="_wform_versions_history_main.asp"-->
19
<!--#include file="common/_popup_window_common.asp"-->
20
<%
21
'------------ ACCESS CONTROL ------------------
22
%>
6181 dpurdie 23
<!--#include file="_access_control_login_optional.asp"-->
5357 dpurdie 24
<!--#include file="_access_control_general.asp"-->
25
<%
26
'------------ Variable Definition -------------
27
Dim pageIsEditable
28
Dim sectionIsEditable
29
Dim criticalSectionIsEditable
30
'------------ Constants Declaration -----------
31
'------------ Variable Init -------------------
32
pageIsEditable = FALSE		' Never EDIT release notes PAGE here
33
sectionIsEditable = FALSE 	' Never EDIT release notes Section here
34
criticalSectionIsEditable = FALSE	' Never EDIT release notes Critical Sections here
35
Set pkgInfoHash = CreateObject("Scripting.Dictionary")
36
'----------------------------------------------
37
%>
38
<%
39
If NOT IsEmpty(parPv_id) Then
40
	Call Get_Pkg_Info ( parPv_id, Request("rtag_id") )
41
End If
42
%>
43
<%
44
'-----------------------------------------------------------------------------------------------------------------------------------
45
'-----------------------------------------------------------------------------------------------------------------------------------
46
%>
47
<!--#include file="_menu_def.asp"-->
48
<html>
49
<head>
50
<title>Release Manager</title>
51
<link rel="shortcut icon" href="<%=FavIcon%>"/>
52
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
53
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
6579 dpurdie 54
<link rel="stylesheet" href="images/release_manager_style.css?ver=<%=VixVerNum%>" type="text/css">
55
<link rel="stylesheet" href="images/navigation.css?ver=<%=VixVerNum%>" type="text/css">
56
<script language="JavaScript" src="images/common.js?ver=<%=VixVerNum%>"></script>
5357 dpurdie 57
<!--#include file="_jquery_includes.asp"-->
6610 dpurdie 58
<script language="JavaScript1.2" src="images/popup_menu.js?ver=<%=VixVerNum%>"></script>
5357 dpurdie 59
</head>
5933 dpurdie 60
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" onload="self.focus();setLayerHeight();scrollToPvId();">
5357 dpurdie 61
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
62
  <tr> 
63
    <td width="1%" background="images/bg_lght_gray.gif"><img src="images/h_trsp_dot.gif" width="1" height="1"></td>
64
    <td width="100%" valign="top" background="images/bg_lght_gray.gif">
65
	  <!--#include file="_version_browser.asp"-->
66
    </td>
67
  </tr>
68
  <tr> 
69
    <td background="images/bg_lght_gray.gif"><img src="images/h_trsp_dot.gif" width="1" height="300"></td>
70
    <td valign="top"> 
71
      <table width="100%" border="0" cellspacing="0" cellpadding="0">
72
        <tr> 
6977 dpurdie 73
          <td align="left" background="images/bg_lght_gray.gif">
5357 dpurdie 74
            <!-- TABS ------------------------------------------->
75
            <%
76
			If IsEmpty( Request("pv_id") ) Then
77
				Call Generate_Tab_Menu ( TABarray5D, Empty, "blue" )
78
			Else
79
				If bIsPatch Then
80
					Call Generate_Tab_Menu ( TABarray5D, "Unit Tests", "blue" )
81
				Else
82
					Call Generate_Tab_Menu ( TABarray5, "Unit Tests", "blue" )
83
				End If
84
			End If
85
			%>
86
            <!------------------------------------------------------------->
87
          </td>
88
        </tr>
89
        <tr>
90
          <td background="images/lbox_bg_blue.gif">&nbsp;</td>
91
        </tr>
92
      </table>
93
	  <!----------------------------------------------  DETAILS --------------------------------------------------->
94
	  <%If NOT IsEmpty( Request("pv_id") ) Then%>
95
      <table width="100%" border="0" cellspacing="0" cellpadding="10">
96
        <tr>
97
          <td>
98
		  <div id="LayerDetails" style="height: 350px; overflow: auto;" name="LayerDetails"> 
99
          <!--#include file="_unit_test_log.asp"-->  
100
          </div>
101
		  </td>
102
        </tr>
103
      </table>
104
	  <%End If%>
105
	  <!----------------------------------------------  END DETAILS --------------------------------------------------->
106
	  </td>
107
  </tr>
108
  <tr> 
109
    <td background="images/bg_lght_gray.gif"><img src="images/h_trsp_dot.gif" width="1" height="1"></td>
110
    <td background="images/lbox_bg_blue.gif"><img src="images/h_trsp_dot.gif" width="1" height="10"></td>
111
  </tr>
112
</table>
113
</body>
114
</html>
115
<!-- DESTRUCTOR ------->
5018 dpurdie 116
<!--#include file="common/destructor.asp"-->