[Socialtext-commits] SF.net SVN: socialtext: [998] branches/rug/lib/Socialtext
Brought to you by:
socialtextrocks
|
From: <pet...@us...> - 2007-01-30 21:17:35
|
Revision: 998
http://svn.sourceforge.net/socialtext/?rev=998&view=rev
Author: petdance
Date: 2007-01-30 13:17:20 -0800 (Tue, 30 Jan 2007)
Log Message:
-----------
apache_object is now req
Modified Paths:
--------------
branches/rug/lib/Socialtext/Rug/Cookie.pm
branches/rug/lib/Socialtext/WebApp.pm
Modified: branches/rug/lib/Socialtext/Rug/Cookie.pm
===================================================================
--- branches/rug/lib/Socialtext/Rug/Cookie.pm 2007-01-30 20:19:50 UTC (rev 997)
+++ branches/rug/lib/Socialtext/Rug/Cookie.pm 2007-01-30 21:17:20 UTC (rev 998)
@@ -34,7 +34,7 @@
my $class = shift;
my $rug = shift;
- return $CookieClass->new( $rug->apache_object(), @_ );
+ return $CookieClass->new( $rug->req, @_ );
}
sub fetch {
Modified: branches/rug/lib/Socialtext/WebApp.pm
===================================================================
--- branches/rug/lib/Socialtext/WebApp.pm 2007-01-30 20:19:50 UTC (rev 997)
+++ branches/rug/lib/Socialtext/WebApp.pm 2007-01-30 21:17:20 UTC (rev 998)
@@ -57,7 +57,7 @@
# MasonX::WebApp should be changed so that the apache_req param
# can be an ST::Rug object. Right now it checks the class of the
# parameter, but it should just check for the methods it needs.
- my $self = $class->SUPER::new( apache_req => $rug->apache_object, @_ );
+ my $self = $class->SUPER::new( apache_req => $rug->req, @_ );
return $self;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|