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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273
|
NAME
RTx::Calendar - Calendar view for RT ticket dates and custom fields
DESCRIPTION
RTx::Calendar provides a calendar view to display tickets and reminders
based on selected dates. Once the extension is installed, if you perform
a ticket search using the Query Builder, you will see a new Calendar
entry in the page menu. You can click that menu to see the calendar view
of your search. A portlet is also available to add to any dashboard,
including on the RT home page.
RT VERSION
Works with RT 5.
For older versions of RT, see the CHANGES file for compatible earlier
versions.
INSTALLATION
perl Makefile.PL
make
make install
May need root permissions
Edit your /opt/rt5/etc/RT_SiteConfig.pm
Add this line:
Plugin('RTx::Calendar');
Clear your mason cache
rm -rf /opt/rt5/var/mason_data/obj
Restart your webserver
USAGE
To view a Calendar, first perform a ticket search in the ticket Query
Builder and load the search results. Then click the Calendar item in the
page menu to see the calendar view based on the results from that
search.
By default, RTx::Calendar will display the Starts and Due date fields of
each ticket from your search results as events on the Calendar.
Other date fields added to the Format of a ticket search are displayed
on the Calendar as events. You can also display events based on Date or
DateTime custom fields by adding them to the Format of a ticket search
as well.
Hover over events in the calendar to see additional details for that
event. You can click on entries to go to the ticket.
Displaying Other Date Fields
You can show other date fields as events on the Calendar by adding them
to the Format section at the Advanced tab of your query. You can add and
remove dates from search results using the Display Columns section at
the bottom of the Query Builder.
Changes made using the Display Columns settings automatically update the
search Format. You can also edit the Format directly on the Advanced
page.
Calendar Portlet Saved Searches
As described above, you can see a calendar for any ticket search using
the calendar link in the search results.
You can also create a saved search for the calendar to be used in
calendar portlets on dashboards. See "CONFIGURATION" for details on
adding the calendar portlets.
By default, the calendar looks for a saved search with the name
"calendar" and will use that search for calendar portlets. Saved
searches can be saved with different privacy settings, so your system
can have multiple saved "calendar" searches. For a given user, the
calendar first checks for a user-level saved search (personal to that
user), then for a group-level saved search for groups the user is in,
and finally, for a system-level saved search.
Displaying Reminders
Reminders are displayed on the Calendar only if you explicitly add the
following clause to your query:
AND ( Type = 'ticket' OR Type = 'reminder' )
CONFIGURATION
Use the Calendar on Dashboard
The Calendar comes with 3 different portlets that can be added to your
RT dashboards:
MyCalendar
A summary of the events for the current week.
Calendar
A full-month view of the Calendar.
CalendarWithSidebar
A full-month view of the Calendar, with a sidebar that includes an
extra status filter and legends of the Calendar events.
To make these portlets available in RT, add them to the
$HomepageComponents configuration in your etc/RT_SiteConfig.pm:
Set($HomepageComponents, [qw(QuickCreate Quicksearch
MyAdminQueues MySupportQueues MyReminders RefreshHomepage
MyCalendar Calendar CalendarWithSidebar)]);
Users can then select them when building dashboards.
Display Configuration
Display Owner
You can show the owner of the ticket in each event box by adding this
line to your etc/RT_SiteConfig.pm:
Set($CalendarDisplayOwner, 1);
Choosing the fields to be displayed in the popup
When you mouse over events on the calendar, a popup window shows
additional details from the ticket associated with that event. You can
configure which fields are displayed with @CalendarPopupFields. This is
the default configuration:
Set(@CalendarPopupFields, (
"OwnerObj->Name",
"CreatedObj->ISO",
"StartsObj->ISO",
"StartedObj->ISO",
"LastUpdatedObj->ISO",
"DueObj->ISO",
"ResolvedObj->ISO",
"Status",
"Priority",
"Requestors->MemberEmailAddressesAsString",
));
To show custom field values, add them using the custom field name in
this format: "CustomField.{Maintenance Start}".
Valid values are all fields on an RT ticket. See the RT documentation
for RT::Ticket for a list.
As shown above, for ticket fields that can have multiple output formats,
like dates and users, you can also use the Obj associated with the field
to call a specific method to display the format you want. The ticket
dates shown above will display dates in ISO format. The documentation
for RT::Date has other format options. User fields, like Owner, can use
the methods shown in the RT::User documentation to show values like
EmailAddress or RealName, for example.
Event Colors
The Calendar shows events in different colors based on the ticket
status. Use $CalendarStatusColorMap to set alternate colors or add
custom statuses. The following is the default configuration:
Set(%CalendarStatusColorMap, (
'_default_' => '#5555f8',
'new' => '#87873c',
'open' => '#5555f8',
'rejected' => '#FF0000',
'resolved' => '#72b872',
'stalled' => '#FF0000',
));
You can use any color declaration that CSS supports, including hex
codes, color names, and RGB values.
The _default_ key is used for events that don't have a status in the
$CalendarStatusColorMap hash. The default color is a dark tone of blue.
Filter on Status
The Calendar has a Filter on Status section that allows you to filter
events by status without having to change the original query. The
@CalendarFilterStatuses setting controls which statuses are available
for filtering. The following is the default:
Set(@CalendarFilterStatuses, qw(new open stalled rejected resolved));
You can change the default selected statuses of the Filter On Status
section by defining @CalendarFilterDefaultStatuses. The following is the
default:
Set(@CalendarFilterDefaultStatuses, qw(new open));
Custom Icons
The calendar shows different icons for events based on the date fields
used to display the event on that day. The %CalendarIcons setting
controls which icons are used for each date field. The following is the
default using provided icons:
Set(%CalendarIcons, (
'Reminder' => 'reminder.png',
'Resolved' => 'resolved.png',
'Starts, Due' => 'starts_due.png',
'Created, Due' => 'created_due.png',
'Created' => 'created.png',
'Due' => 'due.png',
'Starts' => 'starts.png',
'Started' => 'started.png',
'LastUpdated' => 'updated.png',
));
You can also define icons for custom fields by using the following
format:
'CF.{Maintenance Start}' => 'maintstart.png',
'CF.{Maintenance Stop}' => 'maintstop.png',
To add custom images, create a directory local/static/images in your
installed RT directory (usually /opt/rt5) and copy images files there.
You can use any image format that your browser supports, but PNGs and
GIFs with transparent backgrounds are recommended because they will
display better to the background color of the events. The recommended
size is 10 pixels wide and 7 pixels in high.
Multiple Days Events
By default, calendars display individual events on each day based on the
dates in the query.
To display events that span multiple days, such as the full expected
duration of a change blackout period, define the fields using the
%CalendarMultipleDaysEvents configuration. This option accepts named
keys that each define the field to reference for the start (Starts) and
end (Ends) of multi-day events. For example:
Set( %CalendarMultipleDaysEvents, (
'Project Task' => {
'Starts' => 'Starts',
'Ends' => 'Due',
},
));
The keys, like Project Task, are arbitrary labels to group each set, so
you can use a name that helps you identify the entry.
You can also define multiple day events for custom fields by using the
following format:
Set( %CalendarMultipleDaysEvents, (
'Maintenance' => {
"Starts" => "CF.{Maintenance Start}",
"Ends" => "CF.{Maintenance Stop}",
},
'Project Task' => {
'Starts' => 'Starts',
'Ends' => 'Due',
},
));
As with all calendar entries, the date fields referenced in the
configuration must be included in the search result Format to display
the event on the Calendar.
AUTHOR
Best Practical Solutions, LLC
Originally written by Nicolas Chuche <nchuche@barna.be>
BUGS
All bugs should be reported via email to
L<bug-RTx-Calendar@rt.cpan.org|mailto:bug-RTx-Calendar@rt.cpan.org>
or via the web at
L<rt.cpan.org|http://rt.cpan.org/Public/Dist/Display.html?Name=RTx-Calendar>.
LICENSE AND COPYRIGHT
This software is Copyright (c) 2010-2023 by Best Practical Solutions
Copyright 2007-2009 by Nicolas Chuche
This is free software, licensed under:
The GNU General Public License, Version 2, June 1991
|