• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

etc/H19-Jul-2020-3329

html/H19-Jul-2020-279225

inc/H19-Jul-2020-3,5562,673

lib/RTx/H19-Jul-2020-21674

static/H19-Jul-2020-7561

CHANGESH A D19-Jul-20202.2 KiB9470

MANIFESTH A D19-Jul-2020970 3736

META.ymlH A D19-Jul-2020684 3231

Makefile.PLH A D17-Jul-2020152 138

READMEH A D19-Jul-20202.4 KiB8656

SIGNATUREH A D19-Jul-20204.3 KiB6356

TODOH A D11-May-2018355 128

README

1NAME
2    RTx::Calendar - Calendar for RT due dates
3
4DESCRIPTION
5    This RT extension provides a calendar view for your tickets and your
6    reminders so you see when is your next due ticket. You can find it in
7    ticket search sub navigation menu.
8
9    Date fields in the search results are displayed/used in the calendar,
10    for example if you have a ticket with a due date, it won't be displayed
11    on that date unless the Due field is included in the search result
12    format.
13
14    There's a portlet to put on your home page (see Prefs/MyRT.html), see
15    the CONFIGURATION section below for details on adding it.
16
17RT VERSION
18    Works with RT 4.2, 4.4, 5.0
19
20INSTALLATION
21    perl Makefile.PL
22    make
23    make install
24        May need root permissions
25
26    patch RT
27        Apply for versions prior to 4.4.2:
28
29            patch -p1 -d /path/to/rt < etc/tabs_privileged_callback.patch
30
31    Edit your /opt/rt5/etc/RT_SiteConfig.pm
32        Add this line:
33
34            Plugin('RTx::Calendar');
35
36    Clear your mason cache
37            rm -rf /opt/rt5/var/mason_data/obj
38
39    Restart your webserver
40
41CONFIGURATION
42  Base configuration
43    To use the MyCalendar portlet, you must add MyCalendar to
44    $HomepageComponents in etc/RT_SiteConfig.pm:
45
46      Set($HomepageComponents, [qw(QuickCreate Quicksearch MyCalendar
47         MyAdminQueues MySupportQueues MyReminders RefreshHomepage)]);
48
49  Display configuration
50    You can show the owner in each day box by adding this line to your
51    etc/RT_SiteConfig.pm:
52
53        Set($CalendarDisplayOwner, 1);
54
55    You can change which fields show up in the popup display when you mouse
56    over a date in etc/RT_SiteConfig.pm:
57
58        Set(@CalendarPopupFields, ('Status', 'OwnerObj->Name', 'DueObj->ISO'));
59
60USAGE
61    A small help section is available in /Search/Calendar.html
62
63AUTHOR
64    Best Practical Solutions, LLC <modules@bestpractical.com>
65
66    Originally written by Nicolas Chuche <nchuche@barna.be>
67
68BUGS
69    All bugs should be reported via email to
70
71        L<bug-RTx-Calendar@rt.cpan.org|mailto:bug-RTx-Calendar@rt.cpan.org>
72
73    or via the web at
74
75        L<rt.cpan.org|http://rt.cpan.org/Public/Dist/Display.html?Name=RTx-Calendar>.
76
77LICENSE AND COPYRIGHT
78    This software is Copyright (c) 2010-2020 by Best Practical Solutions
79
80    Copyright 2007-2009 by Nicolas Chuche
81
82    This is free software, licensed under:
83
84      The GNU General Public License, Version 2, June 1991
85
86