This file is indexed.

/usr/share/zentyal/templates/samba/ajax/viewer/shareViewer.mas is in zentyal-samba 2.3.12+quantal1ubuntu1.

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
<%args>
$data
</%args>
<%init>
</%init>
% my $type;
% if ($data->selectedType() eq 'user') {
%    $type = __('User');
% } elsif ($data->selectedType() eq 'group') {
%    $type = __('Group');
% } elsif ($data->selectedType() eq 'share') {
%    $type = __('Share');
% }
% if (defined($data->printableValue())) {
<span><% $type %>: <% $data->printableValue() %></span>
 <% $data->trailingText() %>
% }
% else {
<span>--</span>
% }