Subversion Repositories DevTools

Rev

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