[Rt-commit] rt branch, 4.2-trunk, updated. rt-4.2.4-17-g3489c7d
Alex Vandiver
alexmv at bestpractical.com
Thu May 22 12:57:41 EDT 2014
The branch, 4.2-trunk has been updated
via 3489c7d5562062ef93655fb9ca9e1ccbb05a05e9 (commit)
via 7354310742796eec3e487c9093942a2151be6cad (commit)
via 90ae21541ea23f4facdc1d396fbc4f28072519c3 (commit)
from 711fea991dff58bfc2fc131040bf60b5bb93ab32 (commit)
Summary of changes:
etc/RT_Config.pm.in | 14 ++++----------
etc/RT_SiteConfig.pm | 6 +++---
2 files changed, 7 insertions(+), 13 deletions(-)
- Log -----------------------------------------------------------------
commit 90ae21541ea23f4facdc1d396fbc4f28072519c3
Author: Alex Vandiver <alexmv at bestpractical.com>
Date: Thu May 22 10:36:16 2014 -0500
Stop mentioning QuickDelete, as it was last useful and working in 3.8
diff --git a/etc/RT_Config.pm.in b/etc/RT_Config.pm.in
index f9b24be..5bcd342 100755
--- a/etc/RT_Config.pm.in
+++ b/etc/RT_Config.pm.in
@@ -121,7 +121,7 @@ installed).
Example:
-C<Set(@Plugins, (qw(Extension::QuickDelete RT::Extension::CommandByMail)));>
+C<Set(@Plugins, (qw(RT::Extension::CommandByMail)));>
=cut
diff --git a/etc/RT_SiteConfig.pm b/etc/RT_SiteConfig.pm
index 683f2b7..d4903cf 100755
--- a/etc/RT_SiteConfig.pm
+++ b/etc/RT_SiteConfig.pm
@@ -20,7 +20,6 @@ Set( $rtname, 'example.com');
# You must install Plugins on your own, this is only an example
# of the correct syntax to use when activating them.
-# Plugin( "RT::Extension::QuickDelete" );
# Plugin( "RT::Extension::CommandByMail" );
1;
commit 7354310742796eec3e487c9093942a2151be6cad
Author: Alex Vandiver <alexmv at bestpractical.com>
Date: Thu May 22 10:49:33 2014 -0500
Switch to more canonically useful example plugins
diff --git a/etc/RT_Config.pm.in b/etc/RT_Config.pm.in
index 5bcd342..da1c51d 100755
--- a/etc/RT_Config.pm.in
+++ b/etc/RT_Config.pm.in
@@ -121,7 +121,7 @@ installed).
Example:
-C<Set(@Plugins, (qw(RT::Extension::CommandByMail)));>
+C<Set(@Plugins, (qw(RT::Extension::SLA RT::Authen::ExternalAuth)));>
=cut
diff --git a/etc/RT_SiteConfig.pm b/etc/RT_SiteConfig.pm
index d4903cf..390a351 100755
--- a/etc/RT_SiteConfig.pm
+++ b/etc/RT_SiteConfig.pm
@@ -19,7 +19,8 @@
Set( $rtname, 'example.com');
# You must install Plugins on your own, this is only an example
-# of the correct syntax to use when activating them.
-# Plugin( "RT::Extension::CommandByMail" );
+# of the correct syntax to use when activating them:
+# Plugin( "RT::Extension::SLA" );
+# Plugin( "RT::Authen::ExternalAuth" );
1;
commit 3489c7d5562062ef93655fb9ca9e1ccbb05a05e9
Author: Alex Vandiver <alexmv at bestpractical.com>
Date: Thu May 22 10:49:55 2014 -0500
Suggest Plugin() in RT_Config.pm
Fixes I#29978
diff --git a/etc/RT_Config.pm.in b/etc/RT_Config.pm.in
index da1c51d..97e6c45 100755
--- a/etc/RT_Config.pm.in
+++ b/etc/RT_Config.pm.in
@@ -115,17 +115,11 @@ Set($Timezone, "US/Eastern");
=item C<@Plugins>
-Set C<@Plugins> to a list of external RT plugins that should be
-enabled (those plugins have to be previously downloaded and
-installed).
+Once a plugin has been downloaded and installed, use C<Plugin()> to add
+to the enabled C<@Plugins> list:
-Example:
-
-C<Set(@Plugins, (qw(RT::Extension::SLA RT::Authen::ExternalAuth)));>
-
-=cut
-
-Set(@Plugins, ());
+ Plugin( "RT::Extension::SLA" );
+ Plugin( "RT::Authen::ExternalAuth" );
=item C<@StaticRoots>
-----------------------------------------------------------------------
More information about the rt-commit
mailing list