The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
RT-Extension-UserDetails - allows to quickly display watchers personnal details on a ticket

This RT Extension adds a button on each user listed in "Watcher" box of the
ticket display page. Clicking on this button shows a css window with
personnal informations about this users such as its Name, Email, ...

INSTALLATION

For installation on RT prior to 3.8.8, you have to apply the patch
patches/callbacks-3.8.patch.

To install this module, run the following commands:

	perl Makefile.PL
	make
	make test
	make install

Then, to make it active, add it to @Plugins in RT site configuration file
(RT_SiteConfig.pm), example:

    Set(@Plugins,(qw(RT::Extension::UserDetails)));

CONFIGURATION

You can customize which field should be displayed and in which order with by
adding %UserDetailsAttributes in RT site configuration file, default:

Hash index is the sort order.

    Set(%UserDetailsAttributes, 
        1 => { AttributeName => 'RealName',
               DisplayName => 'Real Name',
             },
        2 => { AttributeName => 'EmailAddress',
               DisplayName => 'Email',
             },
        3 => { AttributeName => 'Organization',
               DisplayName => 'Organization',
             },
       );


SUPPORT AND DOCUMENTATION

You can find documentation for this module with the perldoc command.

    perldoc RT::Extension::UserDetails


You can also look for information at:

    RT, CPAN's request tracker
        http://rt.cpan.org/NoAuth/Bugs.html?Dist=RT-Extension-UserDetails

    AnnoCPAN, Annotated CPAN documentation
        http://annocpan.org/dist/RT-Extension-UserDetails

    CPAN Ratings
        http://cpanratings.perl.org/d/RT-Extension-UserDetails

    Search CPAN
        http://search.cpan.org/dist/RT-Extension-UserDetails


COPYRIGHT AND LICENCE

Copyright (C) 2010-2014 Emmanuel Lacour

This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.

Request Tracker (RT) is Copyright Best Practical Solutions, LLC.