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