-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathREADME
56 lines (39 loc) · 1.62 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
NAME
RT::Extension::SideBySideView - SideBySide Ticket View for RT
DESCRIPTION
Based on an original Idea from Steve Turner (MIT) and Markus Dirr
(GreenCircle) and the ground work of Thomas Sibley (BestPractical) and
some Ideas from BPS Wiki this AddOn will give you the option to change
the Ticket View from original BPS View to a so called SideBySide Ticket
View (known from wiki).
RT users will find a new "Display History besides Metadata" option
within the "Ticket display" section of their Preferences.
INSTALLATION
perl Makefile.PL
make
make install
May need root permissions
Edit your /opt/rt4/etc/RT_SiteConfig.pm
If you are using RT 4.2 or greater, add this line:
Plugin('RT::Extension::SideBySideView');
For RT 4.0, add this line:
Set(@Plugins, qw(RT::Extension::SideBySideView));
or add RT::Extension::SideBySideView to your existing @Plugins line.
Clear your mason cache
rm -rf /opt/rt4/var/mason_data/obj
Restart your webserver
UPGRADING
If you are upgrading from 0.03 or earlier, you must remove the old
version of this extension before installing the new version by running:
rm -rf /opt/rt4/local/plugins/RT-Extension-SideBySideView/
AUTHORS
Torsten Brumm http://technik.picturepunxx.de/ <technik@picturepunxx.de>
Christian Loos <cloos@netsandbox.de>
LICENCE
This library is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
THANKS
Steve Turner (MIT)
Markus Dirr (GC)
Thomas Sibley (BPS)
Christian Loos (NetCologne)