Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
5008 dpurdie 1
<%@LANGUAGE="VBSCRIPT"%>
2
<%
3
'=====================================================
5018 dpurdie 4
'|
5
'|      build_release_log.asp
6
'|      Display the build long
7
'|
5008 dpurdie 8
'=====================================================
9
%>
10
<%
11
Option explicit
12
' Good idea to set when using redirect
5018 dpurdie 13
Response.Expires = 0   ' always load the page, dont store
5008 dpurdie 14
%>
15
<!--#include file="common/conf.asp"-->
16
<!--#include file="common/globals.asp"-->
17
<!--#include file="common/formating.asp"-->
18
<!--#include file="common/qstr.asp"-->
19
<!--#include file="common/common_subs.asp"-->
20
<!--#include file="common/_form_window_common.asp"-->
21
<!--#include file="_action_buttons.asp"-->
5018 dpurdie 22
 
5008 dpurdie 23
<!--#include file="class/classActionButtonControl.asp"-->
24
<%
5018 dpurdie 25
'------------ ACCESS CONTROL ------------------
26
'Let users view the build configuration without being logged in, but as soon as they try and submit the form, check
27
'their login status.
28
%>
29
<!--#include file="_access_control_general.asp"-->
30
<%
5008 dpurdie 31
'------------ Variable Definition -------------
32
Dim parRtagId
33
'------------ Constants Declaration -----------
34
'------------ Variable Init -------------------
35
parRtagId = Request("rtag_id")
5018 dpurdie 36
objPMod.PersistInQryString("rtag_id")
5008 dpurdie 37
'----------------------------------------------
38
%>
39
<html>
40
   <head>
5018 dpurdie 41
        <title>Release Manager</title>
42
        <meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
43
        <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
44
        <link rel="stylesheet" href="images/release_manager_style.css" type="text/css">
45
        <link rel="stylesheet" href="images/navigation.css" type="text/css">
46
        <script language="JavaScript" src="images/common.js"></script>
47
        <script type="text/javascript" language="javascript" src="jquery/jquery.js"></script>
48
        <script type="text/javascript" language="javascript" src="jquery/jquery.dataTables.js"></script>
49
        <script type="text/javascript" language="javascript" src="jquery/dataTables.scroller.js"></script>
50
        <link rel="stylesheet" href="jquery/dataTables.vix.css" type="text/css">
51
        <script type="text/javascript" charset="utf-8">
52
        var table;
5019 dpurdie 53
        var interval = null;
5018 dpurdie 54
	$(document).ready(function() {
55
		/* Init DataTables */
56
        table = $("#table1").dataTable({
57
            "processing": true,
58
            "retrieve":true,
59
            "serverSide": true,
60
            "ajaxSource": "build_release_log_json.asp",
61
<%If parRtagId <> "" Then %>
62
            "fnServerParams": function ( aoData ) {
63
                aoData.push( { "name": "rtag_id", "value": "<%=parRtagId%>" } );
64
            },
65
<%End If%>
66
            "bLengthChange":false,
67
            "sDom": "frtiS",
68
            "sScrollY": $( document ).height() 
69
<%If parRtagId <> "" Then %>
70
            - 35
71
<%End If%>
72
            - 200,
73
            "bDeferRender": true,
74
            "sScrollX": "100%",
75
            "bScrollCollapse": true,
76
            "iScrollLoadGap": 5,
77
            "oScroller": {
78
			    "loadingIndicator": true,
79
                "displayBuffer": 3,
80
		    },
81
            "order": [[ 4, "desc" ]],
82
            "info": true,
83
<%If parRtagId <> "" Then %>
84
            "columnDefs" : [ {"visible" : false, "targets" : [0,1]}],
85
<%End If%>
5019 dpurdie 86
            // Refresh display IFF showing the head
87
            "fnInfoCallback": function( oSettings, iStart, iEnd, iMax, iTotal, sPre ) {
88
                if (iStart <= 1) {
89
                    clearTimeout(interval);
90
                    interval = setTimeout( function () { table.api().ajax.reload(); }, 30000 );
91
                    sPre += " [AutoRefesh]"
92
                } else {
93
                    clearTimeout(interval);
94
                    interval = null;
95
                }
96
                return sPre;
97
            }
5018 dpurdie 98
        });
99
	} );
100
</script>
101
 
5008 dpurdie 102
      <!-- DROPDOWN MENUS -->
103
      <!--#include file="_menu_def.asp"-->
104
      <script language="JavaScript1.2" src="images/popup_menu.js"></script>
105
   </head>
5018 dpurdie 106
   <body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0">
5008 dpurdie 107
      <!-- MENU LAYERS -------------------------------------->
5018 dpurdie 108
      <div id="popmenu" class="menuskin" onMouseover="clearhidemenu();highlightmenu(event,'on')" onMouseout="highlightmenu(event,'off');dynamichide(event)">
