Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
5357 dpurdie 1
<%@LANGUAGE="VBSCRIPT"%>
2
<%
3
Option explicit
4
Response.Expires = 0	' always load the page, dont store
5
%>
6
<%
7
'=====================================================
8
'					New Project
9
'=====================================================
10
%>
11
<!--#include file="common/conf.asp"-->
12
<!--#include file="common/globals.asp"-->
13
<!--#include file="common/qstr.asp"-->
14
<!--#include file="common/common_subs.asp"-->
15
<!--#include file="common/common_dbedit.asp"-->
16
<!--#include file="common/_popup_window_common.asp"-->
17
<%
18
'------------ ACCESS CONTROL ------------------
19
%>
20
<!--#include file="_access_control_login.asp"-->
21
<!--#include file="_access_control_general.asp"-->
22
<%
23
'------------ Variable Definition -------------
24
Dim parProj
25
'------------ Constants Declaration -----------
26
'------------ Variable Init -------------------
27
parProj = QStrPar("FRproj")
28
'----------------------------------------------
29
%>
30
<%
31
'Process submition
32
If CBool(QStrPar("action")) AND (parProj <> "")  AND objAccessControl.UserLogedIn Then
33
	%>
34
	<script language="JavaScript" type="text/javascript">
35
	opener.location='_add_new_project.asp?FRproj=<%=parProj%>';
36
	</script>	
37
	<%
38
	Call CloseWindow
39
 
40
End If
41
%>
42
<html>
43
<head>
44
<title>Release Manager</title>
45
<link rel="shortcut icon" href="<%=FavIcon%>"/>
46
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
47
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
48
<link rel="stylesheet" href="images/release_manager_style.css" type="text/css">
49
<link rel="stylesheet" href="images/navigation.css" type="text/css">
50
<script language="JavaScript" src="images/common.js"></script>
51
</head>
52
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" onload="self.focus();document.newproj.FRproj.focus();">
53
<form name="newproj" method="post" action="<%=scriptName%>" onSubmit="MM_validateForm('FRproj','Project Name','R');return document.MM_returnValue">
54
  <table width="100%" border="0" cellspacing="0" cellpadding="2" height="100%">
55
    <tr> 
56
      <td background="images/lbox_bg_orange.gif" width="1%" height="1%"><img src="images/i_project.gif" width="20" height="20" hspace="5"></td>
57
      <td background="images/lbox_bg_blue.gif" nowrap width="50%" class="wform_ttl">&nbsp;Create 
58
        NEW Project</td>
59
      <td background="images/lbox_bg_blue.gif" align="right" width="50%"> 
60
        <input type="submit" name="btn" value="Create" class="form_btn_comp">
61
        <input type="reset" name="btn" value="Cancel" class="form_btn_comp" onclick="self.close()">
62
      </td>
63
      <td background="images/lbox_bg_blue.gif" align="right" width="1%%" nowrap> 
64
        <img src="images/h_trsp_dot.gif" width="5" height="22"> </td>
65
    </tr>
66
    <tr> 
67
      <td height="100%" width="1%">&nbsp;</td>
68
      <td valign="top" nowrap colspan="3" class="wform_ttl" background="images/bg_form_lightgray.gif"> 
69
        <table width="100%" border="0" cellspacing="1" cellpadding="2">
70
          <tr> 
71
            <td width="1%"><img src="images/h_trsp_dot.gif" width="10" height="30"></td>
72
            <td width="1%" nowrap class="form_group" valign="bottom"></td>
73
            <td nowrap width="100%">&nbsp; </td>
74
          </tr>
75
          <tr> 
76
            <td width="1%">&nbsp;</td>
77
            <td width="1%" nowrap class="form_field" background="images/bg_form_lightbluedark.gif">Project 
78
              Name </td>
79
            <td nowrap width="100%" background="images/bg_form_lightbluedark.gif" class="form_txt"> 
80
              <input type="text" name="FRproj" maxlength="30" class="form_item">
81
              <input type="hidden" name="action" value="true">
82
            </td>
83
          </tr>
84
          <tr> 
85
            <td width="1%">&nbsp;</td>
86
            <td width="1%" nowrap class="form_field"><img src="images/h_trsp_dot.gif" width="100" height="10"></td>
87
            <td nowrap width="100%"> 
88
              <p>&nbsp;</p>
89
            </td>
90
          </tr>
91
        </table>
92
      </td>
93
    </tr>
94
    <tr>
95
      <td height="1%" width="1%"><img src="images/h_trsp_dot.gif" width="5" height="5"></td>
96
      <td valign="top" nowrap colspan="3" class="wform_ttl" background="images/lbox_bg_blue.gif"></td>
97
    </tr>
98
  </table>
99
</form>
100
</body>
101
</html>
102
 
103
 
104
<!-- DESTRUCTOR ------->
119 ghuddy 105
<!--#include file="common/destructor.asp"-->