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 parRMpv_id
10
Dim parRfile
11
'-- CONSTANTS ---------------------------
12
'-- INITIALISATION ----------------------
13
tempArr = Split( Session(enum_RELMGR_ERRDESCRIPTION), "|" )
14
parRMpv_id = tempArr(0)
15
parRtag_id = tempArr(1)
16
parRfile = 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="../<%=parRfile%>">
45
                      <tr>
46
                        <td width="1"><img src="../images/i_warning.gif" width="32" height="32"></td>
47
                        <td class="err_ttl">Cannot Remove Package(s) !</td>
48
                      </tr>
49
                      <tr>
50
                        <td>&nbsp;</td>
51
                        <td class="err_sol">
52
						  <!-- Error Details ---------------------------------------> Package is still	being	used	by	other	packages.	  </td>
53
                      </tr>
54
                      <tr>
55
                        <td>&nbsp;</td>
56
                        <td class="err_dtl">
57
							<!-- Error Solution --------------------------------------->
58
							See 'Used By' tab for more information. </td>
59
                      </tr>
60
                      <tr>
61
                        <td>&nbsp;</td>
62
                        <td><br>
63
                          <input type="submit" name="button" value="OK" class="form_btn">
64
                        </td>
65
                      </tr>
66
					  <input type="hidden" name="btn" value="NO">
67
					  <input type="hidden" name="RMpv_id" value="<%=parRMpv_id%>">
68
					  <input type="hidden" name="rtag_id" value="<%=parRtag_id%>">
69
                    </form>
70
                  </table>
71
                  <!-- END Body-->
72
                </td>
73
                <td width="1%" background="../images/lbox_bgside_white.gif">&nbsp;</td>
74
              </tr>
7458 dpurdie 75
            </table>
76
          </td>
5357 dpurdie 77
        </tr>
78
      </table>
79
    </td>
80
  </tr>
81
</table>
5957 dpurdie 82
<!-- FOOTER -->
83
<!--#include file="../_footer.asp"-->
5357 dpurdie 84
</body>
85
</html>
7458 dpurdie 86