Subversion Repositories DevTools

Rev

Rev 5860 | Rev 6048 | 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
%>
26
<!--#include file="_access_control_general.asp"-->
27
<%
28
'------------ Variable Definition -------------
29
Dim rsQryStr
30
Dim rsQry
31
Dim parProjId
32
Dim projName
33
'------------ Constants Declaration -----------
34
 
35
'------------ Variable Init -------------------
36
parProjId = Request("proj_id")
37
 
38
'----------------------------------------------
39
%>
40
<%
41
'----------------------------------------------------------------------------------------------------------------------------------------------
42
%>
43
<%
44
'------------ RUN BEFORE PAGE RENDER ----------
45
If (Request("action") <> "") Then
46
End If
47
%>
48
<html>
49
<head>
50
<title>Release Manager</title>
51
<link rel="shortcut icon" href="<%=FavIcon%>"/>
52
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
53
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
54
<link rel="stylesheet" href="images/release_manager_style.css" type="text/css">
55
<link rel="stylesheet" href="images/navigation.css" type="text/css">
56
<%bJqueryDataTables = TRUE%>
57
<!--#include file="_jquery_includes.asp"-->
58
<script language="JavaScript" src="images/common.js"></script>
59
<script type="text/javascript" charset="utf-8">
60
	$(document).ready(function() {
61
		/* Init DataTables */
62
		//var oTable = $('#table1').dataTable();
63
        $('#table1').dataTable({
64
            "bProcessing": true,
65
            "bRetrieve":true,
66
            "bServerSide": true,
67
            "sAjaxSource": 'project_log_json.asp',
68
            "bLengthChange":false,
5854 dpurdie 69
            "sDom": "rtiS",
5853 dpurdie 70
            "sScrollY": $( document ).height()- 200,
71
            "bDeferRender": true,
72
            "sScrollX": "100%",
73
            "bScrollCollapse": true,
74
            "iScrollLoadGap": 5,
75
            "oScroller": {
76
			    "loadingIndicator": true
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"-->
88
<script language="JavaScript1.2" src="images/popup_menu.js"></script>
89
</head>
5860 dpurdie 90
<body>
5853 dpurdie 91
<!-- MENU LAYERS -------------------------------------->
5860 dpurdie 92
<div id="popmenu" class="menuskin" onMouseover="clearhidemenu();highlightmenu(event,'on')" onMouseout="highlightmenu(event,'off');dynamichide(event)"></div>
5853 dpurdie 93
<!-- TIPS LAYERS -------------------------------------->
94
<div id="formTipsLayer" style="position: absolute; z-index: 1000; visibility: hidden; left:0; top: 0; width: 10">&nbsp;</div>
95
<!----------------------------------------------------->
96
<!-- HEADER -->
97
<!--#include file="_header.asp"-->
98
<!-- BODY ---->
5860 dpurdie 99
<table width="100%" border="0" cellspacing="0" cellpadding="0" style="table-layout: fixed;">
5853 dpurdie 100
   <tr>
5860 dpurdie 101
      <td width="146px" class="panel_bg" valign="top">&nbsp;</td>
102
      <td width="100%" valign="top" bgcolor="#EEEFEF" style="padding: 5px;">
5853 dpurdie 103
      <!-- Main Pane -->
5854 dpurdie 104
      <!-- Section Header ---->
105
      <span nowrap class="form_ttl">Project Action Log</span>
5860 dpurdie 106
      <div class="rounded_box" style="background: white;">
107
          <table id="table1" class="stripe">
108
            <thead class="body_col">
109
                <tr>
110
                    <th>Time</th>
111
                    <th>Description</th>
112
                    <th>Project</th>
113
                    <th>Release</th>
114
                    <th>Action</th>
115
                    <th>User</th>
116
                </tr>
117
            </thead>
118
            <tbody>
119
            </tbody>
120
          </table>
121
      </div>
5853 dpurdie 122
      <!-- End Main Pane -->
123
      </td>
124
   </tr>
125
</table>
126
<!-- FOOTER -->
127
<!--#include file="_footer.asp"-->
128
</body>
129
</html>