Subversion Repositories DevTools

Rev

Rev 5933 | Rev 6623 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
5901 dpurdie 1
<%@LANGUAGE="VBSCRIPT"%>
2
<%
3
'=====================================================
4
'   RequestUserWip.asp
5
'=====================================================
6
%>
7
<%
8
Option explicit
9
' Good idea to set when using redirect
10
Response.Expires = 0	' always load the page, dont store
11
%>
12
<!--#include file="common/conf.asp"-->
13
<!--#include file="common/globals.asp"-->
14
<!--#include file="common/formating.asp"-->
15
<!--#include file="common/qstr.asp"-->
16
<!--#include file="common/common_subs.asp"-->
17
<%
18
'------------ Variable Definition -------------
19
Dim rsTemp
20
Dim PageInfoHash
21
'------------ Constants Declaration -----------
22
'------------ Variable Init -------------------
23
Set PageInfoHash = CreateObject("Scripting.Dictionary")
24
'----------------------------------------------
25
%>
26
<%
27
'------------------------------------------------------------------------------------------------------------------------
28
'------------------------------------------------------------------------------------------------------------------------
29
%>
30
<%
31
'------------------------ MAIN LINE ---------------------------------
32
'--------------------------------------------------------------------
33
%>
34
<table width="100%" border="0" cellspacing="0" cellpadding="0">
35
	<tr>
36
	 <td background="images/bg_form_lightbluedark.gif">		
37
 
38
						<table width="100%" border="0" cellspacing="1" cellpadding="3">
39
                          <tr>
40
						    <td background="images/bg_form_lightbluedark.gif" nowrap class="body_txt">Package Version</td>
5950 dpurdie 41
						    <td background="images/bg_form_lightbluedark.gif" nowrap class="body_txt">Last Modified</td>
5901 dpurdie 42
						    <td background="images/bg_form_lightbluedark.gif" nowrap class="body_txt">Reason for this version</td>
43
						  </tr>
44
 
45
<%
46
						  OraDatabase.Parameters.Add "USER_ID", Request("user_id"), 	ORAPARM_INPUT, ORATYPE_NUMBER 
47
 
48
						  Set rsTemp = OraDatabase.DbCreateDynaset( GetQuery("UserDangle.sql"), cint(0))
49
 
50
						  OraDatabase.Parameters.Remove "USER_ID"
51
 
52
						  %>
53
						  <%If rsTemp.RecordCount < 1 Then%>
54
						  <tr> 
55
							<td background="images/bg_form_lightgray.gif" nowrap>&nbsp;</td>
56
                          </tr>
57
						  <%End If%>
58
			  			  <%While ((NOT rsTemp.BOF) AND (NOT rsTemp.EOF))%>
59
                          <tr> 
60
                            <td background="images/bg_form_lightgray.gif" nowrap class="body_txt">
5933 dpurdie 61
                                <a href="javascript:;" onClick="MM_openBrWindow('_wform_versions_history_release_notes.asp?pkg_id=<%=rsTemp("pkg_id")%>&pv_id=<%=rsTemp("pv_id")%>','History','resizable=yes,scrollbars=yes,width=1000,height='+ ( screen.height - 100 ))" class="txt_linked">
5901 dpurdie 62
                                    <%= rsTemp("pkg_name") &" "& rsTemp("pkg_version") %>
63
                                </a></td>
5950 dpurdie 64
                            <td background="images/bg_form_lightgray.gif" nowrap class="body_txt"><%= DisplayDate(rsTemp("MODIFIED_STAMP"))%></td>
5901 dpurdie 65
                            <td background="images/bg_form_lightgray.gif" nowrap class="body_txt"><%= rsTemp("comments")%></td>
66
                          </tr>
67
                          <%rsTemp.MoveNext
68
						  WEnd
69
						  rsTemp.Close
70
						  Set rsTemp = nothing%>
71
                        </table>
72
    </td>						
73
  </tr>
74
</table>
75
						<br>
76
 
77
<%
78
Call Destroy_All_Objects
79
%>