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 parPar1
11
'-- CONSTANTS ---------------------------
12
'-- INITIALISATION ----------------------
13
tempArr = Split( Session(enum_RELMGR_ERRDESCRIPTION), "|" )
14
parPar1 = tempArr(0)
15
parRtag_id = tempArr(1)
16
parPv_id = tempArr(2)
17
'-- DESTROY -----------------------------
18
Session(enum_RELMGR_ERRDESCRIPTION) = NULL
19
'----------------------------------------
20
%>
21
<html>
22
<head>
23
<title>Release Manager</title>
24
<link rel="shortcut icon" href="<%=FavIcon%>"/>
25
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
6579 dpurdie 26
<link href="../images/release_manager_style.css?ver=<%=VixVerNum%>" rel="stylesheet" type="text/css">
27
<link href="../images/navigation.css?ver=<%=VixVerNum%>" rel="stylesheet" type="text/css">
5357 dpurdie 28
</head>
29
 
30
<body leftmargin="0" topmargin="0">
7458 dpurdie 31
<!--#include file="../_header.asp"-->
32
<table height="90%" class="full_table bg_grey">
5357 dpurdie 33
  <tr>
7458 dpurdie 34
    <td align="center">
5357 dpurdie 35
      <table width="650" border="0" cellspacing="0" cellpadding="0">
36
        <tr>
7458 dpurdie 37
          <td> 
7459 dpurdie 38
            <table width="100%" border="0" cellspacing="0" cellpadding="0" class=rounded_box>
5357 dpurdie 39
              <tr>
40
                <td width="1%" bgcolor="#FFFFFF"><img src="../images/h_trsp_dot.gif" width="1" height="1"></td>
41
                <td bgcolor="#FFFFFF" valign="top">
42
                  <!-- Body -->
43
                  <table width="400" border="0" cellspacing="0" cellpadding="5">
44
                    <form name="message" method="get" action="../runtime_dependencies.asp">
45
                      <tr>
46
                        <td width="1"><img src="../images/i_warning.gif" width="32" height="32"></td>
47
                        <td class="err_ttl">Duplicate Runtime Dependency!</td>
48
                      </tr>
49
                      <tr>
50
                        <td>&nbsp;</td>
51
                        <td class="err_dtl">
52
						<!-- Error Details --------------------------------------->
53
						Product <%=parPar1%> already exists.
54
						</td>
55
                      </tr>
56
                      <tr>
57
                        <td>&nbsp;</td>
58
                        <td class="err_sol">
59
						<!-- Error Solution --------------------------------------->
60
						Duplicate Runtime dependencies are not allowed.
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='hidenv' value='true'>
70
                      <input type='hidden' name='rtag_id' value='<%=parRtag_id%>'>
71
                      <input type='hidden' name='pv_id' value='<%=parPv_id%>'>
5357 dpurdie 72
                    </form>
73
                  </table>
74
                  <!-- END Body-->
75
                </td>
76
                <td width="1%" background="../images/lbox_bgside_white.gif">&nbsp;</td>
77
              </tr>
7458 dpurdie 78
            </table>
79
          </td>
5357 dpurdie 80
        </tr>
81
      </table>
82
    </td>
83
  </tr>
84
</table>
5957 dpurdie 85
<!-- FOOTER -->
86
<!--#include file="../_footer.asp"-->
5357 dpurdie 87
</body>
88
</html>
89