Subversion Repositories DevTools

Rev

Rev 5853 | Rev 5860 | 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>
89
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" >
90
<!-- MENU LAYERS -------------------------------------->
91
<div id="popmenu" class="menuskin" onMouseover="clearhidemenu();highlightmenu(event,'on')" onMouseout="highlightmenu(event,'off');dynamichide(event)">
92
</div>
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 ---->
99
<table width="100%" border="0" cellspacing="0" cellpadding="0">
100
   <tr>
101
      <td width="1" background="images/bg_home_orange.gif" valign="top"></td>
102
      <td rowspan="2" valign="top" width="100%">
103
      <!-- Main Pane -->
5854 dpurdie 104
      <!-- Section Header ---->
105
      <span nowrap class="form_ttl">Project Action Log</span>
5853 dpurdie 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
      <!-- End Main Pane -->
121
      </td>
122
   </tr>
123
   <tr>
5854 dpurdie 124
      <td valign="bottom" align="center" background="images/bg_home_orange.gif">
125
        <img src="images/img_vtree.gif" width="86" height="99" vspace="20" hspace="30">
126
        </td>
5853 dpurdie 127
      <td background="images/bg_lght_gray.gif" valign="top"><img src="images/h_trsp_dot.gif" width="1" height="500"></td>
128
   </tr>
129
</table>
130
<!-- FOOTER -->
131
<!--#include file="_footer.asp"-->
132
</body>
133
</html>
134
<%Call Destroy_All_Objects%>