Subversion Repositories DevTools

Rev

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