Subversion Repositories DevTools

Rev

Rev 6548 | Rev 6874 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6548 Rev 6579
Line 39... Line 39...
39
   <head>
39
   <head>
40
        <title>Release Manager</title>
40
        <title>Release Manager</title>
41
        <link rel="shortcut icon" href="<%=FavIcon%>"/>
41
        <link rel="shortcut icon" href="<%=FavIcon%>"/>
42
        <meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
42
        <meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
43
        <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
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">
44
        <link rel="stylesheet" href="images/release_manager_style.css?ver=<%=VixVerNum%>" type="text/css">
45
        <link rel="stylesheet" href="images/navigation.css" type="text/css">
45
        <link rel="stylesheet" href="images/navigation.css?ver=<%=VixVerNum%>" type="text/css">
46
        <script language="JavaScript" src="images/common.js"></script>
46
        <script language="JavaScript" src="images/common.js?ver=<%=VixVerNum%>"></script>
47
        <%bJqueryDataTables = TRUE%>
47
        <%bJqueryDataTables = TRUE%>
48
        <!--#include file="_jquery_includes.asp"-->
48
        <!--#include file="_jquery_includes.asp"-->
49
        <script type="text/javascript" charset="utf-8">
49
        <script type="text/javascript" charset="utf-8">
50
        var table;
50
        var table;
51
        var interval = null;
51
        var interval = null;
52
        var indefTimer = null;
52
        var indefTimer = null;
53
	$(document).ready(function() {
53
	$(document).ready(function() {
54
		/* Init DataTables */
54
		/* Init DataTables */
55
        table = $("#table1").dataTable({
55
        table = $("#table1").dataTable({
56
            "processing": true,
56
            serverSide: true,
57
            "retrieve":true,
57
            deferRender : true,
58
            "serverSide": true,
58
            ajax : {
59
            "ajaxSource": "build_release_log_json.asp",
59
                url : "build_release_log_json.asp",
-
 
60
                type : "GET",
-
 
61
                data : function (o){
60
<%If parRtagId <> "" Then %>
62
<%If parRtagId <> "" Then %>
61
            "fnServerParams": function ( aoData ) {
-
 
62
                aoData.push( { "name": "rtag_id", "value": "<%=parRtagId%>" } );
63
                    o.rtag_id = "<%=parRtagId%>";
63
            },
-
 
64
<%End If%>
64
<%End If%>
65
            "bLengthChange":false,
65
                }
-
 
66
            },
66
            "sDom": "frtiS",
67
            dom: "frtiS",
67
            "sScrollY": $( document ).height() 
68
            scrollY: $( document ).height() 
68
<%If parRtagId <> "" Then %>
69
<%If parRtagId <> "" Then %>
69
            - 35
70
            - 35
70
<%End If%>
71
<%End If%>
71
            - 200,
72
            - 200,
72
            "bDeferRender": true,
-
 
73
            "sScrollX": "100%",
-
 
74
            "bScrollCollapse": true,
73
            scrollCollapse: true,
75
            "iScrollLoadGap": 5,
-
 
76
            "oScroller": {
74
            scroller: {
77
			    "loadingIndicator": true,
75
			    loadingIndicator: true,
78
                "displayBuffer": 3,
76
                displayBuffer: 3,
79
		    },
77
		    },
80
            "order": [[ 4, "desc" ]],
78
            order: [[ 4, "desc" ]],
81
            "info": true,
79
            info: true,
82
            "columnDefs" : [ 
80
            columnDefs : [ 
83
<%If parRtagId <> "" Then %>
81
<%If parRtagId <> "" Then %>
84
                {visible: false, targets : [0,1]},
82
                {visible: false, targets : [0,1]},
85
<%End If%>
83
<%End If%>
86
                {className : "dt-nowrap", targets: "_all" },
84
                {className : "dt-nowrap", targets: "_all" },
87
                {orderable : false, targets : [8]},
85
                {orderable : false, targets : [8]},
88
            ],
86
            ],
89
            // Refresh display IFF showing the head
87
            // Refresh display IFF showing the head
90
            "fnInfoCallback": function( oSettings, iStart, iEnd, iMax, iTotal, sPre ) {
88
            fnInfoCallback: function( oSettings, iStart, iEnd, iMax, iTotal, sPre ) {
91
                if (iStart <= 1) {
89
                if (iStart <= 1) {
92
                    clearTimeout(interval);
90
                    clearTimeout(interval);
93
                    interval = setTimeout( function () { table.api().ajax.reload(); }, 30000 );
91
                    interval = setTimeout( function () { table.api().ajax.reload(); }, 30000 );
94
                    sPre += " [AutoRefesh]"
92
                    sPre += " [AutoRefesh]"
95
                } else {
93
                } else {
Line 118... Line 116...
118
	} );
116
	} );
119
</script>
117
</script>
120
 
118
 
121
      <!-- DROPDOWN MENUS -->
119
      <!-- DROPDOWN MENUS -->
122
      <!--#include file="_menu_def.asp"-->
120
      <!--#include file="_menu_def.asp"-->
123
      <script language="JavaScript1.2" src="images/popup_menu.js"></script>
121
      <script language="JavaScript1.2" src="images/popup_menu.js?ver=<%=VixVerNum%>"></script>
124
   </head>
122
   </head>
125
   <body>
123
   <body>
126
      <!-- HEADER -->
124
      <!-- HEADER -->
127
      <!--#include file="_header.asp"-->
125
      <!--#include file="_header.asp"-->
128
      <!-- BODY ---->
126
      <!-- BODY ---->