Compare commits

...

2 Commits
1.25 ... 1.26

Author SHA1 Message Date
Martin Kutter
c6a48ba84b import SOAP-WSDL 1.26 from CPAN
git-cpan-module:   SOAP-WSDL
git-cpan-version:  1.26
git-cpan-authorid: MKUTTER
git-cpan-file:     authors/id/M/MK/MKUTTER/SOAP-WSDL-1.26.tar.gz
2009-12-12 19:48:00 -08:00
Martin Kutter
30be0da3dc import SOAP-WSDL 2.00_16 from CPAN
git-cpan-module:   SOAP-WSDL
git-cpan-version:  2.00_16
git-cpan-authorid: MKUTTER
git-cpan-file:     authors/id/M/MK/MKUTTER/SOAP-WSDL-2.00_16.tar.gz
2009-12-12 19:47:59 -08:00
8 changed files with 9 additions and 6 deletions

View File

@@ -4,6 +4,7 @@ use Module::Build;
Module::Build->new(
create_makefile_pl => 'passthrough',
dist_name => 'SOAP-WSDL',
dist_version => '1.26',
dist_abstract => 'WSDL support for SOAP::Lite',
module_name => 'SOAP::WSDL',
license => 'artistic',

View File

@@ -1,3 +1,5 @@
* v1.26 2007/10/05 - bugfix
- fixed issue reported by T Alex Beamish: tests fail when unwrapped into /tmp
* v1.25 2007/09/24 - maintenance
- added Makefile.PL to ease installation

View File

@@ -1,6 +1,6 @@
---
name: SOAP-WSDL
version: 1.25
version: 1.26
author: []
abstract: WSDL support for SOAP::Lite
license: artistic

View File

@@ -1568,6 +1568,6 @@ Replace whitespace by '@' in E-Mail addresses.
$LastChangedBy: kutterma $
$HeadURL: http://soap-wsdl.svn.sourceforge.net/svnroot/soap-wsdl/SOAP-WSDL/branches/1.21/lib/SOAP/WSDL.pm $
$Rev: 274 $
$Rev: 278 $
=cut

View File

@@ -21,7 +21,7 @@ my $data = { name => 'Mein Name',
my $dir = cwd;
# chomp /t/ to allow running the script from t/ directory
$dir=~s|/t/?||;
$dir=~s|/t/?$||;
my $t0 = [gettimeofday];

View File

@@ -34,7 +34,7 @@ my $data = {
my $dir= cwd;
$dir=~s/\/t\/?//;
$dir=~s/\/t\/?$//;
my $t0 = [gettimeofday];
ok( my $soap=SOAP::WSDL->new(wsdl => 'file:///'.$dir.'/t/acceptance/test.wsdl.xml',

View File

@@ -18,7 +18,7 @@ my $data = {name => 'Mein Name',
my $dir = cwd;
# chomp /t/ to allow running the script from t/ directory
$dir=~s|/t/?||;
$dir=~s|/t/?$||;
my $t0 = [gettimeofday];
ok( my $soap=SOAP::WSDL->new(wsdl => "file://$dir/t/acceptance/helloworld.asmx.xml",

View File

@@ -32,7 +32,7 @@ my $data = {
};
my $dir= cwd;
$dir=~s/\/t\/?//;
$dir=~s/\/t\/?$//;
# print $dir;
my $url = $dir . '/t/acceptance/test.wsdl.xml';