[Rt-commit] rtir branch, 5.0/update-docs-to-reference-rtir-rt-5, created. 5.0.0beta1-3-g4289208b

Craig Kaiser craig at bestpractical.com
Wed Jul 1 13:31:56 EDT 2020


The branch, 5.0/update-docs-to-reference-rtir-rt-5 has been created
        at  4289208b231828ae1869d347c16d915a73c42395 (commit)

- Log -----------------------------------------------------------------
commit 1b77e214755d14279406b3d26e4b58fe7d15309b
Author: craig kaiser <craig at bestpractical.com>
Date:   Tue Jun 30 10:21:55 2020 -0400

    Reference RT and RTIR 5 in README

diff --git a/README b/README
index 00c56bbd..824a566e 100644
--- a/README
+++ b/README
@@ -29,7 +29,7 @@ information.
 Installation instructions:
 --------------------------
 
-1) Install the current release of the RT 4.4 series following RT's
+1) Install the current release of the RT 5.0 series following RT's
    regular installation instructions
 
 2) Run "perl Makefile.PL" to generate a makefile for RTIR.
@@ -83,7 +83,7 @@ Configuring RTIR
    RT -> Configuration -> Groups -> DutyTeam -> Members.
 
 5) You can override values defined in RTIR_Config.pm by creating
-   RTIR_SiteConfig.pm in /opt/rt4/etc/ and adding your customizations.
+   RTIR_SiteConfig.pm in /opt/rt5/etc/ and adding your customizations.
 
 
 SETTING UP THE MAIL GATEWAY
@@ -92,14 +92,14 @@ SETTING UP THE MAIL GATEWAY
 An alias for the Incident Reports queue will need to be configured.
 Add the following lines to /etc/aliases (or your local equivalent):
 
-rtir:         "|/opt/rt4/bin/rt-mailgate --queue 'Incident Reports' --action correspond --url http://rt.example.com/"
+rtir:         "|/opt/rt5/bin/rt-mailgate --queue 'Incident Reports' --action correspond --url http://rt.example.com/"
 
 You should substitute the URL for RT's web interface for http://rt.example.com/.
 
 o  If your webserver uses SSL, rt-mailgate will require several new
    Perl libraries. See the RT README for more details on this option.
 
-o  See "perldoc /opt/rt4/bin/rt-mailgate" for more info about the rt-mailgate
+o  See "perldoc /opt/rt5/bin/rt-mailgate" for more info about the rt-mailgate
    script.
 
 o  If you're configuring RTIR with support for multiple constituencies, please
@@ -110,7 +110,7 @@ Documentation for RTIR
 ----------------------
 
    * Documents included with RTIR are also available for browsing at
-        http://www.bestpractical.com/docs/rtir/4.0/
+        http://www.bestpractical.com/docs/rtir/5.0/
 
    * This README file
 
@@ -121,21 +121,21 @@ Documentation for RTIR
         would read the UPGRADING-3.0, UPGRADING-3.2, and UPGRADING-4.0 files.
 
    * docs/Tutorial.pod
