Subversion Repositories DevTools

Rev

Rev 5957 | Rev 6070 | Go to most recent revision | 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
%>
6048 dpurdie 26
<!--#include file="_access_control_login.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">
55
<link rel="stylesheet" href="images/release_manager_style.css" type="text/css">
56
<link rel="stylesheet" href="images/navigation.css" type="text/css">
57
<%bJqueryDataTables = TRUE%>
58
<!--#include file="_jquery_includes.asp"-->
59
<script language="JavaScript" src="images/common.js"></script>
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"-->
89
<script language="JavaScript1.2" src="images/popup_menu.js"></script>
90
</head>
5860 dpurdie 91
<body>
5853 dpurdie 92
<!-- MENU LAYERS -------------------------------------->
5860 dpurdie 93
<div id="popmenu" class="menuskin" onMouseover="clearhidemenu();highlightmenu(event,'on')" onMouseout="highlightmenu(event,'off');dynamichide(event)"></div>
5853 dpurdie 94
<!-- TIPS LAYERS -------------------------------------->
95
<div id="formTipsLayer" style="position: absolute; z-index: 1000; visibility: hidden; left:0; top: 0; width: 10">&nbsp;</div>
96
<!----------------------------------------------------->
97
<!-- HEADER -->
98
<!--#include file="_header.asp"-->
99
<!-- BODY ---->
5860 dpurdie 100
<table width="100%" border="0" cellspacing="0" cellpadding="0" style="table-layout: fixed;">
5853 dpurdie 101
   <tr>
5860 dpurdie 102
      <td width="146px" class="panel_bg" valign="top">&nbsp;</td>
103
      <td width="100%" valign="top" bgcolor="#EEEFEF" style="padding: 5px;">
5853 dpurdie 104
      <!-- Main Pane -->
5854 dpurdie 105
      <!-- Section Header ---->
106
      <span nowrap class="form_ttl">Project Action Log</span>
5860 dpurdie 107
      <div class="rounded_box" style="background: white;">
108
          <table id="table1" class="stripe">
109
            <thead class="body_col">
110
                <tr>
111
                    <th>Time</th>
112
                    <th>Description</th>
113
                    <th>Project</th>
114
                    <th>Release</th>
115
                    <th>Action</th>
116
                    <th>User</th>
117
                </tr>
118
            </thead>
119
            <tbody>
120
            </tbody>
121
          </table>
122
      </div>
5853 dpurdie 123
      <!-- End Main Pane -->
124
      </td>
125
   </tr>
126
</table>
127
<!-- FOOTER -->
128
<!--#include file="_footer.asp"-->
129
</body>
130
</html>