[Socialtext-commits] SF.net SVN: socialtext: [989] branches/rug/lib/Socialtext/Handler/WSDL.pm
Brought to you by:
socialtextrocks
|
From: <pet...@us...> - 2007-01-30 06:37:41
|
Revision: 989
http://svn.sourceforge.net/socialtext/?rev=989&view=rev
Author: petdance
Date: 2007-01-29 22:37:38 -0800 (Mon, 29 Jan 2007)
Log Message:
-----------
Use the new Socialtext::WebHelpers::Rug
Modified Paths:
--------------
branches/rug/lib/Socialtext/Handler/WSDL.pm
Modified: branches/rug/lib/Socialtext/Handler/WSDL.pm
===================================================================
--- branches/rug/lib/Socialtext/Handler/WSDL.pm 2007-01-30 05:36:35 UTC (rev 988)
+++ branches/rug/lib/Socialtext/Handler/WSDL.pm 2007-01-30 06:37:38 UTC (rev 989)
@@ -7,6 +7,7 @@
use File::Spec::Functions qw(catfile);
use Socialtext::AppConfig;
use Socialtext::URI;
+use Socialtext::WebHelpers::Rug ();
sub handler ($$) {
my ( $class, $r ) = @_;
@@ -20,7 +21,7 @@
my $wsdl = eval { slurp($file) };
return NOT_FOUND unless defined $wsdl;
- my $soap_server = Socialtext::WebHelpers::Apache->base_uri();
+ my $soap_server = Socialtext::WebHelpers::Rug->base_uri();
$soap_server .= "/soap/$ver/";
$wsdl =~ s/\@SOAP_SERVER\@/$soap_server/g;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|