Subversion Repositories DevTools

Rev

Rev 7458 | 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>
7459 dpurdie 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">
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=VixVerNum%>">
37
</script>
5357 dpurdie 38
</head>
39
 
40
<body leftmargin="0" topmargin="0">
41
<!--#include file="../_header.asp"-->
7459 dpurdie 42
<table height="90%" class="full_table">
7458 dpurdie 43
  <tr>
7459 dpurdie 44
    <td align="center" valign="middle">
45
      <table width="650" border="0" cellspacing="0" cellpadding="1">
46
        <tr>
47
          <td background="../images/bg_bage_2.gif">
48
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
49
              <tr>
50
                <td background="../images/bg_bage_pane.gif">
51
                  <table width="100%" border="0" cellpadding="10" cellspacing="0">
52
                    <form name="form" method="get" action="">
53
                      <tr>
54
                        <td width="1%" align="center" valign="top">
55
                          <img src="../images/i_warning.gif" width="30" height="31">
5357 dpurdie 56
                        </td>
7459 dpurdie 57
                        <td width="100%" valign="top">
58
                          <table width="100%" border="0" cellspacing="0" cellpadding="0">
59
                            <tr>
60
                              <td class="msg_ttl">
61
                                Downloading Build Failure Logs in Firefox
62
                              </td>
63
                            </tr>
64
                            <tr>
65
                              <td>
66
                                <img src="../images/spacer.gif" width="10" height="30">
67
                              </td>
68
                            </tr>
69
                            <tr>
70
                              <td class="body_txt">
71
                                <hr width="100%" size="1" noshade color="#ACA899">
72
                                When using a Daemon enabled release, failed daemon builds result in build failure logs
73
                                being stored temporarily. These logs may be viewed via the Build Status display for the
74
                                relevant release.
75
                                <br><br>
76
                                However, downloading files via a UNC path is a security hazard and Firefox ignores
77
                                (silently) such links by default. Those using Internet Explorer have no such problem.
78
                                What can you do about this when using Firefox?
79
                                <br><br>
80
                                In the most recent versions of Firefox, by creating a custom security policy,
81
                                downloading these build failure logs can be enabled.
82
                                <br><br>
83
                                To do this, create a user.js file in the Firefox profiles folder. This folder is user
84
                                specific. Here is an example:
85
                                <br><br>
86
                                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; C:\Documents and Settings\username\Application
87
                                Data\Mozilla\Firefox\Profiles\9bvgcwod.default
88
                                <br><br>
89
                                Your folder will be named slightly differently ofcoarse - everyone has their own
90
                                username, and the prefix of the .default folder may be different. If there is already a
91
                                user.js file in the folder, simply update it as follows.
92
                                <br><br>
93
                                Edit the new/existing user.js file and insert the following 3 lines of text:
94
                                <br><br>
95
                                user_pref("capability.policy.policynames", "localfilelinks");<br>
96
                                user_pref("capability.policy.localfilelinks.sites", "http://bms:8002");<br>
97
                                user_pref("capability.policy.localfilelinks.checkloaduri.enabled", "allAccess");<br>
98
                                <br><br>
99
                                This tells Firefox that for certain local UNC file paths, it should ignore the security
100
                                threat and download the file.
101
                                <br><br>
102
                                Restart Firefox and downloading ROOT CAUSE files from auperaunx26 should now be allowed.
103
                              </td>
104
                            </tr>
105
                          </table>
106
                        </td>
107
                        <td width="1%" valign="top">
108
                          <img src="../images/spacer.gif" width="1" height="100">
109
                        </td>
110
                      </tr>
111
                      <tr>
112
                        <td align="center" valign="middle">
113
                          &nbsp;
114
                        </td>
115
                        <td valign="top">
116
                          <hr width="100%" size="1" noshade>
117
                          <input name="Reset" type="reset" class="form_btn" value="&laquo; Back" onClick="history.back()">
118
                        </td>
119
                        <td valign="top">
120
                          &nbsp;
121
                        </td>
122
                      </tr>
123
                    </form>
5357 dpurdie 124
                  </table>
7459 dpurdie 125
                </td>
126
              </tr>
127
            </table>
128
          </td>
129
        </tr>
130
      </table>
131
    </td>
132
  </tr>
5357 dpurdie 133
</table>
7458 dpurdie 134
<!-- FOOTER -->
135
<!--#include file="../_footer.asp"-->
5357 dpurdie 136
</body>
137
</html>
5957 dpurdie 138
<!-- DESTRUCTOR ------->
5357 dpurdie 139
<!--#include file="../common/destructor.asp"-->