Subversion Repositories DevTools

Rev

Rev 6181 | Rev 6876 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

<%@LANGUAGE="VBSCRIPT"%>
<%
'=====================================================
'   project_log.asp
'   Display the project action log
'=====================================================
%>
<%
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"-->
<%
'' Make sure rtag_id is always present
'If Request("proj_id") = "" Then
'   Call Destroy_All_Objects
'   Response.Redirect("index.asp")
'End If
'------------ ACCESS CONTROL ------------------
%>
<!--#include file="_access_control_login_optional.asp"-->
<!--#include file="_access_control_general.asp"-->
<%
'------------ Variable Definition -------------
Dim rsQryStr
Dim rsQry
Dim parProjId
Dim projName
'------------ Constants Declaration -----------

'------------ Variable Init -------------------
parProjId = Request("proj_id")

'----------------------------------------------
%>
<%
'----------------------------------------------------------------------------------------------------------------------------------------------
%>
<%
'------------ RUN BEFORE PAGE RENDER ----------
If (Request("action") <> "") Then
End If
%>
<html>
<head>
<title>Release Manager</title>
<link rel="shortcut icon" href="<%=FavIcon%>"/>
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="images/release_manager_style.css?ver=<%=VixVerNum%>" type="text/css">
<link rel="stylesheet" href="images/navigation.css?ver=<%=VixVerNum%>" type="text/css">
<%bJqueryDataTables = TRUE%>
<!--#include file="_jquery_includes.asp"-->
<script language="JavaScript" src="images/common.js?ver=<%=VixVerNum%>"></script>
<script type="text/javascript" charset="utf-8">
        $(document).ready(function() {
                /* Init DataTables */
                //var oTable = $('#table1').dataTable();
        $('#table1').dataTable({
            "bProcessing": true,
            "bRetrieve":true,
            "bServerSide": true,
            "sAjaxSource": 'project_log_json.asp',
            "bLengthChange":false,
            "sDom": "rtiS",
            "sScrollY": $( document ).height()- 200,
            "bDeferRender": true,
            "sScrollX": "100%",
            "bScrollCollapse": true,
            "iScrollLoadGap": 5,
            "oScroller": {
                            "loadingIndicator": true
                    },
            "order": [[0,'desc']],
            "info": true,
            "columnDefs" : [ 
                {className : "dt-nowrap", targets: "_all" },
            ],
        });
        } );
</script>
<!-- DROPDOWN MENUS -->
<!--#include file="_menu_def.asp"-->
<script language="JavaScript1.2" src="images/popup_menu.js?ver=<%=VixVerNum%>"></script>
</head>
<body>
<!--#include file="_header.asp"-->
<!-- BODY ---->
<table width="100%" border="0" cellspacing="0" cellpadding="0" style="table-layout: fixed;">
   <tr>
      <td width="146px" class="panel_bg" valign="top">&nbsp;</td>
      <td width="100%" valign="top" bgcolor="#EEEFEF" style="padding: 5px;">
      <!-- Main Pane -->
      <!-- Section Header ---->
      <span nowrap class="form_ttl">Project Action Log</span>
      <div class="rounded_box" style="background: white;">
          <table id="table1" class="stripe">
            <thead class="body_col">
                <tr>
                    <th>Time</th>
                    <th>Description</th>
                    <th>Project</th>
                    <th>Release</th>
                    <th>Action</th>
                    <th>User</th>
                </tr>
            </thead>
            <tbody>
            </tbody>
          </table>
      </div>
      <!-- End Main Pane -->
      </td>
   </tr>
</table>
<!-- FOOTER -->
<!--#include file="_footer.asp"-->
</body>
</html>