109
      </div>
5008 dpurdie 110
      <!-- TIPS LAYERS -------------------------------------->
111
      <div id="formTipsLayer" style="position: absolute; z-index: 1000; visibility: hidden; left:0; top: 0; width: 10">&nbsp;</div>
112
      <!----------------------------------------------------->
113
      <!-- HEADER -->
114
      <!--#include file="_header.asp"-->
115
      <!-- BODY ---->
116
      <table width="100%" border="0" cellspacing="0" cellpadding="0">
117
         <tr>
5018 dpurdie 118
            <td width="10%" background="images/bg_home_orange.gif" valign="top"></td>
119
            <td width="85%" rowspan="2" align="center" valign="top" bgcolor="#EEEFEF">
120
               <table width="50%" border="0" cellspacing="0" cellpadding="0">
5008 dpurdie 121
                  <tr>
122
                     <td width="1%"></td>
123
                     <td width="100%">
5018 dpurdie 124
                        <table width="100%"  border="0" cellspacing="0" cellpadding="0">
125
                           <tr>
126
                              <td nowrap class="body_txt"></td>
127
                           </tr>
128
                        </table>
129
                       <!-- Section Header ---->
5008 dpurdie 130
                        <table width="100%" border="0" cellspacing="0" cellpadding="0">
131
                           <tr>
5018 dpurdie 132
                              <td nowrap class="form_ttl">
133
                                  <%If parRtagId = "" Then %>
134
                                  <td nowrap class="form_ttl">SYSTEM BUILD LOG</td>
135
                                  <%Else%>
136
                                  <td nowrap class="form_ttl">RELEASE BUILD LOG</td>
137
                                  <%End If%>
138
                              </td>
5008 dpurdie 139
                              <td align="right" valign="bottom"></td>
140
                           </tr>
141
                        </table>
142
                     </td>
143
                     <td width="1%"></td>
144
                  </tr>
5018 dpurdie 145
                  <!-- Section Top Border ---->
5008 dpurdie 146
                  <tr>
147
                     <td align="left" valign="top" background="images/lbox_bg_blue.gif"><img src="images/lbox_tl_cnr_b.gif" width="13" height="13"></td>
5018 dpurdie 148
                     <td background="images/lbox_bg_blue.gif" class="lbox_ttl_w"><img src="images/h_trsp_dot.gif" width="60" height="15"></td>
149
                     <td align="right" valign="top"  background="images/lbox_bg_blue.gif"><img src="images/lbox_tr_cnr_b.gif" width="13" height="13"></td>
5008 dpurdie 150
                  </tr>
5018 dpurdie 151
                 <!-- Section Body Header ---->
152
                  <tr><td colspan="3" class="form_ifilter">
153
                  <!-- Main Pane -->
154
                  <table id="table1" width=100%>
155
            	    <thead class="body_col">
156
            		    <tr>
157
                             <th>Project</th>
158
                             <th>Release</th>
159
                             <th>Package</th>
160
                             <th>Version</th>
161
                             <th>Time</th>
162
                             <th>Reason</th>
163
                             <th>Result</th>
164
            		    </tr>
165
            	    </thead>
166
                	<tbody>
167
            	    </tbody>
168
                  </table>
169
                  </td></tr>
5008 dpurdie 170
            </td>
171
         </tr>
172
         <tr>
5018 dpurdie 173
            <!-- Section Body Footer ---->
174
            <td background="images/bg_action_norm.gif" ></td>
175
            <td align="right" background="images/bg_action_norm.gif" ></td>
176
            <td background="images/bg_action_norm.gif" ><img src="images/h_trsp_dot.gif" width="5" height="13"></td>
5008 dpurdie 177
         </tr>
5018 dpurdie 178
         <tr>
179
            <td background="images/lbox_bg_blue.gif" valign="bottom"><img src="images/lbox_bl_cnr_b.gif" width="13" height="13"></td>
180
            <td background="images/lbox_bg_blue.gif"></td>
181
            <td background="images/lbox_bg_blue.gif" valign="bottom" align="right"><img src="images/lbox_br_cnr_b.gif" width="13" height="13"></td>
182
         </tr>
5008 dpurdie 183
      </table>
5018 dpurdie 184
  </tr>
185
  <tr>
186
    <td valign="bottom" align="center" background="images/bg_home_orange.gif"></td>
187
    <td background="images/bg_lght_gray.gif" valign="top"><img src="images/h_trsp_dot.gif" width="1" height="500"></td>
188
  </tr>
189
</table>
190
<!-- FOOTER -->
191
<!--#include file="_footer.asp"-->
192
</body>
5008 dpurdie 193
</html>
194
<%
195
Call Destroy_All_Objects
196
%>