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 pkgCompare
28
pkgCompare = FALSE
29
'------------ Constants Declaration -----------
30
'------------ Variable Init -------------------
31
%>
32
<!--#include file="_menu_def.asp"-->
33
<html>
34
<head>
35
<title>Release Manager</title>
36
<link rel="shortcut icon" href="<%=FavIcon%>"/>
37
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
38
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
6579 dpurdie 39
<link rel="stylesheet" href="images/release_manager_style.css?ver=<%=VixVerNum%>" type="text/css">
40
<link rel="stylesheet" href="images/navigation.css?ver=<%=VixVerNum%>" type="text/css">
41
<script language="JavaScript" src="images/common.js?ver=<%=VixVerNum%>"></script>
5357 dpurdie 42
<!--#include file="_jquery_includes.asp"-->
6610 dpurdie 43
<script language="JavaScript1.2" src="images/popup_menu.js?ver=<%=VixVerNum%>"></script>
5357 dpurdie 44
</head>
5933 dpurdie 45
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" onload="self.focus();setLayerHeight();scrollToPvId();">
5357 dpurdie 46
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
47
  <tr> 
48
    <td width="1%" background="images/bg_lght_gray.gif"><img src="images/h_trsp_dot.gif" width="1" height="1"></td>
49
    <td width="100%" valign="top" background="images/bg_lght_gray.gif">
50
	  <!--#include file="_version_browser.asp"-->
51
    </td>
52
  </tr>
53
  <tr> 
54
    <td background="images/bg_lght_gray.gif"><img src="images/h_trsp_dot.gif" width="1" height="300"></td>
55
    <td valign="top"> 
56
      <table width="100%" border="0" cellspacing="0" cellpadding="0">
57
        <tr> 
6977 dpurdie 58
          <td align="left" background="images/bg_lght_gray.gif">
5357 dpurdie 59
            <!-- TABS ------------------------------------------->
60
            <%
61
			If IsEmpty( Request("pv_id") ) Then
62
				Call Generate_Tab_Menu ( TABarray5D, Empty, "blue" )
63
			Else
64
				If bIsPatch Then
65
					Call Generate_Tab_Menu ( TABarray5D, "Files and Folders", "blue" )
66
				Else
67
					Call Generate_Tab_Menu ( TABarray5, "Files and Folders", "blue" )
68
				End If
69
			End If
70
			%>
71
            <!------------------------------------------------------------->
72
          </td>
73
        </tr>
74
        <tr>
75
          <td background="images/lbox_bg_blue.gif">&nbsp;</td>
76
        </tr>
77
      </table>
78
	  <!----------------------------------------------  DETAILS --------------------------------------------------->
79
	  <%If NOT IsEmpty( Request("pv_id") ) Then%>
80
      <table width="100%" border="0" cellspacing="0" cellpadding="10">
81
        <tr>
82
          <td>
83
		  <div id="LayerDetails" style="height: 350px; overflow: auto;" name="LayerDetails"> 
84
          <!--#include file="_files_and_folders.asp"-->
85
          </div>
86
		  </td>
87
        </tr>
88
      </table>
89
	  <%End If%>
90
	  <!----------------------------------------------  END DETAILS --------------------------------------------------->
91
	  </td>
92
  </tr>
93
  <tr> 
94
    <td background="images/bg_lght_gray.gif"><img src="images/h_trsp_dot.gif" width="1" height="1"></td>
95
    <td background="images/lbox_bg_blue.gif"><img src="images/h_trsp_dot.gif" width="1" height="10"></td>
96
  </tr>
97
</table>
98
</body>
99
</html>
100
<!-- DESTRUCTOR ------->
3872 dpurdie 101
<!--#include file="common/destructor.asp"-->