Subversion Repositories DevTools

Rev

Rev 6579 | Go to most recent revision | 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 dupARR
11
'-- CONSTANTS ---------------------------
12
'-- INITIALISATION ----------------------
13
tempArr = Split( Session(enum_RELMGR_ERRDESCRIPTION), "|" )
14
parRtag_id = tempArr(0)
15
parPv_id = tempArr(1)
16
dupARR = Split( 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> 
38
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
5357 dpurdie 39
              <tr>
40
                <td align="left" valign="top" width="1%" background="../images/lbox_bg_blue.gif"><img src="../images/lbox_tl_cnr_b.gif" width="13" height="13"></td>
41
                <td background="../images/lbox_bg_blue.gif"></td>
42
                <td align="right" valign="top" width="1%" background="../images/lbox_bg_blue.gif"><img src="../images/lbox_tr_cnr_b.gif" width="13" height="13"></td>
43
              </tr>
44
              <tr>
45
                <td width="1%" bgcolor="#FFFFFF"><img src="../images/h_trsp_dot.gif" width="1" height="1"></td>
46
                <td bgcolor="#FFFFFF" valign="top">
47
                  <!-- Body -->
48
                  <table width="400" border="0" cellspacing="0" cellpadding="5">
49
                    <form name="message" method="get" action="../dependencies.asp">
50
                      <tr>
51
                        <td width="1"><img src="../images/i_warning.gif" width="32" height="32"></td>
52
                        <td class="err_ttl">Duplicate Build Dependencies Ignored!</td>
53
                      </tr>
54
                      <tr>
55
                        <td>&nbsp;</td>
56
                        <td class="err_sol">
57
						<!-- Error Details --------------------------------------->
58
						Following duplicate build dependencies are found and ignored.<br><br>
59
						<%
60
						Dim duplicateItem
61
						For Each duplicateItem In dupARR
62
							Response.write duplicateItem &"<br>"
63
						Next
64
						%>
65
						</td>
66
                      </tr>
67
                      <tr>
68
                        <td>&nbsp;</td>
69
                        <td class="err_dtl">
70
						<!-- Error Solution --------------------------------------->
71
						</td>
72
                      </tr>
73
                      <tr>
74
                        <td>&nbsp;</td>
75
                        <td><br>
76
                          <input type="submit" name="btn" value="OK" class="form_btn">
77
                        </td>
78
                      </tr>
79
					  <input type='hidden' name='rtag_id' value='<%=parRtag_id%>'>
80
					  <input type='hidden' name='pv_id' value='<%=parPv_id%>'>
81
                    </form>
82
                  </table>
83
                  <!-- END Body-->
84
                </td>
85
                <td width="1%" background="../images/lbox_bgside_white.gif">&nbsp;</td>
86
              </tr>
87
              <tr>
88
                <td width="1%" background="../images/lbox_bg_blue.gif" valign="bottom"><img src="../images/lbox_bl_cnr_b.gif" width="13" height="13"></td>
89
                <td background="../images/lbox_bg_blue.gif"></td>
90
                <td width="1%" background="../images/lbox_bg_blue.gif" valign="bottom" align="right"><img src="../images/lbox_br_cnr_b.gif" width="13" height="13"></td>
91
              </tr>
7458 dpurdie 92
            </table>
93
          </td>
5357 dpurdie 94
        </tr>
95
      </table>
96
    </td>
97
  </tr>
98
</table>
5957 dpurdie 99
<!-- FOOTER -->
100
<!--#include file="../_footer.asp"-->
5357 dpurdie 101
</body>
102
</html>
103