Move/copy images path to be compatible with RT 4.2.x
[manu/RT-Extension-UserDetails.git] / README
1 RT-Extension-UserDetails - allows to quickly display watchers personnal details on a ticket
2
3 This RT Extension adds a button on each user listed in "Watcher" box of the
4 ticket display page. Clicking on this button shows a css window with
5 personnal informations about this users such as its Name, Email, ...
6
7 INSTALLATION
8
9 For installation on RT prior to 3.8.8, you have to apply the patch
10 patches/callbacks-3.8.patch.
11
12 To install this module, run the following commands:
13
14         perl Makefile.PL
15         make
16         make test
17         make install
18
19 Then, to make it active, add it to @Plugins in RT site configuration file
20 (RT_SiteConfig.pm), example:
21
22     Set(@Plugins,(qw(RT::Extension::UserDetails)));
23
24 CONFIGURATION
25
26 You can customize which field should be displayed and in which order with by
27 adding %UserDetailsAttributes in RT site configuration file, default:
28
29 Hash index is the sort order.
30
31     Set(%UserDetailsAttributes, 
32         1 => { AttributeName => 'RealName',
33                DisplayName => 'Real Name',
34              },
35         2 => { AttributeName => 'EmailAddress',
36                DisplayName => 'Email',
37              },
38         3 => { AttributeName => 'Organization',
39                DisplayName => 'Organization',
40              },
41        );
42
43
44 SUPPORT AND DOCUMENTATION
45
46 You can find documentation for this module with the perldoc command.
47
48     perldoc RT::Extension::UserDetails
49
50
51 You can also look for information at:
52
53     RT, CPAN's request tracker
54         http://rt.cpan.org/NoAuth/Bugs.html?Dist=RT-Extension-UserDetails
55
56     AnnoCPAN, Annotated CPAN documentation
57         http://annocpan.org/dist/RT-Extension-UserDetails
58
59     CPAN Ratings
60         http://cpanratings.perl.org/d/RT-Extension-UserDetails
61
62     Search CPAN
63         http://search.cpan.org/dist/RT-Extension-UserDetails
64
65
66 COPYRIGHT AND LICENCE
67
68 Copyright (C) 2010-2014 Emmanuel Lacour
69
70 This program is free software; you can redistribute it and/or modify it
71 under the same terms as Perl itself.
72
73 Request Tracker (RT) is Copyright Best Practical Solutions, LLC.
74