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"><b>Product SBOM Priority Not Defined!</b></td>
50
                      </tr>
51
                      <tr>
52
                        <td>&nbsp;</td>
53
                        <td class="err_sol">
54
						  <!-- Error Details --------------------------------------->
55
						  Product SBOM priority in Release Notes Tab is not defined.                        </td>
56
                      </tr>
57
                      <tr>
58
                        <td>&nbsp;</td>
59
                        <td class="err_dtl">
60
							<!-- Error Solution --------------------------------------->
61
                        </td>
62
                      </tr>
63
                      <tr>
64
                        <td>&nbsp;</td>
65
                        <td><br>
66
                          <input type="submit" name="btn" value="OK" class="form_btn">
67
                        </td>
68
                      </tr>
7459 dpurdie 69
                      <input type='hidden' name='rtag_id' value='<%=parRtag_id%>'>
70
                      <input type='hidden' name='pv_id' value='<%=parPv_id%>'>
5357 dpurdie 71
                    </form>
72
                  </table>
73
                  <!-- END Body-->
74
                </td>
75
                <td width="1%" background="../images/lbox_bgside_white.gif">&nbsp;</td>
76
              </tr>
7458 dpurdie 77
            </table>
78
          </td>
5357 dpurdie 79
        </tr>
80
      </table>
81
    </td>
82
  </tr>
83
</table>
5957 dpurdie 84
<!-- FOOTER -->
85
<!--#include file="../_footer.asp"-->
5357 dpurdie 86
</body>
87
</html>
88