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;
53
	$(document).ready(function() {
54
		/* Init DataTables */
55
        table = $("#table1").dataTable({
56
            "processing": true,
57
            "retrieve":true,
58
            "serverSide": true,
59
            "ajaxSource": "build_release_log_json.asp",
60
<%If parRtagId <> "" Then %>
61
            "fnServerParams": function ( aoData ) {
62
                aoData.push( { "name": "rtag_id", "value": "<%=parRtagId%>" } );
63
            },
64
<%End If%>
65
            "bLengthChange":false,
66
            "sDom": "frtiS",
67
            "sScrollY": $( document ).height() 
68
<%If parRtagId <> "" Then %>
69
            - 35
70
<%End If%>
71
            - 200,
72
            "bDeferRender": true,
73
            "sScrollX": "100%",
74
            "bScrollCollapse": true,
75
            "iScrollLoadGap": 5,
76
            "oScroller": {
77
			    "loadingIndicator": true,
78
                "displayBuffer": 3,
79
		    },
80
            "order": [[ 4, "desc" ]],
81
            "info": true,
82
<%If parRtagId <> "" Then %>
83
            "columnDefs" : [ {"visible" : false, "targets" : [0,1]}],
84
<%End If%>
85
        });
86
	} );
87
</script>
88
 
5008 dpurdie 89
      <!-- DROPDOWN MENUS -->
90
      <!--#include file="_menu_def.asp"-->
91
      <script language="JavaScript1.2" src="images/popup_menu.js"></script>
92
   </head>
5018 dpurdie 93
   <body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0">
5008 dpurdie 94
      <!-- MENU LAYERS -------------------------------------->
5018 dpurdie 95
      <div id="popmenu" class="menuskin" onMouseover="clearhidemenu();highlightmenu(event,'on')" onMouseout="highlightmenu(event,'off');dynamichide(event)">
96
      </div>
5008 dpurdie 97
      <!-- TIPS LAYERS -------------------------------------->
98
      <div id="formTipsLayer" style="position: absolute; z-index: 1000; visibility: hidden; left:0; top: 0; width: 10">&nbsp;</div>
99
      <!----------------------------------------------------->
100
      <!-- HEADER -->
101
      <!--#include file="_header.asp"-->
102
      <!-- BODY ---->
103
      <table width="100%" border="0" cellspacing="0" cellpadding="0">
104
         <tr>
5018 dpurdie 105
            <td width="10%" background="images/bg_home_orange.gif" valign="top"></td>
106
            <td width="85%" rowspan="2" align="center" valign="top" bgcolor="#EEEFEF">
107
               <table width="50%" border="0" cellspacing="0" cellpadding="0">
5008 dpurdie 108
                  <tr>
109
                     <td width="1%"></td>
110
                     <td width="100%">
5018 dpurdie 111
                        <table width="100%"  border="0" cellspacing="0" cellpadding="0">
112
                           <tr>
113
                              <td nowrap class="body_txt"></td>
114
                           </tr>
115
                        </table>
116
                       <!-- Section Header ---->
5008 dpurdie 117
                        <table width="100%" border="0" cellspacing="0" cellpadding="0">
118
                           <tr>
5018 dpurdie 119
                              <td nowrap class="form_ttl">
120
                                  <%If parRtagId = "" Then %>
121
                                  <td nowrap class="form_ttl">SYSTEM BUILD LOG</td>
122
                                  <%Else%>
123
                                  <td nowrap class="form_ttl">RELEASE BUILD LOG</td>
124
                                  <%End If%>
125
                              </td>
5008 dpurdie 126
                              <td align="right" valign="bottom"></td>
127
                           </tr>
128
                        </table>
129
                     </td>
130
                     <td width="1%"></td>
131
                  </tr>
5018 dpurdie 132
                  <!-- Section Top Border ---->
5008 dpurdie 133
                  <tr>
134
                     <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 135
                     <td background="images/lbox_bg_blue.gif" class="lbox_ttl_w"><img src="images/h_trsp_dot.gif" width="60" height="15"></td>
136
                     <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 137
                  </tr>
5018 dpurdie 138
                 <!-- Section Body Header ---->
139
                  <tr><td colspan="3" class="form_ifilter">
140
                  <!-- Main Pane -->
141
                  <table id="table1" width=100%>
142
            	    <thead class="body_col">
143
            		    <tr>
144
                             <th>Project</th>
145
                             <th>Release</th>
146
                             <th>Package</th>
147
                             <th>Version</th>
148
                             <th>Time</th>
149
                             <th>Reason</th>
150
                             <th>Result</th>
151
            		    </tr>
152
            	    </thead>
153
                	<tbody>
154
            	    </tbody>
155
                  </table>
156
                  </td></tr>
5008 dpurdie 157
            </td>
158
         </tr>
159
         <tr>
5018 dpurdie 160
            <!-- Section Body Footer ---->
161
            <td background="images/bg_action_norm.gif" ></td>
162
            <td align="right" background="images/bg_action_norm.gif" ></td>
163
            <td background="images/bg_action_norm.gif" ><img src="images/h_trsp_dot.gif" width="5" height="13"></td>
5008 dpurdie 164
         </tr>
5018 dpurdie 165
         <tr>
166
            <td background="images/lbox_bg_blue.gif" valign="bottom"><img src="images/lbox_bl_cnr_b.gif" width="13" height="13"></td>
167
            <td background="images/lbox_bg_blue.gif"></td>
168
            <td background="images/lbox_bg_blue.gif" valign="bottom" align="right"><img src="images/lbox_br_cnr_b.gif" width="13" height="13"></td>
169
         </tr>
5008 dpurdie 170
      </table>
5018 dpurdie 171
  </tr>
172
  <tr>
173
    <td valign="bottom" align="center" background="images/bg_home_orange.gif"></td>
174
    <td background="images/bg_lght_gray.gif" valign="top"><img src="images/h_trsp_dot.gif" width="1" height="500"></td>
175
  </tr>
176
</table>
177
<!-- FOOTER -->
178
<!--#include file="_footer.asp"-->
179
</body>
5008 dpurdie 180
</html>
181
<%
182
Call Destroy_All_Objects
183
%>