diff options
author | Andrew Rist <arist@apache.org> | 2012-02-15 01:06:04 +0000 |
---|---|---|
committer | Andrew Rist <arist@apache.org> | 2012-02-15 01:06:04 +0000 |
commit | bf00b0799ecdc729c330442b25b6f5c1cce7a025 (patch) | |
tree | 64d0c413430cce200f65fd8ab1f0ec96dc967e1b | |
parent | 8d741c046f62f118b5f53c425c69c307d923fe4d (diff) |
add direct link to log files (without javascript)
-rwxr-xr-x | solenv/bin/build.pl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/solenv/bin/build.pl b/solenv/bin/build.pl index fb42123d0d26..b2ced39ec0a2 100755 --- a/solenv/bin/build.pl +++ b/solenv/bin/build.pl @@ -2979,7 +2979,8 @@ sub generate_html_file { print HTML ' top.innerFrame.frames[1].document.write(" <td width=* align=center><strong style=color:blue>Job</strong></td>");' . "\n"; print HTML ' top.innerFrame.frames[1].document.write(" <td width=* align=center><strong style=color:blue>Start Time</strong></td>");' . "\n"; print HTML ' top.innerFrame.frames[1].document.write(" <td width=* align=center><strong style=color:blue>Finish Time</strong></td>");' . "\n"; - print HTML ' top.innerFrame.frames[1].document.write(" <td width=* align=center><strong style=color:blue>Client</strong></td>");' . "\n" if ($server_mode); + print HTML ' top.innerFrame.frames[1].document.write(" <td width=* align=center><strong style=color:blue>Client</strong></td>");' . "\n"; + print HTML ' top.innerFrame.frames[1].document.write(" <td width=* align=center><strong style=color:blue>Link</strong></td>");' . "\n" if ($server_mode); print HTML ' top.innerFrame.frames[1].document.write(" </tr>");' . "\n"; print HTML ' var dir_info_strings = Message2.split("<br><br>");' . "\n"; print HTML ' for (i = 0; i < dir_info_strings.length; i++) {' . "\n"; @@ -2995,7 +2996,8 @@ sub generate_html_file { print HTML ' };' . "\n"; print HTML ' top.innerFrame.frames[1].document.write(" <td align=center>" + dir_info_array[2] + "</td>");' . "\n"; print HTML ' top.innerFrame.frames[1].document.write(" <td align=center>" + dir_info_array[3] + "</td>");' . "\n"; - print HTML ' top.innerFrame.frames[1].document.write(" <td align=center>" + dir_info_array[5] + "</td>");' . "\n" if ($server_mode); + print HTML ' top.innerFrame.frames[1].document.write(" <td align=center>" + dir_info_array[5] + "</td>");' . "\n"; + print HTML ' top.innerFrame.frames[1].document.write(" <td align=center><a target=\"_blank\" href=\"" + dir_info_array[4] + "\">link</a></td>");' . "\n" if ($server_mode); print HTML ' top.innerFrame.frames[1].document.write(" </tr>");' . "\n"; print HTML ' };' . "\n"; print HTML ' top.innerFrame.frames[1].document.write("</table>");' . "\n"; |