[Bps-public-commit] rt-authen-externalauth branch, master, updated. 0.13-17-ga137b57
Thomas Sibley
trs at bestpractical.com
Wed May 22 17:16:50 EDT 2013
The branch, master has been updated
via a137b57f039fbeecf48c29adb289e31ec966b1ee (commit)
from 17ee221285c4a856bc0930a44b4699d8d866e7f0 (commit)
Summary of changes:
ChangeLog | 3 +++
MANIFEST | 1 +
META.yml | 4 ++--
README | 14 +++++++-------
inc/Module/Install/RTx.pm | 13 +++++++------
lib/RT/Authen/ExternalAuth.pm | 2 +-
6 files changed, 21 insertions(+), 16 deletions(-)
- Log -----------------------------------------------------------------
commit a137b57f039fbeecf48c29adb289e31ec966b1ee
Author: Thomas Sibley <trs at bestpractical.com>
Date: Wed May 22 14:16:40 2013 -0700
Releng for 0.14
diff --git a/ChangeLog b/ChangeLog
index f5a3ff3..4949404 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,9 @@
3.8.17 and by the May 2013 security patches. Changes here are purely
for correctness/bulletproofing down the road.
+ * Moved much documentation from comments into POD; cleanups are still
+ needed, but this is a good start.
+
0.13 2013-01-31 Thomas Sibley
* Cut down on code by using the core RT::Record->Update method
diff --git a/MANIFEST b/MANIFEST
index 1c0813d..9bbc5bf 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -33,4 +33,5 @@ xt/ldap_escaping.t
xt/ldap_group.t
xt/ldap_privileged.t
xt/obfuscate-password.t
+xt/sessions.t
xt/sqlite.t
diff --git a/META.yml b/META.yml
index 1c58112..8883d7d 100644
--- a/META.yml
+++ b/META.yml
@@ -1,5 +1,5 @@
---
-abstract: 'RT Authen-ExternalAuth Extension'
+abstract: 'RT Authentication using External Sources'
author:
- 'Mike Peachey'
- 'Mike Peachey <zordrak at cpan.org>'
@@ -33,4 +33,4 @@ requires:
Net::SSLeay: 0
resources:
license: http://opensource.org/licenses/gpl-license.php
-version: 0.13
+version: 0.14
diff --git a/README b/README
index 5ee8a9e..84af822 100644
--- a/README
+++ b/README
@@ -1,13 +1,13 @@
NAME
- RT::Authen::ExternalAuth - RT Authentication using External Sources
+ RT::Authen::ExternalAuth - RT Authentication using External Sources
DESCRIPTION
- A complete package for adding external authentication mechanisms
- to RT. It currently supports LDAP via Net::LDAP and External Database
- authentication for any database with an installed DBI driver.
+ A complete package for adding external authentication mechanisms to RT.
+ It currently supports LDAP via Net::LDAP and External Database
+ authentication for any database with an installed DBI driver.
- It also allows for authenticating cookie information against an
- external database through the use of the RT-Authen-CookieAuth extension.
+ It also allows for authenticating cookie information against an external
+ database through the use of the RT-Authen-CookieAuth extension.
UPGRADING
If you are upgrading from an earlier version of this extension, you must
@@ -80,7 +80,7 @@ INSTALLATION
If you are using RT 3.8.x, you need to enable this module by adding
RT::Authen::ExternalAuth to your @Plugins configuration:
- Set( @Plugins, qw(RT::Authen::ExternalAuth) );
+ Set( @Plugins, qw(RT::Authen::ExternalAuth) );
If you already have a @Plugins line, add RT::Authen::ExternalAuth to the
existing list. Adding a second @Plugins line will cause interesting
diff --git a/inc/Module/Install/RTx.pm b/inc/Module/Install/RTx.pm
index ce01018..abf6aea 100644
--- a/inc/Module/Install/RTx.pm
+++ b/inc/Module/Install/RTx.pm
@@ -14,7 +14,7 @@ use FindBin;
use File::Glob ();
use File::Basename ();
-my @DIRS = qw(etc lib html bin sbin po var);
+my @DIRS = qw(etc lib html static bin sbin po var);
my @INDEX_DIRS = qw(lib bin sbin);
sub RTx {
@@ -62,10 +62,11 @@ sub RTx {
unshift @INC, "$RT::LocalPath/lib" if $RT::LocalPath;
unshift @INC, $lib_path;
- $RT::LocalVarPath ||= $RT::VarPath;
- $RT::LocalPoPath ||= $RT::LocalLexiconPath;
- $RT::LocalHtmlPath ||= $RT::MasonComponentRoot;
- $RT::LocalLibPath ||= "$RT::LocalPath/lib";
+ $RT::LocalVarPath ||= $RT::VarPath;
+ $RT::LocalPoPath ||= $RT::LocalLexiconPath;
+ $RT::LocalHtmlPath ||= $RT::MasonComponentRoot;
+ $RT::LocalStaticPath ||= $RT::StaticPath;
+ $RT::LocalLibPath ||= "$RT::LocalPath/lib";
my $with_subdirs = $ENV{WITH_SUBDIRS};
@ARGV = grep { /WITH_SUBDIRS=(.*)/ ? ( ( $with_subdirs = $1 ), 0 ) : 1 }
@@ -208,4 +209,4 @@ sub requires_rt {
__END__
-#line 328
+#line 329
diff --git a/lib/RT/Authen/ExternalAuth.pm b/lib/RT/Authen/ExternalAuth.pm
index 2194dee..4922128 100644
--- a/lib/RT/Authen/ExternalAuth.pm
+++ b/lib/RT/Authen/ExternalAuth.pm
@@ -1,6 +1,6 @@
package RT::Authen::ExternalAuth;
-our $VERSION = '0.13';
+our $VERSION = '0.14';
=head1 NAME
-----------------------------------------------------------------------
More information about the Bps-public-commit
mailing list