/usr/share/aat/INC/AAT_PageTop.inc is in octopussy 1.0.6-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | <html>
<head>
<meta http-equiv="Pragma" content="no-cache" charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script type="text/javascript" src="JS/jquery.js"></script>
<script type="text/javascript" src="JS/jquery-ui.js"></script>
<script type="text/javascript" src="JS/jquery-ui-i18n.js"></script>
<link rel="stylesheet" href="CSS/smoothness/jquery-ui-1.8.16.custom.css"
type="text/css" media="all" />
<%
my %arg = @_;
use utf8;
if (defined $arg{icon})
{ %><link rel="icon" type="image/gif" href="<%= $arg{icon} %>"><% }
if (defined $arg{refresh})
{ %><meta http-equiv="refresh" content="<%= $arg{refresh} %>"><% }
if ((defined $arg{popup}) && ($arg{popup} =~ /y/i))
{ %><AAT:JS_Inc file="AAT/INC/AAT_popup.js" /><% }
if ((defined $arg{closepopup}) && ($arg{closepopup} =~ /y/i))
{ %><AAT:JS_Inc file="AAT/INC/AAT_closepopup.js" /><% }
if (defined $arg{ofc})
{
my ($ofc_w, $ofc_h) =
(Octopussy::Parameter("ofc_width"), Octopussy::Parameter("ofc_height"));
%>
<script type="text/javascript" src="JS/prototype.js"></script>
<script type="text/javascript" src="JS/swfobject.js"></script>
<script type="text/javascript">
swfobject.embedSWF(
"open-flash-chart.swf", "open_flash_chart",
"<%= $ofc_w || 800 %>", "<%= $ofc_h || 600 %>",
"9.0.0", "expressInstall.swf",
{"data-file":"<%= $arg{ofc} %>"}
);
</script>
<script type="text/javascript">
OFC = {};
OFC.prototype = {
name: "Prototype",
version: function(src) { return $(src).get_version() },
rasterize: function (src, dst)
{ $(dst).replace(new Element("img", {src: Control.OFC.image(src)})) },
image: function(src)
{ return "data:image/png;base64," + $(src).get_img_binary() },
popup: function(src)
{
var img_win = window.open('', 'Charts: Export as Image')
with(img_win.document) {
write("<html><head><title>Charts: Export as Image<\/title><\/head><body><img src='" + Control.OFC.image(src) + "' /><\/body><\/html>") }
}
}
if (typeof(Control == "undefined")) {var Control = {OFC: OFC.prototype}}
function save_image() { Control.OFC.popup('open_flash_chart') }
</script>
<%
}
%>
<title><%= $arg{title} %></title>
</head>
<body <%= (defined $arg{onLoad} ? "onLoad=\"$arg{onLoad}\"" : "") %>>
<AAT:PageTheme />
<%
if ((defined $arg{tooltip}) && ($arg{tooltip} =~ /y/i))
{ %><AAT:JS_Inc file="AAT/INC/AAT_tooltip.js" /><% }
%>
|