[Rt-commit] rt branch, 5.0-trunk, updated. rt-5.0.0alpha1-67-g96ccd1dabd
Jim Brandt
jbrandt at bestpractical.com
Wed Apr 1 17:31:33 EDT 2020
The branch, 5.0-trunk has been updated
via 96ccd1dabdb928d14309ae6c9a728172d18d1ceb (commit)
via 7883e982650758148e566d2d6333231ebb7b682a (commit)
via 8f4722c85ce6f347c1e81dcec03b17d365ab7840 (commit)
via 0bd0ec533662560950c0ee97b171ebf59b6d99e5 (commit)
via c70858329c1104674bce04d6e1a7fc8c685c15f1 (commit)
via 90add74160f12e03bdc57d1ec3c2691f97a3ff7c (commit)
via aea948b0801f5edb1b3bf8eaba10128bf7021918 (commit)
via 85a9cc398f465541f0cfaee28636018d94e604be (commit)
via 0cd0ff47879efeef642059b4090db841aa74b131 (commit)
via d4833d239771cd220293eb93cda23d18c79ebcc3 (commit)
via 00e43354ee821b1b9bf9703acf061ecf54fd3af0 (commit)
via 020ad76279ab64845b742f5e8594f6c52fb0825e (commit)
from 5da73ebd505cf4d8ab54854ce0ced0c521c281c3 (commit)
Summary of changes:
docs/UPGRADING-5.0 | 19 ++
etc/RT_Config.pm.in | 56 ++++++
lib/RT.pm | 1 +
lib/RT/Config.pm | 44 +++++
lib/RT/Queue.pm | 11 ++
lib/RT/Ticket.pm | 43 +++++
lib/RT/Tickets.pm | 39 +++++
lib/RT/Transaction.pm | 14 ++
lib/RT/Transactions.pm | 39 +++++
share/html/Admin/Queues/DefaultValues.html | 4 +-
share/html/Elements/RT__Ticket/ColumnMap | 36 +++-
share/html/Elements/SelectPriority | 75 ++++++++
.../Elements/{SelectSLA => SelectPriorityAsString} | 49 ++++--
share/html/Search/Bulk.html | 2 +-
share/html/Search/Elements/ConditionRow | 3 +-
share/html/Search/Elements/EditFormat | 2 +-
share/html/Search/Elements/PickBasics | 1 +
share/html/Search/Elements/PickTickets | 1 +
share/html/Ticket/Create.html | 6 +-
share/html/Ticket/Elements/EditBasics | 4 +-
share/html/Ticket/Elements/ShowPriority | 26 ++-
share/static/css/elevator-light/ticket.css | 14 ++
share/static/css/mobile.css | 8 +
t/ticket/priority.t | 105 +++++++++++
t/web/download_user_info.t | 2 +-
t/web/mobile.t | 2 +-
t/web/priority.t | 195 +++++++++++++++++++++
27 files changed, 771 insertions(+), 30 deletions(-)
copy share/html/Elements/{SelectSLA => SelectPriorityAsString} (67%)
create mode 100644 t/ticket/priority.t
create mode 100644 t/web/priority.t
- Log -----------------------------------------------------------------
commit 7883e982650758148e566d2d6333231ebb7b682a
Author: Jim Brandt <jbrandt at bestpractical.com>
Date: Wed Apr 1 17:20:45 2020 -0400
Add PriorityAsString notes to UPGRADING
diff --git a/docs/UPGRADING-5.0 b/docs/UPGRADING-5.0
index 07369d7855..64b533f828 100644
--- a/docs/UPGRADING-5.0
+++ b/docs/UPGRADING-5.0
@@ -75,6 +75,25 @@ The updated rich text editor now shows the browser context menu (right-click
menu) by default, so the MessageBoxUseSystemContextMenu configuration option is
no longer needed and has been removed.
+=item *
+
+The extension PriorityAsString has been integrated into core RT. This may
+require some changes in your configuration.
+
+If you previously used numbers for priority and would like to continue
+to do so, you can set the new C<$EnablePriorityAsString> option to false.
+That will disable the new string-based display.
+
+If you would like to now use strings for priority like Low, Medium, High,
+check the new C<%PriorityAsString> configuration option. RT provides a simple
+default setting that may be sufficient. Set new values if you would like
+to customize your priority options.
+
+If you were previously using the PriorityAsString extension, you no longer
+need the extension installed. The C<%PriorityAsString>> configuration is
+simplified and consolidated, so check the documentation for details on
+updating your previous configuration.
+
=back
=cut
commit 96ccd1dabdb928d14309ae6c9a728172d18d1ceb
Merge: 5da73ebd50 7883e98265
Author: Jim Brandt <jbrandt at bestpractical.com>
Date: Wed Apr 1 17:22:35 2020 -0400
Merge branch '5.0/priority-as-string' into 5.0-trunk
diff --cc lib/RT.pm
index cc32f730c9,b7a294b6a8..853a700adf
--- a/lib/RT.pm
+++ b/lib/RT.pm
@@@ -767,7 -767,7 +767,8 @@@ our %CORED_PLUGINS =
'RT::Extension::AdminConditionsAndActions' => '4.4.2',
'RT::Extension::RightsInspector' => '5.0',
'RT::Extension::ConfigInDatabase' => '5.0',
+ 'RT::Extension::CustomRole::Visibility' => '5.0',
+ 'RT::Extension::PriorityAsString' => '5.0',
);
sub InitPlugins {
-----------------------------------------------------------------------
More information about the rt-commit
mailing list