Subversion Repositories DevTools

Rev

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

Rev 5549 Rev 5590
Line 12... Line 12...
12
<!--
12
<!--
13
self.close();
13
self.close();
14
//-->
14
//-->
15
</SCRIPT>
15
</SCRIPT>
16
<%
16
<%
-
 
17
Response.End
17
End Sub
18
End Sub
18
'-----------------------------------------------------------------------------------------------------------------------------
19
'-----------------------------------------------------------------------------------------------------------------------------
19
Sub OpenChildWindow ( SStitle, SSurl, SSH, SSW, BBscroll )
20
Sub OpenChildWindow ( SStitle, SSurl, SSH, SSW, BBscroll )
20
   Dim scrlBar
21
   Dim scrlBar
21
   If BBscroll Then
22
   If BBscroll Then
Line 30... Line 31...
30
   //-->
31
   //-->
31
   </script>
32
   </script>
32
<%
33
<%
33
End Sub
34
End Sub
34
'-----------------------------------------------------------------------------------------------------------------------------
35
'-----------------------------------------------------------------------------------------------------------------------------
-
 
36
'	Iframes do not have a window.opener
35
Sub OpenInParentWindow ( SSurl )
37
Sub OpenInParentWindow ( SSurl )
36
%>
38
%>
37
   <script language="JavaScript" type="text/javascript">
39
   <script language="JavaScript" type="text/javascript">
38
   <!--
40
   <!--
-
 
41
	if (window.opener) {
39
   window.opener.document.location='<%=SSurl%>';
42
	   window.opener.document.location='<%=SSurl%>';
-
 
43
   } else {
-
 
44
	   window.parent.location.href='<%=SSurl%>';
-
 
45
   }
40
   //-->
46
   //-->
41
   </script>
47
   </script>
42
<%
48
<%
43
End Sub
49
End Sub
44
'-----------------------------------------------------------------------------------------------------------------------------
50
'-----------------------------------------------------------------------------------------------------------------------------
-
 
51
'	Iframes do not have a window.opener
45
Sub OpenInParentWindowFromIFrame ( SSurl )
52
Sub ReloadParentWindow ()
46
%>
53
%>
47
   <script language="JavaScript" type="text/javascript">
54
   <script language="JavaScript" type="text/javascript">
48
   <!--
55
   <!--
-
 
56
	if (window.opener) {
-
 
57
	   window.opener.location.reload(false);
-
 
58
   } else {
49
   window.parent.location.href='<%=SSurl%>';
59
	   window.parent.location.reload(false);
-
 
60
   }
50
   //-->
61
   //-->
51
   </script>
62
   </script>
52
<%
63
<%
53
End Sub
64
End Sub
54
'-----------------------------------------------------------------------------------------------------------------------------
65
'-----------------------------------------------------------------------------------------------------------------------------
Line 962... Line 973...
962
   Case "DOC_NUMBER_NOTFOUND"
973
   Case "DOC_NUMBER_NOTFOUND"
963
      msg = "<span class='err_alert'>Document number "& Request("doc_num") &" does not correspond to any document!</span>"
974
      msg = "<span class='err_alert'>Document number "& Request("doc_num") &" does not correspond to any document!</span>"
964
   Case "DOC_NUMBER_FOUND"
975
   Case "DOC_NUMBER_FOUND"
965
      msg = "Document found. Click &quot;Import&quot; to link the document."
976
      msg = "Document found. Click &quot;Import&quot; to link the document."
966
   Case "UNIT_TEST_NOT_DONE"
977
   Case "UNIT_TEST_NOT_DONE"
967
      msg = "<b>Unit test is Not Done!</b><br><a href='javascript:;' onClick=""MM_openBrWindow('_wform_reason_for_unit_test_not_done.asp?pv_id="& Request("pv_id") &"&rtag_id="& Request("rtag_id") &"','ReasonForNotDone','resizable=yes,width=400,height=250')"" class='txt_linked'>Click here</a> to supply/edit reason."
978
      msg = "<b>Unit test is Not Done!</b><br><a href='_wform_reason_for_unit_test_not_done.asp?pv_id="& Request("pv_id") &"&rtag_id="& Request("rtag_id") &"'class='txt_linked vixIframeDialog' title='Edit Reason'>Click here</a> to supply/edit reason."
968
   Case "PACKAGE_NOT_PART_OF_RELEASE"
979
   Case "PACKAGE_NOT_PART_OF_RELEASE"
969
      msg = "<b>Package is Not Part of This Release Anymore!</b><br>This package cannot be found in the list on the left-hand side.<br>You can use 'lookup:' on the left-hand side to find the package inside this release. "
980
      msg = "<b>Package is Not Part of This Release Anymore!</b><br>This package cannot be found in the list on the left-hand side.<br>You can use 'lookup:' on the left-hand side to find the package inside this release. "
970
 
981
 
971
   Case "NOT_FOUND_IN_PKG_ARCHIVE_FILE_GENERATE"
982
   Case "NOT_FOUND_IN_PKG_ARCHIVE_FILE_GENERATE"
972
      msg = "<b>This package is not found in dpkg_archive!</b><br>Files and folders are not captured."
983
      msg = "<b>This package is not found in dpkg_archive!</b><br>Files and folders are not captured."