Subversion Repositories DevTools

Rev

Rev 7458 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

<%@LANGUAGE="VBSCRIPT"%>
<%Option Explicit%>
<%Response.Expires = 0%>
<!--#include file="../common/conf.asp"-->
<%
'-- VARIABLE DECLARATION ----------------
Dim tempArr
Dim parRtag_id
Dim parPv_id
Dim parRfile
Dim parAnchor
'-- CONSTANTS ---------------------------
'-- INITIALISATION ----------------------
tempArr = Split( Session(enum_RELMGR_ERRDESCRIPTION), "|" )
parRtag_id = tempArr(0)
parPv_id = tempArr(1)
parRfile = tempArr(2)
parAnchor = tempArr(3)
'-- DESTROY -----------------------------
Session(enum_RELMGR_ERRDESCRIPTION) = NULL
'----------------------------------------
%>
<html>
<head>
    <title>Release Manager</title>
    <link rel="shortcut icon" href="<%=FavIcon%>"/>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <link href="../images/release_manager_style.css?ver=<%=VixVerNum%>" rel="stylesheet" type="text/css">
    <link href="../images/navigation.css?ver=<%=VixVerNum%>" rel="stylesheet" type="text/css">
</head>
<body leftmargin="0" topmargin="0">
<table height="100%" class="full_table bg_grey">
  <tr class=minHeight>
    <td valign="top">
         <!--#include file="../_header.asp"-->
    </td>
  </tr>
  <tr>
    <td align="center">
    <div style="width:650px" class="Panel rounded_box">
        <div class=PanelFrame>
            <form name="message" method="get" action="../<%=parRfile & parAnchor%>">
                <div class=textPanel>
                    <img class=PanelCellMid src="../images/i_warning.gif" width="32" height="32">
                    <span class="PanelCellMid err_ttl">Package released under incorrect VCS!</span>
              </div>
              <div class="textPanel err_sol PanelPadTop">
                  <!-- Error Details --------------------------------------->
                    Package is NOT released!

                    <p>This version of the package is not being released under the current Version Control System (VCS)
                    in use by this package.

                    <p>The package has been migrated to a different VCS, but this version is being released under a previous type of VCS.
                    This is not allowed.

                    <p>Possible senarios:
                    <ul>
                        <li>
                            The package was migrated from ClearCase to Subversion, but this version of the package is being released under ClearCase.
                        </li>
                        <li>
                            The package was migrated from Subversion to GIT, but this version of the package is being released under Subversion or ClearCase.
                        </li>
                    </ul>
              </div>
              <div class="textPanel err_dtl">
                <!-- Error Solution --------------------------------------->
                Release the package-version under same VCS as other versions of the package.
              </div>
              <div class='PanelSep'></div>
              <div class="buttonPanelWhite err_dtl">
                  <input type="submit" name="btn" value="OK" class="form_btn">
                  <input type="hidden" name="pv_id" value="<%=parPv_id%>">
                  <input type="hidden" name="rtag_id" value="<%=parRtag_id%>">
              </div>
            </form>
        </div>
    </div>
    </td>
  </tr>
</table>
  </td>
  </tr>
</table>
<!-- FOOTER -->
<!--#include file="../_footer.asp"-->
</body>
</html>