Subversion Repositories DevTools

Rev

Rev 5950 | Rev 6790 | 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>
6623 dpurdie 36
	 <td>		
5901 dpurdie 37
 
6623 dpurdie 38
        <table width="100%" border="0" cellspacing="1" cellpadding="3">
39
          <tr class="form_field_bg">
40
            <td nowrap class="body_row">Package Version</td>
41
            <td nowrap class="body_row">Last Modified</td>
42
            <td nowrap class="body_row">Reason for this version</td>
43
          </tr>
44
          <%
45
          OraDatabase.Parameters.Add "USER_ID", Request("user_id"), 	ORAPARM_INPUT, ORATYPE_NUMBER 
46
          Set rsTemp = OraDatabase.DbCreateDynaset( GetQuery("UserDangle.sql"), cint(0))
47
          OraDatabase.Parameters.Remove "USER_ID"
48
          If rsTemp.RecordCount < 1 Then
49
          %>
50
          <tr class="form_field_grey_bg"> 
51
            <td class="body_row" nowrap colspan="3">None</td>
52
          </tr>
53
          <%End If%>
54
          <%While ((NOT rsTemp.BOF) AND (NOT rsTemp.EOF))%>
55
          <tr class="form_field_grey_bg"> 
56
            <td nowrap class="body_txt">
57
                <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"><%= rsTemp("pkg_name") &" "& rsTemp("pkg_version") %></a>
58
            </td>
59
            <td nowrap class="body_txt"><%= DisplayDate(rsTemp("MODIFIED_STAMP"))%></td>
60
            <td nowrap class="body_txt"><%= rsTemp("comments")%></td>
61
          </tr>
62
          <%rsTemp.MoveNext
63
          WEnd
64
          rsTemp.Close
65
          Set rsTemp = nothing%>
66
        </table>
5901 dpurdie 67
    </td>						
68
  </tr>
69
</table>
6623 dpurdie 70
<br>
5901 dpurdie 71
<%
72
Call Destroy_All_Objects
73
%>