[Bps-public-commit] RT-Authen-PAUSE branch, rt4, created. 0.11-2-ge2c6521
Thomas Sibley
trs at bestpractical.com
Wed Feb 27 23:09:05 EST 2013
The branch, rt4 has been created
at e2c6521c34fcdfc930a4e70d6715085b199db678 (commit)
- Log -----------------------------------------------------------------
commit 04eef7e6dd5d3c8bd43af916ca84c860c00bb392
Author: Thomas Sibley <trs at bestpractical.com>
Date: Wed Feb 27 20:08:31 2013 -0800
Use jQuery; Prototype is no more in RT 4
diff --git a/html/Callbacks/PAUSE/Elements/Login/BeforeForm b/html/Callbacks/PAUSE/Elements/Login/BeforeForm
index b545205..83c05eb 100644
--- a/html/Callbacks/PAUSE/Elements/Login/BeforeForm
+++ b/html/Callbacks/PAUSE/Elements/Login/BeforeForm
@@ -5,7 +5,7 @@
</p>
</div>
<script type="text/javascript">
-Event.observe(window, 'load', function() {
+jQuery(function() {
var authors = document.getElementById("for-authors");
var login = document.getElementById("login");
authors.parentNode.removeChild(authors);
commit e2c6521c34fcdfc930a4e70d6715085b199db678
Author: Thomas Sibley <trs at bestpractical.com>
Date: Wed Feb 27 20:09:00 2013 -0800
Update M::I
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
-----------------------------------------------------------------------
More information about the Bps-public-commit
mailing list