/usr/share/aat/INC/AAT_Entry.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 | <%
my %arg = @_;
my $options = "";
foreach my $k (keys %arg)
{ $options .= " $k=\"$arg{$k}\"" if (($k ne "name") && ($k ne "value")); }
my $value = $arg{value};
$value =~ s/"/"/g;
%>
<input type="text" id="<%= $arg{name} %>" name="<%= $arg{name} %>"
<%= (defined $value ? " value=\"$value\"" : "") %> <%= $options %>>
|