Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
119 ghuddy 1
<%@LANGUAGE="VBSCRIPT"%>
2
<%
3
'=====================================================
4
'|                                                   |
5
'|		           Files and Folders                 |
6
'|                                                   |
7
'=====================================================
8
%>
9
<%
10
Option explicit
11
' Good idea to set when using redirect
12
Response.Expires = 0	' always load the page, dont store
13
%>
14
<!--#include file="common/conf.asp"-->
15
<!--#include file="common/globals.asp"-->
16
<!--#include file="common/formating.asp"-->
17
<!--#include file="common/qstr.asp"-->
18
<!--#include file="common/common_subs.asp"-->
19
<!--#include file="common/common_dbedit.asp"-->
20
<!--#include file="_tabs.asp"-->
21
<!--#include file="_action_buttons.asp"-->
22
<!--#include file="common/_package_common.asp"-->
23
<%
24
'------------ ACCESS CONTROL ------------------
25
%>
26
<!--#include file="_access_control_general.asp"-->
27
<%
28
'------------ Variable Definition -------------
3959 dpurdie 29
Dim pkgCompare
30
pkgCompare = TRUE
31
 
119 ghuddy 32
'------------ Constants Declaration -----------
33
'------------ Variable Init -------------------
34
%>
35
<html>
36
<title><%=Title(Request("rtag_id"))%></title>
37
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
38
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
39
<link rel="stylesheet" href="images/release_manager_style.css" type="text/css">
40
<link rel="stylesheet" href="images/navigation.css" type="text/css">
41
<script language="JavaScript" src="images/common.js"></script>
42
<script language="JavaScript" src="scripts/remote_scripting.js"></script>
5085 dpurdie 43
<!--#include file="_jquery_includes.asp"-->
119 ghuddy 44
 
45
<!-- DROPDOWN MENUS -->
46
<!--#include file="_menu_def.asp"-->
47
<script language="JavaScript1.2" src="images/popup_menu.js"></script>
48
</head>
49
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" >
50
<!-- MENU LAYERS -------------------------------------->
51
<div id="popmenu" class="menuskin" onMouseover="clearhidemenu();highlightmenu(event,'on')" onMouseout="highlightmenu(event,'off');dynamichide(event)"> 
52
  <!----------------------------------------------------->
53
</div>
54
<!-- HEADER -->
55
<!--#include file="_header.asp"-->
56
<!-- BODY ---->
57
<table width="100%" border="0" cellspacing="0" cellpadding="0">
58
	<tr> 
59
		<td valign="top" width="1" background="images/bg_bage.gif">
60
		<!-- LEFT -->
61
		<!--#include file="_environment.asp"-->
62
		</td>
63
		<td width="1" bgcolor="#999999"><img src="images/h_trsp_dot.gif" width="1" height="1"></td>
64
		<td valign="top" width="100%">
65
		<!-- MIDDLE -->
66
		<table width="100%" border="0" cellspacing="0" cellpadding="0">
67
		  <tr>
68
		    <td width="1%" background="images/bg_action_norm.gif"><IMG height=35 src="images/spacer.gif" width=15></td>
185 brianf 69
		    <td width="100%" background="images/bg_action_norm.gif"><%Call RenderActionBar(parRtag_id,parPv_id)%></td>
119 ghuddy 70
		    <td width="1%" background="images/bg_action_norm.gif"><IMG height=1 src="images/spacer.gif" width=15></td>
71
		  </tr>
183 brianf 72
          <tr>
73
            <td background="images/bg_lght_gray.gif"><IMG height="45" src="images/spacer.gif" width=1></td>
187 brianf 74
            <td background="images/bg_lght_gray.gif"><%Call RenderStatus(parRtag_id,parPv_id)%></td>
183 brianf 75
            <td background="images/bg_lght_gray.gif">&nbsp;</td>
76
          </tr>
119 ghuddy 77
		  <tr>
78
		    <td background="images/bg_lght_gray.gif">&nbsp;</td>
79
		    <td valign="bottom" background="images/bg_lght_gray.gif">
80
		      <table width="100" border="0" cellspacing="0" cellpadding="0">
81
		        <tr>
4687 dpurdie 82
		          <td><IMG height="1" src="images/spacer.gif" width="0" alt="tab-left-margin" ></td>
119 ghuddy 83
		          <td>
84
				  <!-- TABS ------------------------------------->
85
				  <%Call Generate_Tab_Menu ( TABarray1, "Files and Folders", "orange" )%>
86
				  </td>
87
		        </tr>
88
		      </table>
89
		    </td>
90
		    <td background="images/bg_lght_gray.gif">&nbsp;</td>
91
		  </tr>
92
		  <tr>
93
		    <td background="images/lbox_bg_orange.gif"><IMG height=35 src="images/spacer.gif" width=1></td>
94
		    <td background="images/lbox_bg_orange.gif"><SPAN id="ProgressBar" name="ProgressBar" style="visibility:hidden;" class="body_txt"><img src="images/i_processing.gif" width="11" height="17" align="absmiddle" hspace="3">Processing...</SPAN>
95
			<!-- TAB ACTION BUTTONS ------------------------------------->
96
			<%Call Action_Buttons ( "Files and Folders" )%> 
97
			</td>
98
		    <td background="images/lbox_bg_orange.gif">&nbsp;</td>
99
		  </tr>
100
		  <tr>
101
		    <td></td>
102
		    <td valign="top">
103
			<!-- DETAILS ------------------------------------------------->
3959 dpurdie 104
            <!--#include file="_files_and_folders.asp"-->
119 ghuddy 105
			<!-- END DETAILS ------------------------------------------------->
106
			</td>
107
		    <td>&nbsp;</td>
108
		  </tr>
109
		</table>
110
		<!-- END MIDDLE -------->
111
		</td>
112
	</tr>
113
</table>
114
<!-- FOOTER -->
115
<!--#include file="_footer.asp"-->
116
</body>
117
</html>			
118
<%
119
Call Destroy_All_Objects
120
%>