Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
5357 dpurdie 1
<%@LANGUAGE="VBSCRIPT"%>
2
<%Option Explicit%>
3
<%Response.Expires = 0%>
4
<!--#include file="../common/conf.asp"-->
5
<%
6
'-- VARIABLE DECLARATION ----------------
7
Dim tempArr
8
Dim parRtag_id
9
Dim parPv_id
10
Dim parRfile
11
Dim parAnchor
12
'-- CONSTANTS ---------------------------
13
'-- INITIALISATION ----------------------
14
tempArr = Split( Session(enum_RELMGR_ERRDESCRIPTION), "|" )
15
parRtag_id = tempArr(0)
16
parPv_id = tempArr(1)
17
parRfile = tempArr(2)
18
parAnchor = tempArr(3)
19
'-- DESTROY -----------------------------
20
Session(enum_RELMGR_ERRDESCRIPTION) = NULL
21
'----------------------------------------
22
%>
23
<html>
24
<head>
25
<title>Release Manager</title>
26
<link rel="shortcut icon" href="<%=FavIcon%>"/>
27
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
6579 dpurdie 28
<link href="../images/release_manager_style.css?ver=<%=VixVerNum%>" rel="stylesheet" type="text/css">
29
<link href="../images/navigation.css?ver=<%=VixVerNum%>" rel="stylesheet" type="text/css">
5357 dpurdie 30
</head>
31
 
32
<body leftmargin="0" topmargin="0">
7458 dpurdie 33
<!--#include file="../_header.asp"-->
34
<table height="90%" class="full_table bg_grey">
5357 dpurdie 35
  <tr>
7458 dpurdie 36
    <td align="center">
5357 dpurdie 37
      <table width="650" border="0" cellspacing="0" cellpadding="0">
38
        <tr>
7458 dpurdie 39
          <td> 
7459 dpurdie 40
            <table width="100%" border="0" cellspacing="0" cellpadding="0" class=rounded_box>
5357 dpurdie 41
              <tr>
42
                <td width="1%" bgcolor="#FFFFFF"><img src="../images/h_trsp_dot.gif" width="1" height="1"></td>
43
                <td bgcolor="#FFFFFF" valign="top">
44
                  <!-- Body -->
45
                  <table width="400" border="0" cellspacing="0" cellpadding="5">
46
                    <form name="message" method="get" action="../<%=parRfile & parAnchor%>">
47
                      <tr>
48
                        <td width="1"><img src="../images/i_warning.gif" width="32" height="32"></td>
49
                        <td class="err_ttl">Package Version Control System Information Incomplete!</td>
50
                      </tr>
51
                      <tr>
52
                        <td>&nbsp;</td>
53
                        <td class="err_sol">
54
						  <!-- Error Details --------------------------------------->
55
						  Package is NOT released!<br>
56
						  Package information section on Release Notes tab is not fully complete.
57
                          Version Control System Information is not complete or not acceptable.
58
                          </td>
59
                      </tr>
60
                      <tr>
61
                        <td>&nbsp;</td>
62
                        <td class="err_dtl">
63
							<!-- Error Solution --------------------------------------->
64
                        </td>
65
                      </tr>
66
                      <tr>
67
                        <td>&nbsp;</td>
68
                        <td><br>
69
                          <input type="submit" name="btn" value="OK" class="form_btn">
70
                        </td>
71
                      </tr>
7459 dpurdie 72
                      <input type='hidden' name='rtag_id' value='<%=parRtag_id%>'>
73
                      <input type='hidden' name='pv_id' value='<%=parPv_id%>'>
5357 dpurdie 74
                    </form>
75
                  </table>
76
                  <!-- END Body-->
77
                </td>
78
                <td width="1%" background="../images/lbox_bgside_white.gif">&nbsp;</td>
79
              </tr>
7458 dpurdie 80
            </table>
81
          </td>
5357 dpurdie 82
        </tr>
83
      </table>
84
    </td>
85
  </tr>
86
</table>
5957 dpurdie 87
<!-- FOOTER -->
88
<!--#include file="../_footer.asp"-->
5357 dpurdie 89
</body>
90
</html>
91