Subversion Repositories DevTools

Rev

Rev 7458 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
7457 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 parRfile
11
Dim parAnchor
12
'-- CONSTANTS ---------------------------
13
'-- INITIALISATION ----------------------
14
tempArr = Split( Session(enum_RELMGR_ERRDESCRIPTION), "|" )
15
parRtag_id = tempArr(0)
16
parPv_id = tempArr(1)
17
parRfile = tempArr(2)
18
parAnchor = tempArr(3)
19
'-- DESTROY -----------------------------
20
Session(enum_RELMGR_ERRDESCRIPTION) = NULL
21
'----------------------------------------
22
%>
23
<html>
24
<head>
25
    <title>Release Manager</title>
26
    <link rel="shortcut icon" href="<%=FavIcon%>"/>
27
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
28
    <link href="../images/release_manager_style.css?ver=<%=VixVerNum%>" rel="stylesheet" type="text/css">
29
    <link href="../images/navigation.css?ver=<%=VixVerNum%>" rel="stylesheet" type="text/css">
30
</head>
31
<body leftmargin="0" topmargin="0">
7458 dpurdie 32
<!--#include file="../_header.asp"-->
33
<table height="90%" class="full_table bg_grey">
7459 dpurdie 34
    <tr>
7457 dpurdie 35
    <td align="center">
36
    <div style="width:650px" class="Panel rounded_box">
37
        <div class=PanelFrame>
38
            <form name="message" method="get" action="../<%=parRfile & parAnchor%>">
39
                <div class=textPanel>
40
                    <img class=PanelCellMid src="../images/i_warning.gif" width="32" height="32">
41
                    <span class="PanelCellMid err_ttl">Package released under incorrect VCS!</span>
7459 dpurdie 42
                </div>
43
                <div class="textPanel err_sol PanelPadTop">
44
                    <!-- Error Details --------------------------------------->
7457 dpurdie 45
                    Package is NOT released!
46
 
47
                    <p>This version of the package is not being released under the current Version Control System (VCS)
48
                    in use by this package.
49
 
7459 dpurdie 50
                    <p>The package has been migrated to a different VCS, but this version is being released under a
51
                    previous type of VCS. This is not allowed.
7457 dpurdie 52
 
53
                    <p>Possible senarios:
54
                    <ul>
55
                        <li>
7459 dpurdie 56
                            The package was migrated from ClearCase to Subversion, but this version of the package is
57
                            being released under ClearCase.
7457 dpurdie 58
                        </li>
59
                        <li>
7459 dpurdie 60
                            The package was migrated from Subversion to GIT, but this version of the package is being
61
                            released under Subversion or ClearCase.
7457 dpurdie 62
                        </li>
63
                    </ul>
7459 dpurdie 64
                </div>
65
                <div class="textPanel err_dtl">
66
                    <!-- Error Solution --------------------------------------->
67
                    Release the package-version under same VCS as other versions of the package.
68
                </div>
69
                <div class='PanelSep'></div>
70
                <div class="buttonPanelWhite err_dtl">
71
                    <input type="submit" name="btn" value="OK" class="form_btn">
72
                    <input type="hidden" name="pv_id" value="<%=parPv_id%>">
73
                    <input type="hidden" name="rtag_id" value="<%=parRtag_id%>">
74
                </div>
7457 dpurdie 75
            </form>
76
        </div>
77
    </div>
78
    </td>
7459 dpurdie 79
    </tr>
7457 dpurdie 80
</table>
81
<!-- FOOTER -->
82
<!--#include file="../_footer.asp"-->
83
</body>
84
</html>
85