Subversion Repositories DevTools

Rev

Rev 6877 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
5098 dpurdie 1
<%@LANGUAGE="VBSCRIPT"%>
2
<%
3
'=====================================================
4
'   Display Internal Package Version Data
5
'   Used for development and debug
6
'   Not availavle in production system
7
'=====================================================
8
%>
9
<%
10
Option explicit
11
' Good idea to set when using redirect
12
Response.Expires = 0    ' always load the page, dont store
13
%>
14
<!--#include file="common/conf.asp"-->
15
<!--#include file="common/globals.asp"-->
16
<!--#include file="common/formating.asp"-->
17
<!--#include file="common/qstr.asp"-->
18
<!--#include file="common/common_subs.asp"-->
19
<!--#include file="common/common_dbedit.asp"-->
20
<!--#include file="_tabs.asp"-->
21
<!--#include file="_action_buttons.asp"-->
22
<!--#include file="common/_package_common.asp"-->
23
<%
24
'------------ ACCESS CONTROL ------------------
25
%>
6181 dpurdie 26
<!--#include file="_access_control_login_optional.asp"-->
5098 dpurdie 27
<!--#include file="_access_control_general.asp"-->
28
<%
29
'------------ Variable Definition -------------
30
Dim rsQry
31
'------------ Constants Declaration -----------
32
'------------ Variable Init -------------------
33
'----------------------------------------------
34
%>
35
<html>
36
<title><%=Title(Request("rtag_id"))%></title>
5357 dpurdie 37
<link rel="shortcut icon" href="<%=FavIcon%>"/>
5098 dpurdie 38
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
39
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
6579 dpurdie 40
<link rel="stylesheet" href="images/release_manager_style.css?ver=<%=VixVerNum%>" type="text/css">
41
<link rel="stylesheet" href="images/navigation.css?ver=<%=VixVerNum%>" type="text/css">
42
<script language="JavaScript" src="images/common.js?ver=<%=VixVerNum%>"></script>
43
<script language="JavaScript" src="scripts/remote_scripting.js?ver=<%=VixVerNum%>"></script>
5098 dpurdie 44
<!--#include file="_jquery_includes.asp"-->
45
<!-- DROPDOWN MENUS -->
46
<!--#include file="_menu_def.asp"-->
6579 dpurdie 47
<script language="JavaScript1.2" src="images/popup_menu.js?ver=<%=VixVerNum%>"></script>
5098 dpurdie 48
</head>
49
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" >
50
<!-- HEADER -->
51
<!--#include file="_header.asp"-->
52
<!-- BODY ---->
53
<table width="100%" border="0" cellspacing="0" cellpadding="0">
54
    <tr> 
6876 dpurdie 55
        <td class='bg_bage'>
5098 dpurdie 56
        <!-- LEFT -->
57
        <!--#include file="_environment.asp"-->
58
        </td>
59
        <td width="1" bgcolor="#999999"><img src="images/h_trsp_dot.gif" width="1" height="1"></td>
60
        <td valign="top" width="100%">
61
        <!-- MIDDLE -->
62
        <table width="100%" border="0" cellspacing="0" cellpadding="0">
63
          <tr>
6877 dpurdie 64
            <td width='1%' class='bg_dialog'><IMG height=35 src="images/spacer.gif" width=15></td>
65
            <td width='100%' class='bg_dialog'><%Call RenderActionBar(parRtag_id,parPv_id)%></td>
66
            <td width='1%' class='bg_dialog'><IMG height=1 src="images/spacer.gif" width=15></td>
5098 dpurdie 67
          </tr>
68
          <tr>
69
            <td background="images/bg_lght_gray.gif"><IMG height="45" src="images/spacer.gif" width=1></td>
70
            <td background="images/bg_lght_gray.gif"><%Call RenderStatus(parRtag_id,parPv_id)%></td>
71
            <td background="images/bg_lght_gray.gif">&nbsp;</td>
72
          </tr>
73
          <tr>
74
            <td background="images/bg_lght_gray.gif">&nbsp;</td>
75
            <td valign="bottom" background="images/bg_lght_gray.gif">
6873 dpurdie 76
              <table width="100%" border="0" cellspacing="0" cellpadding="0">
5098 dpurdie 77
                <tr>
78
                  <td><IMG height="1" src="images/spacer.gif" width="0" alt="tab-left-margin" ></td>
79
                  <td>
80
                  <!-- TABS ------------------------------------->
81
                  <%Call Generate_Tab_Menu ( TABarray1, "Debug", "orange" )%>
82
                  </td>
83
                </tr>
84
              </table>
85
            </td>
86
            <td background="images/bg_lght_gray.gif">&nbsp;</td>
87
          </tr>
6876 dpurdie 88
          <tr class='bg_panel' style="height:35px;">
6873 dpurdie 89
            <td></td>
90
            <td>
5098 dpurdie 91
            <!-- TAB ACTION BUTTONS ------------------------------------->
92
            </td>
6873 dpurdie 93
            <td></td>
5098 dpurdie 94
          </tr>
95
          <tr>
96
            <td></td>
97
            <td valign="top">
98
            <td>&nbsp;</td>
99
          </tr>
100
            <td></td>
101
            <td>
102
            <%
103
                Dim strName
104
                Response.Write "<pre><br>Form Variables" 
105
                For Each strName in request.form
106
                    Response.Write "<br>  " & strName & ": " & request.form(strName)
107
                Next
108
                Response.Write "<br>String Variables"  
109
                For Each strName in request.querystring
110
                    Response.Write "<br>  " & strName & ": " & request.querystring(strName)
111
                Next
7395 dpurdie 112
                Response.Write "<br>pkgInfoHash Variables"
113
				Call Get_Pkg_Info_s3Sync  
5098 dpurdie 114
                For Each strName in pkgInfoHash.keys
115
                    Response.Write "<br>  " & strName & ": " & pkgInfoHash.item(strName) 
116
                Next
117
                Response.Write "</pre>" 
118
            %>
119
            </td>
120
        </table>
121
        <!-- END MIDDLE -------->
122
        </td>
123
    </tr>
124
</table>
125
 
126
<!-- FOOTER -->
127
<!--#include file="_footer.asp"-->
128
</body>
129
</html>