Subversion Repositories DevTools

Rev

Rev 5950 | Rev 6790 | Go to most recent revision | 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="0" cellpadding="0">
        <tr>
         <td>           
                                        
        <table width="100%" border="0" cellspacing="1" cellpadding="3">
          <tr class="form_field_bg">
            <td nowrap class="body_row">Package Version</td>
            <td nowrap class="body_row">Last Modified</td>
            <td nowrap class="body_row">Reason for this version</td>
          </tr>
          <%
          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 class="form_field_grey_bg"> 
            <td class="body_row" nowrap colspan="3">None</td>
          </tr>
          <%End If%>
          <%While ((NOT rsTemp.BOF) AND (NOT rsTemp.EOF))%>
          <tr class="form_field_grey_bg"> 
            <td nowrap class="body_txt">
                <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>
            </td>
            <td nowrap class="body_txt"><%= DisplayDate(rsTemp("MODIFIED_STAMP"))%></td>
            <td nowrap class="body_txt"><%= rsTemp("comments")%></td>
          </tr>
          <%rsTemp.MoveNext
          WEnd
          rsTemp.Close
          Set rsTemp = nothing%>
        </table>
    </td>                                               
  </tr>
</table>
<br>
<%
Call Destroy_All_Objects
%>