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