Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
119 ghuddy 1
<%@LANGUAGE="VBSCRIPT"%>
2
<%
3
Option explicit
4
Response.Expires = 0	' always load the page, dont store
5
%>
6
<%
7
'=====================================================
8
'					ISSUE NOTES
9
'=====================================================
10
%>
11
<!--#include file="common/conf.asp"-->
12
<!--#include file="common/globals.asp"-->
13
<!--#include file="common/formating.asp"-->
14
<!--#include file="common/qstr.asp"-->
15
<!--#include file="common/common_subs.asp"-->
16
<!--#include file="_tabs.asp"-->
17
<!--#include file="common/cq_common_subs.asp"-->
18
<!--#include file="common/_popup_window_common.asp"-->
19
<%
20
'------------ ACCESS CONTROL ------------------
21
%>
22
<!--#include file="_access_control_general.asp"-->
23
<%
24
'------------ Variable Definition -------------
25
Dim rsCQ
26
Dim ddWidth
27
Dim parIss_db
28
Dim parIss_id
29
'------------ Constants Declaration -----------
30
'------------ Variable Init -------------------
31
Set pkgInfoHash = CreateObject("Scripting.Dictionary")
32
Call Get_Iss_Parameters ( parIss_db, parIss_id )
33
ddWidth = 20
34
'----------------------------------------------
35
%>
36
<%
37
Sub Get_Issue_Notes ( NNiss_db, NNiss_id, OOrsCQ )
4553 dpurdie 38
    Dim SQLstr
39
    If Cint(NNiss_db) = enumCLEARQUEST_DEVI_ID Then
40
        SQLstr = _
41
        "SELECT dbid AS iss_id, new_num AS iss_num, headline AS summary, dbms_lob.substr( notes_log, 4000, 1 ) as notes_log"&_
42
        " FROM release_manager.CQ_software_issue si"&_
43
        " WHERE si.dbid = "& NNiss_id
44
    End If
45
    Set OOrsCQ = OraDatabase.DbCreateDynaset( SQLstr, cint(0))
159 ghuddy 46
End Sub
119 ghuddy 47
%>
48
<%
49
Call Get_Issue_Notes ( parIss_db, parIss_id, rsCQ )
50
%>
51
<!--#include file="_menu_def.asp"-->
52
<html>
53
<head>
54
<title>Release Manager</title>
55
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
56
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
57
<link rel="stylesheet" href="images/release_manager_style.css" type="text/css">
58
<link rel="stylesheet" href="images/navigation.css" type="text/css">
59
<script language="JavaScript" src="images/common.js"></script>
60
<script language="JavaScript">
61
<!--
62
function height()
159 ghuddy 63
{
64
	if( typeof( window.innerWidth ) == 'number' )
119 ghuddy 65
	{
66
		h = window.innerHeight;
67
	}
68
	else if(document.documentElement&&(document.documentElement.clientHeight ))
69
	{
70
		h = document.documentElement.clientHeight;
159 ghuddy 71
	}
119 ghuddy 72
	else if( document.body &&	( document.body.clientWidth || document.body.clientHeight ) )
73
	{
74
		h = document.body.clientHeight;
159 ghuddy 75
	}
76
 
119 ghuddy 77
	var e = document.getElementById("LayerDescription");
159 ghuddy 78
 
119 ghuddy 79
	if (navigator.userAgent.indexOf('Internet Explorer'))
80
	{
81
		e.style.height = h - 150 + "px";
82
		e.style.overflow = "auto";
83
	}
84
	else
85
	{
86
		// This line shouldn't be run by IE; it doesn't seem to work. It gets run in Firefox, etc.
87
		e.style.minHeight= h - 150 + "px";
88
		e.style.overflow = "auto";
89
	}
90
}
91
//-->
92
</script>
93
 
94
 
95
</head>
96
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" onload="self.focus();height();" onresize="height();">
97
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
159 ghuddy 98
  <tr>
119 ghuddy 99
    <td width="1%" background="images/bg_lght_gray.gif">&nbsp;</td>
159 ghuddy 100
    <td width="100%" background="images/bg_lght_gray.gif"><span class="form_field"><br>&nbsp;Issue</span>
119 ghuddy 101
      <input name="FRpname" type="text" class="form_item" size="12" value="<%=rsCQ("iss_num")%>" readonly>
102
      <input name="FRpname2" type="text" class="form_item" size="80" value="<%=rsCQ("summary")%>" readonly> </td>
103
  </tr>
159 ghuddy 104
  <tr>
119 ghuddy 105
    <td background="images/bg_lght_gray.gif"><img src="images/h_trsp_dot.gif" width="1" height="400"></td>
106
    <td valign="top" background="images/bg_form_lightbluedark.gif">
107
	  <table width="100%" border="0" cellspacing="0" cellpadding="0">
159 ghuddy 108
        <tr>
109
          <td align="right" background="images/bg_lght_gray.gif"><br>
119 ghuddy 110
            <!-- TABS ------------------------------------------->
111
            <%Call Generate_Tab_Menu ( TABarray4, "Notes", "blue" )%>
112
            <!------------------------------------------------------------->
113
          </td>
114
        </tr>
115
        <tr>
116
          <td background="images/lbox_bg_blue.gif">&nbsp;</td>
117
        </tr>
118
      </table><br>
119
      <table width="100%" border="0" cellspacing="5" cellpadding="1">
159 ghuddy 120
        <tr>
119 ghuddy 121
          <td background="images/bg_vtree_h1.gif">
122
		      <table width="100%" border="0" cellspacing="0" cellpadding="2">
159 ghuddy 123
		        <tr>
119 ghuddy 124
		          <td bgcolor="White" class="form_item"><span class="form_field">Notes Log</span><br>
125
					<div id="LayerDescription" style="height:height(); overflow: auto;">
126
					<%
127
					If NOT IsNull(rsCQ("notes_log")) OR (rsCQ("notes_log") <> "") Then
128
						Response.write NewLine_To_BR( Server.HTMLEncode( rsCQ("notes_log") ) )
129
					End If
130
					%>
131
					</div>
132
				  </td>
133
		        </tr>
134
		      </table>
135
		  </td>
136
        </tr>
137
      </table><br>
138
	  </td>
139
  </tr>
159 ghuddy 140
  <tr>
119 ghuddy 141
    <td background="images/bg_lght_gray.gif">&nbsp;</td>
142
    <td background="images/lbox_bg_blue.gif">&nbsp;</td>
143
  </tr>
144
</table>
145
</body>
146
</html>
147
 
148
 
149
<!-- DESTRUCTOR ------->
159 ghuddy 150
<!--#include file="common/destructor.asp"-->