| Line 1... |
Line 1... |
| 1 |
<%@LANGUAGE="VBSCRIPT"%>
|
1 |
<%@LANGUAGE="VBSCRIPT"%>
|
| 2 |
<%
|
2 |
<%
|
| - |
|
3 |
'=====================================================
|
| - |
|
4 |
'|
|
| - |
|
5 |
'| _wform_new_group.asp
|
| - |
|
6 |
'| Create a new base-view (group)
|
| - |
|
7 |
'| This page is designed to operation within an iframe
|
| - |
|
8 |
'|
|
| - |
|
9 |
'=====================================================
|
| - |
|
10 |
%>
|
| - |
|
11 |
<%
|
| 3 |
Option explicit
|
12 |
Option explicit
|
| 4 |
Response.Expires = 0 ' always load the page, dont store
|
13 |
Response.Expires = 0 ' always load the page, dont store
|
| 5 |
%>
|
14 |
%>
|
| 6 |
<%
|
15 |
<%
|
| 7 |
'=====================================================
|
16 |
'=====================================================
|
| Line 87... |
Line 96... |
| 87 |
End If
|
96 |
End If
|
| 88 |
|
97 |
|
| 89 |
If parMovePkg = "true" Then
|
98 |
If parMovePkg = "true" Then
|
| 90 |
' Call is comming from dependencies page to move package to other base view
|
99 |
' Call is comming from dependencies page to move package to other base view
|
| 91 |
Call Update_Pkg_Category ( parRtag_id, parPv_id, NEWBase_view_id )
|
100 |
Call Update_Pkg_Category ( parRtag_id, parPv_id, NEWBase_view_id )
|
| 92 |
Call OpenInParentWindow ("dependencies.asp?pv_id="& parPv_id &"&rtag_id="& parRtag_id)
|
101 |
Call OpenInParentWindow ("fixed_issues.asp?pv_id="& parPv_id &"&rtag_id="& parRtag_id)
|
| 93 |
Call CloseWindow
|
102 |
Call CloseWindow
|
| 94 |
Else
|
103 |
Else
|
| 95 |
Call OpenInParentWindow ( parRFile &"?base_view_id="& NEWBase_view_id &_
|
104 |
Call OpenInParentWindow ( parRFile &"?base_view_id="& NEWBase_view_id &_
|
| 96 |
"&pkg_list="& parPkg_list &_
|
105 |
"&pkg_list="& parPkg_list &_
|
| 97 |
"&add_type="& parAdd_type &_
|
106 |
"&add_type="& parAdd_type &_
|
| 98 |
"&pv_id="& parPv_id &_
|
107 |
"&pv_id="& parPv_id &_
|
| 99 |
"&ppv_id="& parPPv_id &_
|
108 |
"&ppv_id="& parPPv_id &_
|
| 100 |
"&rtag_id="& parRtag_id )
|
109 |
"&rtag_id="& parRtag_id )
|
| 101 |
Call CloseWindow
|
110 |
Call CloseWindow
|
| 102 |
End If
|
111 |
End If
|
| 103 |
End If
|
112 |
End If
|
| 104 |
%>
|
113 |
%>
|
| 105 |
<html>
|
114 |
<html>
|
| Line 111... |
Line 120... |
| 111 |
<link rel="stylesheet" href="images/release_manager_style.css" type="text/css">
|
120 |
<link rel="stylesheet" href="images/release_manager_style.css" type="text/css">
|
| 112 |
<link rel="stylesheet" href="images/navigation.css" type="text/css">
|
121 |
<link rel="stylesheet" href="images/navigation.css" type="text/css">
|
| 113 |
<script language="JavaScript" src="images/common.js"></script>
|
122 |
<script language="JavaScript" src="images/common.js"></script>
|
| 114 |
</head>
|
123 |
</head>
|
| 115 |
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" onload="self.focus();window.document.newbaseview.base_view_name.focus();">
|
124 |
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" onload="self.focus();window.document.newbaseview.base_view_name.focus();">
|
| 116 |
<form name="newbaseview" method="post" action="<%=scriptName%>" onSubmit="MM_validateForm('base_view_name','Base View','RisCleanStr');return document.MM_returnValue">
|
125 |
<form class="form_tight" name="newbaseview" method="post" action="<%=scriptName%>" onSubmit="MM_validateForm('base_view_name','Base View','RisCleanStr');return document.MM_returnValue">
|
| 117 |
<table width="100%" border="0" cellspacing="0" cellpadding="2" height="100%">
|
126 |
<table border="0" cellspacing="0" cellpadding="2" width="100%">
|
| 118 |
<tr>
|
- |
|
| 119 |
<td background="images/lbox_bg_orange.gif" width="1%" height="1%"><img src="images/i_change_group_off.gif" width="22" height="25" hspace="5"></td>
|
- |
|
| 120 |
<td background="images/lbox_bg_blue.gif" nowrap width="50%" class="wform_ttl"> Create NEW Base View</td>
|
- |
|
| 121 |
<td background="images/lbox_bg_blue.gif" align="right" width="50%">
|
- |
|
| 122 |
<input type="submit" name="btn" value="Create" class="form_btn_comp">
|
- |
|
| 123 |
<input type="reset" name="btn" value="Cancel" class="form_btn_comp" onclick="self.close()">
|
- |
|
| 124 |
</td>
|
- |
|
| 125 |
<td background="images/lbox_bg_blue.gif" align="right" width="1%%" nowrap>
|
- |
|
| 126 |
<img src="images/h_trsp_dot.gif" width="5" height="22"> </td>
|
- |
|
| 127 |
</tr>
|
- |
|
| 128 |
<tr>
|
127 |
<tr>
|
| 129 |
<td height="100%" width="1%"> </td>
|
- |
|
| 130 |
<td valign="top" nowrap colspan="3" class="wform_ttl" background="images/bg_form_lightgray.gif">
|
128 |
<td valign="top" nowrap colspan="3" class="wform_ttl" background="images/bg_form_lightgray.gif">
|
| 131 |
<table width="100%" border="0" cellspacing="1" cellpadding="2">
|
129 |
<table width="100%" border="0" cellspacing="1" cellpadding="2">
|
| 132 |
<tr>
|
130 |
<tr>
|
| 133 |
<td width="1%"><img src="images/h_trsp_dot.gif" width="10" height="30"></td>
|
- |
|
| 134 |
<td width="1%" nowrap class="form_group" valign="bottom"></td>
|
- |
|
| 135 |
<td nowrap width="100%"> </td>
|
- |
|
| 136 |
</tr>
|
- |
|
| 137 |
<tr>
|
- |
|
| 138 |
<td width="1%"> </td>
|
- |
|
| 139 |
<td width="1%" nowrap class="form_field" background="images/bg_form_lightbluedark.gif">Base View</td>
|
131 |
<td width="1%" nowrap class="form_field" background="images/bg_form_lightbluedark.gif">Base View</td>
|
| 140 |
<td nowrap width="100%" background="images/bg_form_lightbluedark.gif" class="form_txt">
|
132 |
<td nowrap width="100%" background="images/bg_form_lightbluedark.gif" class="form_txt">
|
| 141 |
<input type="text" name="base_view_name" maxlength="30" class="form_item">
|
133 |
<input type="text" name="base_view_name" maxlength="30" class="form_item">
|
| 142 |
</td>
|
134 |
</td>
|
| 143 |
</tr>
|
135 |
</tr>
|
| 144 |
<tr>
|
- |
|
| 145 |
<td width="1%"> </td>
|
- |
|
| 146 |
<td width="1%" nowrap class="form_field"><img src="images/h_trsp_dot.gif" width="100" height="10"></td>
|
- |
|
| 147 |
<td nowrap width="100%">
|
- |
|
| 148 |
<p> </p>
|
- |
|
| 149 |
</td>
|
- |
|
| 150 |
</tr>
|
- |
|
| 151 |
</table>
|
136 |
</table>
|
| 152 |
</td>
|
137 |
</td>
|
| 153 |
</tr>
|
138 |
</tr>
|
| 154 |
<tr>
|
139 |
<tr>
|
| - |
|
140 |
<td align="right">
|
| 155 |
<td height="1%" width="1%"><img src="images/h_trsp_dot.gif" width="5" height="5"></td>
|
141 |
<input type="submit" name="btn" value="Create" class="form_btn_comp">
|
| 156 |
<td valign="top" nowrap colspan="3" class="wform_ttl" background="images/lbox_bg_blue.gif"></td>
|
142 |
<input type="reset" name="btn" value="Cancel" class="form_btn_comp" onclick="parent.closeIFrame();">
|
| - |
|
143 |
</td>
|
| 157 |
</tr>
|
144 |
</tr>
|
| 158 |
</table>
|
145 |
</table>
|
| 159 |
<input type="hidden" name="rfile" value="<%=parRFile%>">
|
146 |
<input type="hidden" name="rfile" value="<%=parRFile%>">
|
| 160 |
<input type="hidden" name="movepkg" value="<%=parMovePkg%>">
|
147 |
<input type="hidden" name="movepkg" value="<%=parMovePkg%>">
|
| 161 |
<input type="hidden" name="add_type" value="<%=parAdd_type%>">
|
148 |
<input type="hidden" name="add_type" value="<%=parAdd_type%>">
|