Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
5357 dpurdie 1
<%@LANGUAGE="VBSCRIPT"%>
2
<%
3
'=====================================================
4
'|                                                   |
5
'|             msg_firefox_unc_downloading           |
6
'|                                                   |
7
'=====================================================
8
%>
9
<%
10
Option explicit
11
Response.Expires = 0
12
%>
13
<!--#include file="../common/conf.asp"-->
14
<!--#include file="../common/globals.asp"-->
15
<!--#include file="../common/qstr.asp"-->
16
<!--#include file="../common/common_subs.asp"-->
17
<%
18
'------------ VARIABLE DEFINITION -------------
19
'------------ CONSTANTS DECLARATION -----------
20
'------------ VARIABLE INIT -------------------
21
'------------ CONDITIONS ----------------------
22
'----------------------------------------------
23
%>
24
<%
25
'------------ RUN BEFORE PAGE RENDER ----------
26
'----------------------------------------------
27
%>
28
<html>
29
<head>
30
<title>Release Manager</title>
31
<link rel="shortcut icon" href="<%=FavIcon%>"/>
32
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
33
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
6579 dpurdie 34
<link rel="stylesheet" href="../images/release_manager_style.css?ver=<%=VixVerNum%>" type="text/css">
35
<link rel="stylesheet" href="../images/navigation.css?ver=<%=VixVerNum%>" type="text/css">
36
<script language="JavaScript" src="../images/common.js?ver=<%=VixVerNum%>"></script>
5357 dpurdie 37
</head>
38
 
39
<body leftmargin="0" topmargin="0">
40
<!--#include file="../_header.asp"-->
7458 dpurdie 41
<table height="90%" class="full_table bg_grey">
42
  <tr>
5357 dpurdie 43
      <td align="center" valign="middle">
44
         <table width="650" border="0" cellspacing="0" cellpadding="1">
45
            <tr>
46
               <td background="../images/bg_bage_2.gif">
47
                  <table width="100%"  border="0" cellspacing="0" cellpadding="0">
48
                     <tr>
49
                        <td background="../images/bg_bage_pane.gif">
50
                           <table width="100%" border="0" cellpadding="10" cellspacing="0">
51
                              <form name="form" method="get" action="">
52
                                 <tr>
53
                                    <td width="1%" align="center" valign="top"><img src="../images/i_warning.gif" width="30" height="31"></td>
54
                                    <td width="100%" valign="top">
55
                                       <table width="100%" border="0" cellspacing="0" cellpadding="0">
56
                                          <tr>
57
                                             <td class="msg_ttl">Downloading Build Failure Logs in Firefox</td>
58
                                          </tr>
59
                                          <tr>
60
                                             <td><img src="../images/spacer.gif" width="10" height="30"></td>
61
                                          </tr>
62
                                          <tr>
63
                                             <td class="body_txt">
64
                                                <hr width="100%" size="1" noshade color="#ACA899">
65
                                                When using a Daemon enabled release, failed daemon builds result in build
66
                                                failure logs being stored temporarily on auperaunx26. These logs may be
67
                                                viewed via the Build Status display for the relevant release.
68
                                                <br><br>
69
                                                However, downloading files via a UNC path is a security hazard and Firefox
70
                                                ignores (silently) such links by default. Those using Internet Explorer
71
                                                have no such problem. What can you do about this when using Firefox?
72
                                                <br><br>
73
                                                In the most recent versions of Firefox, by creating a custom security
74
                                                policy, downloading these build failure logs can be enabled.
75
                                                <br><br>
76
                                                To do this, create a user.js file in the Firefox profiles folder. This
77
                                                folder is user specific. Here is an example:
78
                                                <br><br>
79
                                                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
80
                                                C:\Documents and Settings\username\Application Data\Mozilla\Firefox\Profiles\9bvgcwod.default
81
                                                <br><br>
82
                                                Your folder will be named slightly differently ofcoarse - everyone has
83
                                                their own username, and the prefix of the .default folder may be different.
84
                                                If there is already a user.js file in the folder, simply update it as
85
                                                follows.
86
                                                <br><br>
87
                                                Edit the new/existing user.js file and insert the following 3 lines of text:
88
                                                <br><br>
89
                                                user_pref("capability.policy.policynames", "localfilelinks");<br>
90
                                                user_pref("capability.policy.localfilelinks.sites", "http://bms:8002");<br>
91
                                                user_pref("capability.policy.localfilelinks.checkloaduri.enabled", "allAccess");<br>
92
                                                <br><br>
93
                                                This tells Firefox that for certain local UNC file paths,
94
                                                it should ignore the security threat and download the file.
95
                                                <br><br>
96
                                                Restart Firefox and downloading ROOT CAUSE files from auperaunx26 should now be allowed.
97
                                             </td>
98
                                          </tr>
99
                                       </table>
100
                                    </td>
101
                                    <td width="1%" valign="top"><img src="../images/spacer.gif" width="1" height="100"></td>
102
                                 </tr>
103
                                 <tr>
104
                                    <td align="center" valign="middle">&nbsp;</td>
105
                                    <td valign="top"><hr width="100%" size="1" noshade>
106
                                       <input name="Reset" type="reset" class="form_btn" value="&laquo; Back" onClick="history.back()">
107
                                    </td>
108
                                    <td valign="top">&nbsp;</td>
109
                                 </tr>
110
                              </form>
111
                           </table>
112
                        </td>
113
                     </tr>
114
                  </table>
115
               </td>
116
            </tr>
117
         </table>
118
      </td>
119
   </tr>
120
</table>
7458 dpurdie 121
<!-- FOOTER -->
122
<!--#include file="../_footer.asp"-->
5357 dpurdie 123
</body>
124
</html>
5957 dpurdie 125
<!-- DESTRUCTOR ------->
5357 dpurdie 126
<!--#include file="../common/destructor.asp"-->