/usr/share/aat/INC/AAT_MediaPlayer.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 | <!--
#################### Octopussy Project ####################
$Id$
###########################################################
-->
<%
my $status = "pause";
%>
<AAT:Box>
<AAT:BoxRow>
<AAT:BoxCol><AAT:Button name="player_start" /></AAT:BoxCol>
<AAT:BoxCol><AAT:Button name="player_rew" /></AAT:BoxCol>
<%
if ($status ne "stop")
{ %><AAT:BoxCol><AAT:Button name="player_stop" /></AAT:BoxCol><% }
if ($status ne "pause")
{ %><AAT:BoxCol><AAT:Button name="player_pause" /></AAT:BoxCol><% }
if ($status ne "play")
{ %><AAT:BoxCol><AAT:Button name="player_play" /></AAT:BoxCol><% }
%>
<AAT:BoxCol><AAT:Button name="player_fwd" /></AAT:BoxCol>
<AAT:BoxCol><AAT:Button name="player_end" /></AAT:BoxCol>
</AAT:BoxRow>
</AAT:Box>
|