ShowPeople doesn't use ShowUserEntry

Hello.
html/Ticket/Elements/ShowPeople component doesn’t use ShowUserEntry
component to display Owner object.

Also this new neat component is not used in /Elements/SelectOwner

RT 3.2-HEAD

			Best regards. Ruslan.

Hello.
html/Ticket/Elements/ShowPeople component doesn’t use ShowUserEntry
component to display Owner object.

Fixed in 3.3@1556

Also this new neat component is not used in /Elements/SelectOwner

The problem with using it there is that it’s expected that the component
will contain hyperlinks.

Jesse Vincent wrote:
[snip]

The problem with using it there is that it’s expected that the component
will contain hyperlinks.

In next release of ‘Expanded Adminning’ patch set(first variant is
member_of.patch) I use next component:

%if( $AsLink ) {

% }
<%$User->Name%>
% if ($User->EmailAddress && $User->EmailAddress ne $User->Name) {
<<%$User->EmailAddress%>>
% }
%if( $AsLink ) {

% }

<%ARGS>
$User => undef
$AsLink => 0
$LinkFormat => ‘/Admin/Users/Modify.html?id=%d’
</%ARGS>
<%INIT>
my $Link = ‘’;
if( $AsLink ) {
$Link = $RT::WebBaseURL . sprintf( “$LinkFormat”, $User->Id );
}
</%INIT>

Also I’m going to extend number of params with next variants:
‘EmailFormatCompliant’
‘Long’ - as much info as possible
Long+EmailFromatCompliant