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,
5063 dpurdie 83
            "columnDefs" : [ 
5018 dpurdie 84
<%If parRtagId <> "" Then %>
5063 dpurdie 85
                {"visible" : false, "targets" : [0,1]},
5018 dpurdie 86
<%End If%>
5063 dpurdie 87
                {"className" : "dt-nowrap", "targets": "_all" }
88
            ],
5019 dpurdie 89
            // Refresh display IFF showing the head
90
            "fnInfoCallback": function( oSettings, iStart, iEnd, iMax, iTotal, sPre ) {
91
                if (iStart <= 1) {
92
                    clearTimeout(interval);
93
                    interval = setTimeout( function () { table.api().ajax.reload(); }, 30000 );
94
                    sPre += " [AutoRefesh]"
95
                } else {
96
                    clearTimeout(interval);
97
                    interval = null;
98
                }
99
                return sPre;
100
            }
5018 dpurdie 101
        });
102
	} );
103
</script>
104
 
5008 dpurdie 105
      <!-- DROPDOWN MENUS -->
106
      <!--#include file="_menu_def.asp"-->
107
      <script language="JavaScript1.2" src="images/popup_menu.js"></script>
108
   </head>
5018 dpurdie 109
   <body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0">
5008 dpurdie 110
      <!-- MENU LAYERS -------------------------------------->
5018 dpurdie 111
      <div id="popmenu" class="menuskin" onMouseover="clearhidemenu();highlightmenu(event,'on')" onMouseout="highlightmenu(event,'off');dynamichide(event)">
112
      </div>
5008 dpurdie 113
      <!-- TIPS LAYERS -------------------------------------->
114
      <div id="formTipsLayer" style="position: absolute; z-index: 1000; visibility: hidden; left:0; top: 0; width: 10">&nbsp;</div>
115
      <!----------------------------------------------------->
116
      <!-- HEADER -->
117
      <!--#include file="_header.asp"-->
118
      <!-- BODY ---->
119
      <table width="100%" border="0" cellspacing="0" cellpadding="0">
120
         <tr>
5018 dpurdie 121
            <td width="10%" background="images/bg_home_orange.gif" valign="top"></td>
122
            <td width="85%" rowspan="2" align="center" valign="top" bgcolor="#EEEFEF">
123
               <table width="50%" border="0" cellspacing="0" cellpadding="0">
5008 dpurdie 124
                  <tr>
125
                     <td width="1%"></td>
126
                     <td width="100%">
5018 dpurdie 127
                        <table width="100%"  border="0" cellspacing="0" cellpadding="0">
128
                           <tr>
129
                              <td nowrap class="body_txt"></td>
130
                           </tr>
131
                        </table>
132
                       <!-- Section Header ---->
5008 dpurdie 133
                        <table width="100%" border="0" cellspacing="0" cellpadding="0">
134
                           <tr>
5018 dpurdie 135
                              <td nowrap class="form_ttl">
136
                                  <%If parRtagId = "" Then %>
137
                                  <td nowrap class="form_ttl">SYSTEM BUILD LOG</td>
138
                                  <%Else%>
139
                                  <td nowrap class="form_ttl">RELEASE BUILD LOG</td>
140
                                  <%End If%>
141
                              </td>
5008 dpurdie 142
                              <td align="right" valign="bottom"></td>
143
                           </tr>
144
                        </table>
145
                     </td>
146
                     <td width="1%"></td>
147
                  </tr>
5018 dpurdie 148
                  <!-- Section Top Border ---->
5008 dpurdie 149
                  <tr>
150
                     <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 151
                     <td background="images/lbox_bg_blue.gif" class="lbox_ttl_w"><img src="images/h_trsp_dot.gif" width="60" height="15"></td>
152
                     <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 153
                  </tr>
5018 dpurdie 154
                 <!-- Section Body Header ---->
155
                  <tr><td colspan="3" class="form_ifilter">
156
                  <!-- Main Pane -->
157
                  <table id="table1" width=100%>
158
            	    <thead class="body_col">
159
            		    <tr>
160
                             <th>Project</th>
161
                             <th>Release</th>
162
                             <th>Package</th>
163
                             <th>Version</th>
164
                             <th>Time</th>
165
                             <th>Reason</th>
166
                             <th>Result</th>
5044 dpurdie 167
                             <th>Tests</th>
5018 dpurdie 168
            		    </tr>
169
            	    </thead>
170
                	<tbody>
171
            	    </tbody>
172
                  </table>
173
                  </td></tr>
5008 dpurdie 174
            </td>
175
         </tr>
176
         <tr>
5018 dpurdie 177
            <!-- Section Body Footer ---->
178
            <td background="images/bg_action_norm.gif" ></td>
179
            <td align="right" background="images/bg_action_norm.gif" ></td>
180
            <td background="images/bg_action_norm.gif" ><img src="images/h_trsp_dot.gif" width="5" height="13"></td>
5008 dpurdie 181
         </tr>
5018 dpurdie 182
         <tr>
183
            <td background="images/lbox_bg_blue.gif" valign="bottom"><img src="images/lbox_bl_cnr_b.gif" width="13" height="13"></td>
184
            <td background="images/lbox_bg_blue.gif"></td>
185
            <td background="images/lbox_bg_blue.gif" valign="bottom" align="right"><img src="images/lbox_br_cnr_b.gif" width="13" height="13"></td>
186
         </tr>
5008 dpurdie 187
      </table>
5018 dpurdie 188
  </tr>
189
  <tr>
190
    <td valign="bottom" align="center" background="images/bg_home_orange.gif"></td>
191
    <td background="images/bg_lght_gray.gif" valign="top"><img src="images/h_trsp_dot.gif" width="1" height="500"></td>
192
  </tr>
193
</table>
194
<!-- FOOTER -->
195
<!--#include file="_footer.asp"-->
196
</body>
5008 dpurdie 197
</html>
198
<%
199
Call Destroy_All_Objects
200
%>