-        ( also at http://bestpractical.com/docs/rtir/4.0/Tutorial )
+        ( also at http://bestpractical.com/docs/rtir/5.0/Tutorial )
         Extended information about ticket merging
 
    * docs/Constituencies.pod
-        ( also at http://bestpractical.com/docs/rtir/4.0/Constituencies )
+        ( also at http://bestpractical.com/docs/rtir/5.0/Constituencies )
         Information about setting up RTIR with multiple user constituencies
 
    * docs/AdministrationTutorial.pod
-        ( also at http://bestpractical.com/docs/rtir/4.0/AdministrationTutorial )
+        ( also at http://bestpractical.com/docs/rtir/5.0/AdministrationTutorial )
         Information about setting up RTIR for Administrators
 
    * etc/RTIR_Config.pm
         (Contains a number of RTIR-specific configuration options and
         instructions for their use)
-        http://www.bestpractical.com/docs/rtir/4.0/RTIR_Config.html
+        http://www.bestpractical.com/docs/rtir/5.0/RTIR_Config.html
 
    * RTIR mailing list
         Subscribe by sending mail to rtir-request at lists.bestpractical.com

commit 791479a29e3d4e5324e3bf8edf03ac1d42b7b0d9
Author: craig kaiser <craig at bestpractical.com>
Date:   Tue Jun 30 10:30:52 2020 -0400

    Update code references for RT4 to RT5

diff --git a/bin/add_constituency.in b/bin/add_constituency.in
index f3ea1fda..b2112b87 100755
--- a/bin/add_constituency.in
+++ b/bin/add_constituency.in
@@ -109,7 +109,7 @@ use warnings;
 use strict;
 
 ### after: use lib qw(@RT_LIB_PATH@);
-use lib qw(/opt/rt4/local/lib /opt/rt4/lib);
+use lib qw(/opt/rt5/local/lib /opt/rt5/lib);
 
 use RT;
 RT::LoadConfig;
diff --git a/lib/RT/IR/Test.pm.in b/lib/RT/IR/Test.pm.in
index 92c7a63d..487286b9 100644
--- a/lib/RT/IR/Test.pm.in
+++ b/lib/RT/IR/Test.pm.in
@@ -51,7 +51,7 @@ use strict;
 use warnings;
 
 ### after: use lib qw(@RT_LIB_PATH@);
-use lib qw(/opt/rt4/local/lib /opt/rt4/lib);
+use lib qw(/opt/rt5/local/lib /opt/rt5/lib);
 
 use base 'RT::Test';
 

commit 4289208b231828ae1869d347c16d915a73c42395
Author: craig kaiser <craig at bestpractical.com>
Date:   Tue Jun 30 10:31:26 2020 -0400

    Update docs references from RT4 to RT5

diff --git a/docs/AdministrationTutorial.pod b/docs/AdministrationTutorial.pod
index ddcc3c71..f23e29da 100644
--- a/docs/AdministrationTutorial.pod
+++ b/docs/AdministrationTutorial.pod
@@ -11,7 +11,7 @@ these files to change configuration values. The F<RT_SiteConfig.pm> file
 is specifically provided to store your core site-specific configurations
 and you may create F<RTIR_SiteConfig.pm> for customizations to configuration
 declared in F<RTIR_Config.pm>.  F<RTIR_SiteConfig.pm> is normally
-created in /opt/rt4/etc/.
+created in /opt/rt5/etc/.
 
 To change a configuration value, copy the Set code from F<RT_Config.pm>
 or F<RTIR_Config.pm> and add it to the relevant Site Config. Then set
diff --git a/docs/Constituencies.pod b/docs/Constituencies.pod
index d54bf893..d0d3269c 100644
--- a/docs/Constituencies.pod
+++ b/docs/Constituencies.pod
@@ -153,7 +153,7 @@ can read the docmentation for the tool online at L<add_constituency> or
 on your system. To run the tool, navigate to your base RT directory and
 run it as follows:
 
-    cd /opt/rt4    # Default location, yours may be different
+    cd /opt/rt5    # Default location, yours may be different
     local/plugins/RT-IR/bin/add_constituency --help  # View docs
     local/plugins/RT-IR/bin/add_constituency --name EDUNET --correspond 'edunet at example.com'
 
diff --git a/docs/UPGRADING b/docs/UPGRADING
index 942035c1..afd71666 100644
--- a/docs/UPGRADING
+++ b/docs/UPGRADING
@@ -29,7 +29,7 @@ its upgrade instructions. Make sure you follow all of the
 steps and upgrade both the code and the database.
 
 As noted in the RT documentation, it is recommended that you
-use a fresh directory when upgrading to RT 4, like /opt/rt4,
+use a fresh directory when upgrading to RT 4, like /opt/rt5,
 rather than upgrading on top of your RT 3 installation.
 A lot of files have been deleted and moved around in RTIR
 so don't copy an old RTIR's files.
@@ -38,6 +38,8 @@ so don't copy an old RTIR's files.
 
     RTIR 4.0 is only compatible with RT 4.4 releases.
 
+    RTIR 5.0 is only compatible with RT 5.0 releases.
+
 =item 3
 
 Make another backup of the DB, so you can return to this step
diff --git a/etc/RTIR_Config.pm b/etc/RTIR_Config.pm
index e7d22b04..12abeaef 100644
--- a/etc/RTIR_Config.pm
+++ b/etc/RTIR_Config.pm
@@ -7,7 +7,7 @@ RT::IR::Config - RTIR specific options and defaults for RT
 
 NEVER EDIT RTIR_Config.pm.
 
-Instead, create RTIR_SiteConfig.pm in /opt/rt4/etc and edit anything
+Instead, create RTIR_SiteConfig.pm in /opt/rt5/etc and edit anything
 you wish to change there.
 
 =head1 Base Configuration

-----------------------------------------------------------------------


More information about the rt-commit mailing list