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 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> 
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="../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 Build Dependencies Ignored!</td>
48
                      </tr>
49
                      <tr>
50
                        <td>&nbsp;</td>
51
                        <td class="err_sol">
52
						<!-- Error Details --------------------------------------->
53
						Following duplicate build dependencies are found and ignored.<br><br>
54
						<%
55
						Dim duplicateItem
56
						For Each duplicateItem In dupARR
57
							Response.write duplicateItem &"<br>"
58
						Next
59
						%>
7459 dpurdie 60
                        </td>
5357 dpurdie 61
                      </tr>
62
                      <tr>
63
                        <td>&nbsp;</td>
64
                        <td class="err_dtl">
7459 dpurdie 65
                        <!-- Error Solution --------------------------------------->
66
                        </td>
5357 dpurdie 67
                      </tr>
68
                      <tr>
69
                        <td>&nbsp;</td>
70
                        <td><br>
71
                          <input type="submit" name="btn" value="OK" class="form_btn">
72
                        </td>
73
                      </tr>
7459 dpurdie 74
                      <input type='hidden' name='rtag_id' value='<%=parRtag_id%>'>
75
                      <input type='hidden' name='pv_id' value='<%=parPv_id%>'>
5357 dpurdie 76
                    </form>
77
                  </table>
78
                  <!-- END Body-->
79
                </td>
80
                <td width="1%" background="../images/lbox_bgside_white.gif">&nbsp;</td>
81
              </tr>
7458 dpurdie 82
            </table>
83
          </td>
5357 dpurdie 84
        </tr>
85
      </table>
86
    </td>
87
  </tr>
88
</table>
5957 dpurdie 89
<!-- FOOTER -->
90
<!--#include file="../_footer.asp"-->
5357 dpurdie 91
</body>
92
</html>
93