| 5853 |
dpurdie |
1 |
<%@LANGUAGE="VBSCRIPT"%>
|
|
|
2 |
<%
|
|
|
3 |
'=====================================================
|
|
|
4 |
' project_log.asp
|
|
|
5 |
' Display the project action log
|
|
|
6 |
'=====================================================
|
|
|
7 |
%>
|
|
|
8 |
<%
|
|
|
9 |
Option explicit
|
|
|
10 |
' Good idea to set when using redirect
|
|
|
11 |
Response.Expires = 0 ' always load the page, dont store
|
|
|
12 |
%>
|
|
|
13 |
<!--#include file="common/conf.asp"-->
|
|
|
14 |
<!--#include file="common/globals.asp"-->
|
|
|
15 |
<!--#include file="common/formating.asp"-->
|
|
|
16 |
<!--#include file="common/qstr.asp"-->
|
|
|
17 |
<!--#include file="common/common_subs.asp"-->
|
|
|
18 |
<%
|
|
|
19 |
'' Make sure rtag_id is always present
|
|
|
20 |
'If Request("proj_id") = "" Then
|
| 5957 |
dpurdie |
21 |
' Call Destroy_All_Objects
|
| 5853 |
dpurdie |
22 |
' Response.Redirect("index.asp")
|
|
|
23 |
'End If
|
|
|
24 |
'------------ ACCESS CONTROL ------------------
|
|
|
25 |
%>
|
| 6181 |
dpurdie |
26 |
<!--#include file="_access_control_login_optional.asp"-->
|
| 5853 |
dpurdie |
27 |
<!--#include file="_access_control_general.asp"-->
|
|
|
28 |
<%
|
|
|
29 |
'------------ Variable Definition -------------
|
|
|
30 |
Dim rsQryStr
|
|
|
31 |
Dim rsQry
|
|
|
32 |
Dim parProjId
|
|
|
33 |
Dim projName
|
|
|
34 |
'------------ Constants Declaration -----------
|
|
|
35 |
|
|
|
36 |
'------------ Variable Init -------------------
|
|
|
37 |
parProjId = Request("proj_id")
|
|
|
38 |
|
|
|
39 |
'----------------------------------------------
|
|
|
40 |
%>
|
|
|
41 |
<%
|
|
|
42 |
'----------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
43 |
%>
|
|
|
44 |
<%
|
|
|
45 |
'------------ RUN BEFORE PAGE RENDER ----------
|
|
|
46 |
If (Request("action") <> "") Then
|
|
|
47 |
End If
|
|
|
48 |
%>
|
|
|
49 |
<html>
|
|
|
50 |
<head>
|
|
|
51 |
<title>Release Manager</title>
|
|
|
52 |
<link rel="shortcut icon" href="<%=FavIcon%>"/>
|
|
|
53 |
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
|
|
|
54 |
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
| 6579 |
dpurdie |
55 |
<link rel="stylesheet" href="images/release_manager_style.css?ver=<%=VixVerNum%>" type="text/css">
|
|
|
56 |
<link rel="stylesheet" href="images/navigation.css?ver=<%=VixVerNum%>" type="text/css">
|
| 5853 |
dpurdie |
57 |
<%bJqueryDataTables = TRUE%>
|
|
|
58 |
<!--#include file="_jquery_includes.asp"-->
|
| 6579 |
dpurdie |
59 |
<script language="JavaScript" src="images/common.js?ver=<%=VixVerNum%>"></script>
|
| 5853 |
dpurdie |
60 |
<script type="text/javascript" charset="utf-8">
|
|
|
61 |
$(document).ready(function() {
|
|
|
62 |
/* Init DataTables */
|
|
|
63 |
//var oTable = $('#table1').dataTable();
|
|
|
64 |
$('#table1').dataTable({
|
|
|
65 |
"bProcessing": true,
|
|
|
66 |
"bRetrieve":true,
|
|
|
67 |
"bServerSide": true,
|
|
|
68 |
"sAjaxSource": 'project_log_json.asp',
|
|
|
69 |
"bLengthChange":false,
|
| 5854 |
dpurdie |
70 |
"sDom": "rtiS",
|
| 5853 |
dpurdie |
71 |
"sScrollY": $( document ).height()- 200,
|
|
|
72 |
"bDeferRender": true,
|
|
|
73 |
"sScrollX": "100%",
|
|
|
74 |
"bScrollCollapse": true,
|
|
|
75 |
"iScrollLoadGap": 5,
|
|
|
76 |
"oScroller": {
|
|
|
77 |
"loadingIndicator": true
|
|
|
78 |
},
|
|
|
79 |
"order": [[0,'desc']],
|
|
|
80 |
"info": true,
|
|
|
81 |
"columnDefs" : [
|
|
|
82 |
{className : "dt-nowrap", targets: "_all" },
|
|
|
83 |
],
|
|
|
84 |
});
|
|
|
85 |
} );
|
|
|
86 |
</script>
|
|
|
87 |
<!-- DROPDOWN MENUS -->
|
|
|
88 |
<!--#include file="_menu_def.asp"-->
|
| 6579 |
dpurdie |
89 |
<script language="JavaScript1.2" src="images/popup_menu.js?ver=<%=VixVerNum%>"></script>
|
| 5853 |
dpurdie |
90 |
</head>
|
| 5860 |
dpurdie |
91 |
<body>
|
| 5853 |
dpurdie |
92 |
<!--#include file="_header.asp"-->
|
|
|
93 |
<!-- BODY ---->
|
| 5860 |
dpurdie |
94 |
<table width="100%" border="0" cellspacing="0" cellpadding="0" style="table-layout: fixed;">
|
| 5853 |
dpurdie |
95 |
<tr>
|
| 5860 |
dpurdie |
96 |
<td width="146px" class="panel_bg" valign="top"> </td>
|
|
|
97 |
<td width="100%" valign="top" bgcolor="#EEEFEF" style="padding: 5px;">
|
| 5853 |
dpurdie |
98 |
<!-- Main Pane -->
|
| 5854 |
dpurdie |
99 |
<!-- Section Header ---->
|
|
|
100 |
<span nowrap class="form_ttl">Project Action Log</span>
|
| 5860 |
dpurdie |
101 |
<div class="rounded_box" style="background: white;">
|
|
|
102 |
<table id="table1" class="stripe">
|
|
|
103 |
<thead class="body_col">
|
|
|
104 |
<tr>
|
|
|
105 |
<th>Time</th>
|
|
|
106 |
<th>Description</th>
|
|
|
107 |
<th>Project</th>
|
|
|
108 |
<th>Release</th>
|
|
|
109 |
<th>Action</th>
|
|
|
110 |
<th>User</th>
|
|
|
111 |
</tr>
|
|
|
112 |
</thead>
|
|
|
113 |
<tbody>
|
|
|
114 |
</tbody>
|
|
|
115 |
</table>
|
|
|
116 |
</div>
|
| 5853 |
dpurdie |
117 |
<!-- End Main Pane -->
|
|
|
118 |
</td>
|
|
|
119 |
</tr>
|
|
|
120 |
</table>
|
|
|
121 |
<!-- FOOTER -->
|
|
|
122 |
<!--#include file="_footer.asp"-->
|
|
|
123 |
</body>
|
|
|
124 |
</html>
|