Subversion Repositories DevTools

Rev

Rev 6876 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
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({
7250 dpurdie 65
            "processing": true,
66
            "retrieve":true,
67
            "serverSide": true,
68
            "ajax": 'project_log_json.asp',
69
            "lengthChange":false,
70
            "dom": "rti",
71
            "scrollY": $( document ).height()- 200,
72
            "deferRender": true,
73
            "scrollCollapse": true,
74
            scroller : {
75
			    loadingIndicator : true,
76
                displayBuffer: 3,
5853 dpurdie 77
		    },
78
            "order": [[0,'desc']],
79
            "info": true,
80
            "columnDefs" : [ 
81
                {className : "dt-nowrap", targets: "_all" },
82
            ],
83
        });
84
	} );
85
</script>
86
<!-- DROPDOWN MENUS -->
87
<!--#include file="_menu_def.asp"-->
6579 dpurdie 88
<script language="JavaScript1.2" src="images/popup_menu.js?ver=<%=VixVerNum%>"></script>
5853 dpurdie 89
</head>
5860 dpurdie 90
<body>
5853 dpurdie 91
<!--#include file="_header.asp"-->
92
<!-- BODY ---->
5860 dpurdie 93
<table width="100%" border="0" cellspacing="0" cellpadding="0" style="table-layout: fixed;">
5853 dpurdie 94
   <tr>
6876 dpurdie 95
      <td width="146px" class="bg_panel" valign="top">&nbsp;</td>
5860 dpurdie 96
      <td width="100%" valign="top" bgcolor="#EEEFEF" style="padding: 5px;">
5853 dpurdie 97
      <!-- Main Pane -->
5854 dpurdie 98
      <!-- Section Header ---->
99
      <span nowrap class="form_ttl">Project Action Log</span>
5860 dpurdie 100
      <div class="rounded_box" style="background: white;">
101
          <table id="table1" class="stripe">
102
            <thead class="body_col">
103
                <tr>
104
                    <th>Time</th>
105
                    <th>Description</th>
106
                    <th>Project</th>
107
                    <th>Release</th>
108
                    <th>Action</th>
109
                    <th>User</th>
110
                </tr>
111
            </thead>
112
            <tbody>
113
            </tbody>
114
          </table>
115
      </div>
5853 dpurdie 116
      <!-- End Main Pane -->
117
      </td>
118
   </tr>
119
</table>
120
<!-- FOOTER -->
121
<!--#include file="_footer.asp"-->
122
</body>
123
</html>