[Rt-commit] rt branch, master, updated. rt-4.1.17-48-ga2ef9c6
Thomas Sibley
trs at bestpractical.com
Thu Jul 18 00:12:54 EDT 2013
The branch, master has been updated
via a2ef9c67293055674652fadcadb6df1f1925ded9 (commit)
via c9b6b12e833fedb59efafe31fc95d8235dca08dd (commit)
via b72740fc023e7b12bf137f7d1e410c486954446f (commit)
from ba85a2ccfa679d9cb98e0cd2cd642fdf308a3efa (commit)
Summary of changes:
docs/UPGRADING-4.2 | 3 +
share/html/Elements/Tabs | 6 --
share/html/Tools/Offline.html | 165 ------------------------------------------
t/web/offline.t | 77 --------------------
t/web/offline_messages_utf8.t | 65 -----------------
t/web/offline_utf8.t | 56 --------------
6 files changed, 3 insertions(+), 369 deletions(-)
delete mode 100644 share/html/Tools/Offline.html
delete mode 100644 t/web/offline.t
delete mode 100644 t/web/offline_messages_utf8.t
delete mode 100644 t/web/offline_utf8.t
- Log -----------------------------------------------------------------
commit a2ef9c67293055674652fadcadb6df1f1925ded9
Merge: ba85a2c c9b6b12
Author: Thomas Sibley <trs at bestpractical.com>
Date: Wed Jul 17 21:04:27 2013 -0700
Merge branch '4.2/remove-offline-tool'
Conflicts:
docs/UPGRADING-4.2
diff --cc docs/UPGRADING-4.2
index 3fb6c7b,4a21d4e..42c1581
--- a/docs/UPGRADING-4.2
+++ b/docs/UPGRADING-4.2
@@@ -89,74 -89,5 +89,77 @@@ UPGRADING FROM RT 4.0.0 and greate
This command deletes records from Transactions table. This script can only fix
TimeWorked mismatch, but not TimeLeft or TimeEstimated.
+* A new action, "Open Inactive Tickets", has been added, and on new
+ installs the default scrip "On Correspond Open Tickets" has been
+ replaced by "On Correspond Open Inactive Tickets". The key difference
+ between "Open Tickets" and "Open Inactive Tickets" is that the latter
+ will not adjust the status of a ticket if it is already active. This
+ is particularly useful when creating complex workflows using
+ Lifecycles.
+
+* CSS is no longer processed through Mason; it's served by a proper static file
+ handler. If you used the Begin or End callbacks of main.css in the aileron,
+ web2, or ballard themes, you should transition to the @CSSFiles config option.
+ If you need to target specific themes, you can use the class set on the <body>
+ element (for example: body.aileron). See docs/customizing/styling_rt.pd for
+ more information on custom styles.
+
+* There are now HTML versions of the standard plain text templates. Running
+ make upgrade as described in the README will insert the new templates into
+ existing installs. While new installs use the HTML templates by default,
+ upgrades from older versions don't automatically switch to the HTML versions.
+ To switch existing scrips, run:
+
+ /opt/rt4/etc/upgrade/switch-templates-to html
+
+ To switch from HTML back to text, run:
+
+ /opt/rt4/etc/upgrade/switch-templates-to text
+
+* The Articles menu is now a top-level menu item and display is controlled by
+ the right ShowArticlesMenu. This right is only grantable globally to groups
+ or users. During the upgrade, the new right will be automatically granted to
+ Privileged users so that the menu doesn't disappear for anyone previously
+ using it. You may wish to revoke the right from Privileged and grant it
+ more selectively.
+
+* The Owner drop-down now only includes privileged users (no matter if
+ unprivileged users have been granted the OwnTicket right) because
+ configurations which have unprivileged Owners are exceedingly rare,
+ and granting Everyone the OwnTicket right is a common cause of
+ performance problems. Unprivileged Owners (if they exist) may still
+ be set using the Autocompleter.
+
+* The functionality that changed the ticket status to Open when the Started
+ date is set has been moved to a Scrip called 'On transaction and SetStarted
+ Open Ticket'. If you do not depend on this functionality, the Scrip can
+ be deleted.
+
+* New installs will notify Ccs and one-time Ccs/Bccs on create and Owners on
+ create and correspond. Upgraded installations will not. If you'd like to
+ adjust your scrips, the actions are available from the admin scrip pages.
+
+* Notifications to AdminCcs on approvals are now handled via the New Pending
+ Approval template in the hidden ___Approvals queue. If you customized the
+ Transaction template, you should port your changes to New Pending Approval.
+
+* On Oracle, sessions are now stored in the database by default instead of
+ on-disk. If you wish to preserve the original behaviour, ensure the
+ following is in your RT_SiteConfig.pm:
+
+ Set($WebSessionClass, "Apache::Session::File");
+
+* Configuration options dealing with "external authentication" have been
+ renamed to reduce confusion with the common extension
+ RT::Authen::ExternalAuth. The old names will work, but produce
+ deprecation warnings. The old names, and their new counterparts, are:
+
+ WebExternalAuth => WebRemoteUserAuth
+ WebExternalAuthContinuous => WebRemoteUserContinuous
+ WebFallbackToInternalAuth => WebFallbackToRTLogin
+ WebExternalGecos => WebRemoteUserGecos
+ WebExternalAuto => WebRemoteUserAutocreate
+ AutoCreate => UserAutocreateDefaultsOnLogin
++
+ * Due to many long-standing bugs and limitations, the "Offline Tool" was
+ removed.
-----------------------------------------------------------------------
More information about the Rt-commit
mailing list