[Bps-public-commit] RT-BugTracker-Public branch, 4.2-4.4-compatibility, updated. 1.00-26-g6916ea1
Shawn Moore
shawn at bestpractical.com
Wed Mar 29 18:06:19 EDT 2017
The branch, 4.2-4.4-compatibility has been updated
via 6916ea132c5a9874e207cc875c527501fb93c662 (commit)
via 944965a9d47718ae3e2f76b6ba959bfba8a3665e (commit)
from 013afbd766b3b515a52fa1eac0977fd5483f2b97 (commit)
Summary of changes:
Changes | 10 ++++++++++
MANIFEST | 1 +
META.yml | 2 +-
Makefile.PL | 1 -
README | 18 ++++++++++++++++++
lib/RT/BugTracker/Public.pm | 4 +++-
6 files changed, 33 insertions(+), 3 deletions(-)
- Log -----------------------------------------------------------------
commit 944965a9d47718ae3e2f76b6ba959bfba8a3665e
Author: Shawn M Moore <shawn at bestpractical.com>
Date: Wed Mar 29 22:02:27 2017 +0000
Document make initdb now that we have an initialdata
diff --git a/lib/RT/BugTracker/Public.pm b/lib/RT/BugTracker/Public.pm
index 556da46..f7934d3 100644
--- a/lib/RT/BugTracker/Public.pm
+++ b/lib/RT/BugTracker/Public.pm
@@ -100,6 +100,8 @@ for a distribution.
May need root permissions
+=item C<make initdb>
+
=item Edit your F</opt/rt4/etc/RT_SiteConfig.pm>
Add this line:
commit 6916ea132c5a9874e207cc875c527501fb93c662
Author: Shawn M Moore <shawn at bestpractical.com>
Date: Wed Mar 29 22:05:56 2017 +0000
1.07 releng
diff --git a/Changes b/Changes
index bec7942..f9e9a92 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,13 @@
+1.07 2017-03-29
+ - Add WebPublicUserQueryBuilder config setting
+ - Have WebPublicUserReporting hide create/reply UI more consistently
+ - Support RT::BugTracker BugTracker_ShowAllDistributions
+ - Only add an about menu if it's defined
+ - Remove the welcome message since the dead-end link is confusing
+ - Remove the 'welcome guest' menu option
+ - Relabel log out link
+ - Allow customization of select parts of the UI using articles
+
1.06 2017-02-28
- RT 4.2 and 4.4 compatibility
- Drop 4.0 compatibility
diff --git a/MANIFEST b/MANIFEST
index 8539a23..4a4aa75 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -1,4 +1,5 @@
Changes
+etc/initialdata
etc/RT_SiteConfig.pm
html/Callbacks/BugTracker-Public/autohandler/Auth
html/Callbacks/BugTracker-Public/autohandler/Default
diff --git a/META.yml b/META.yml
index e6d3212..64dbca4 100644
--- a/META.yml
+++ b/META.yml
@@ -24,7 +24,7 @@ requires:
perl: 5.10.1
resources:
license: http://opensource.org/licenses/gpl-license.php
-version: '1.06'
+version: '1.07'
x_module_install_rtx_version: '0.38'
x_requires_rt: 4.2.0
x_rt_too_new: 4.6.0
diff --git a/Makefile.PL b/Makefile.PL
index 937f700..6081b5b 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -5,5 +5,4 @@ RTx('RT-BugTracker-Public');
requires_rt('4.2.0');
rt_too_new('4.6.0');
-sign();
WriteAll();
diff --git a/README b/README
index 755a974..a466e4d 100644
--- a/README
+++ b/README
@@ -32,6 +32,7 @@ INSTALLATION
make install
May need root permissions
+ make initdb
Edit your /opt/rt4/etc/RT_SiteConfig.pm
Add this line:
@@ -78,6 +79,23 @@ CONFIGURATION
Set($WebPublicUserReporting, 1);
+ WebPublicUserQueryBuilder
+ By default, the web public user cannot use RT's fully-featured query
+ builder and is limited instead to simple search. To allow access to the
+ query builder, add this line:
+
+ Set($WebPublicUserQueryBuilder, 1);
+
+ GetArticleContent
+ Searches in articles for content for various configurable pages in the
+ BugTracker interface. The article names are available for adding custom
+ content in the listed locations. To customize, create or edit the
+ article with the listed name.
+
+ * AfterLoginForm
+
+ Location: Login page, below username/password fields
+
AUTHOR
Best Practical Solutions, LLC <modules at bestpractical.com>
diff --git a/lib/RT/BugTracker/Public.pm b/lib/RT/BugTracker/Public.pm
index f7934d3..eb00687 100644
--- a/lib/RT/BugTracker/Public.pm
+++ b/lib/RT/BugTracker/Public.pm
@@ -53,7 +53,7 @@ use warnings;
package RT::BugTracker::Public;
use URI::Escape qw/ uri_escape /;
-our $VERSION = '1.06';
+our $VERSION = '1.07';
RT->AddJavaScript("bugtracker-public.js");
RT->AddStyleSheets("bugtracker-public.css");
-----------------------------------------------------------------------
More information about the Bps-public-commit
mailing list