Subversion Repositories DevTools

Rev

Rev 6791 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<%@LANGUAGE="VBSCRIPT"%>
<%
'=====================================================
'   RequestUserWip.asp
'=====================================================
%>
<%
Option explicit
' Good idea to set when using redirect
Response.Expires = 0    ' always load the page, dont store
%>
<!--#include file="common/conf.asp"-->
<!--#include file="common/globals.asp"-->
<!--#include file="common/formating.asp"-->
<!--#include file="common/qstr.asp"-->
<!--#include file="common/common_subs.asp"-->
<%
'------------ Variable Definition -------------
Dim rsTemp
Dim PageInfoHash
'------------ Constants Declaration -----------
'------------ Variable Init -------------------
Set PageInfoHash = CreateObject("Scripting.Dictionary")
'----------------------------------------------
%>
<%
'------------------------------------------------------------------------------------------------------------------------
'------------------------------------------------------------------------------------------------------------------------
%>
<%
'------------------------ MAIN LINE ---------------------------------
'--------------------------------------------------------------------
%>
<table width="100%" border="0" cellspacing="1" cellpadding="3" class='stdGrey'>
    <thead class='thin'>
      <tr>
        <th nowrap>Package Version</th>
        <th nowrap>Last Modified</th>
        <th nowrap>Reason for this version</th>
      </tr>
    </thead>
  <%
  OraDatabase.Parameters.Add "USER_ID", Request("user_id"),     ORAPARM_INPUT, ORATYPE_NUMBER 
  Set rsTemp = OraDatabase.DbCreateDynaset( GetQuery("UserDangle.sql"), cint(0))
  OraDatabase.Parameters.Remove "USER_ID"
  If rsTemp.RecordCount < 1 Then
  %>
  <tr>
    <td nowrap colspan="3">None</td>
  </tr>
  <%End If%>
  <%While ((NOT rsTemp.BOF) AND (NOT rsTemp.EOF))%>
  <tr>
    <td nowrap>
        <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>
    </td>
    <td nowrap><%= DisplayDate(rsTemp("MODIFIED_STAMP"))%></td>
    <td nowrap><%= rsTemp("comments")%></td>
  </tr>
  <%rsTemp.MoveNext
  WEnd
  rsTemp.Close
  Set rsTemp = nothing%>
</table>
<br>
<%Call Destroy_All_Objects%>