r20780 - in /trunk/soap-lite: Changes MANIFEST META.yml debian/changelog lib/SOAP/Lite.pm lib/XMLRPC/Lite.pm t/SOAP/Serializer.t t/SOAP/Transport/HTTP/ t/XMLRPC/

tincho at users.alioth.debian.org tincho at users.alioth.debian.org
Fri Jun 6 17:31:23 UTC 2008


Author: tincho
Date: Fri Jun  6 17:31:23 2008
New Revision: 20780

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=20780
Log:
New upstream release.

Added:
    trunk/soap-lite/t/SOAP/Serializer.t
      - copied unchanged from r20778, branches/upstream/soap-lite/current/t/SOAP/Serializer.t
    trunk/soap-lite/t/SOAP/Transport/HTTP/
      - copied from r20778, branches/upstream/soap-lite/current/t/SOAP/Transport/HTTP/
    trunk/soap-lite/t/XMLRPC/
      - copied from r20778, branches/upstream/soap-lite/current/t/XMLRPC/
Modified:
    trunk/soap-lite/Changes
    trunk/soap-lite/MANIFEST
    trunk/soap-lite/META.yml
    trunk/soap-lite/debian/changelog
    trunk/soap-lite/lib/SOAP/Lite.pm
    trunk/soap-lite/lib/XMLRPC/Lite.pm

Modified: trunk/soap-lite/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/soap-lite/Changes?rev=20780&op=diff
==============================================================================
--- trunk/soap-lite/Changes (original)
+++ trunk/soap-lite/Changes Fri Jun  6 17:31:23 2008
@@ -1,7 +1,7 @@
 #
 # Revision history for Perl extension SOAP::Lite.
 #
-# $Id: Changes 250 2008-05-05 21:44:30Z kutterma $
+# $Id: Changes 253 2008-06-05 18:26:18Z kutterma $
 
 The contents of this file provides a change history for the SOAP::Lite
 Perl module. New features are designated with a '+' and bug fixes with
@@ -15,6 +15,9 @@
 -----------------------------------------------------------------------
 THIS RELEASE
 -----------------------------------------------------------------------
+0.710.06
+   ! #36477 SOAP::Lite Envelope not stripped down for XMLRPC
+   ! #36455 XMLRPC::Transport::HTTP::CGI generates extra params
 0.710.05
    ! got version number right, finally. Thanks to Graham Barr,
    Andreas J. Koenig and Matt S Trout (in alphabetical order) for support

Modified: trunk/soap-lite/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/soap-lite/MANIFEST?rev=20780&op=diff
==============================================================================
--- trunk/soap-lite/MANIFEST (original)
+++ trunk/soap-lite/MANIFEST Fri Jun  6 17:31:23 2008
@@ -206,6 +206,9 @@
 t/SOAP/Lite/Deserializer/XMLSchemaSOAP1_1.t
 t/SOAP/Lite/Deserializer/XMLSchemaSOAP1_2.t
 t/SOAP/Lite/Packager.t
+t/SOAP/Serializer.t
+t/SOAP/Transport/HTTP/CGI.t
+t/SOAP/Transport/HTTP/CGI/test_server.pl
 t/SOAP/Schema/WSDL.t
 t/SOAP/Transport/FTP.t
 t/SOAP/Transport/HTTP.t
@@ -216,5 +219,6 @@
 t/SOAP/Transport/MQ.t
 t/SOAP/Transport/POP3.t
 t/TEST.pl
+t/XMLRPC/Lite.t
 t/XML/Parser/adam.xml
 t/XML/Parser/Lite.t

Modified: trunk/soap-lite/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/soap-lite/META.yml?rev=20780&op=diff
==============================================================================
--- trunk/soap-lite/META.yml (original)
+++ trunk/soap-lite/META.yml Fri Jun  6 17:31:23 2008
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:                SOAP-Lite
-version:             0.710.05
+version:             0.710.06
 abstract:            ~
 license:             ~
 generated_by:        ExtUtils::MakeMaker version 6.36

Modified: trunk/soap-lite/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/soap-lite/debian/changelog?rev=20780&op=diff
==============================================================================
--- trunk/soap-lite/debian/changelog (original)
+++ trunk/soap-lite/debian/changelog Fri Jun  6 17:31:23 2008
@@ -1,3 +1,9 @@
+soap-lite (0.710.06-1) UNRELEASED; urgency=low
+
+  * New upstream release.
+
+ -- Martín Ferrari <tincho at debian.org>  Fri, 06 Jun 2008 12:22:27 -0300
+
 soap-lite (0.710.05-1) unstable; urgency=low
 
   [ Martín Ferrari ]

Modified: trunk/soap-lite/lib/SOAP/Lite.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/soap-lite/lib/SOAP/Lite.pm?rev=20780&op=diff
==============================================================================
--- trunk/soap-lite/lib/SOAP/Lite.pm (original)
+++ trunk/soap-lite/lib/SOAP/Lite.pm Fri Jun  6 17:31:23 2008
@@ -4,7 +4,7 @@
 # SOAP::Lite is free software; you can redistribute it
 # and/or modify it under the same terms as Perl itself.
 #
-# $Id: Lite.pm 249 2008-05-05 20:35:05Z kutterma $
+# $Id: Lite.pm 254 2008-06-05 18:43:57Z kutterma $
 #
 # ======================================================================
 
@@ -19,7 +19,7 @@
 use 5.005;
 use strict;
 use vars qw($VERSION);
-use version; $VERSION = qv('0.710.05');
+use version; $VERSION = qv('0.710.06');
 # ======================================================================
 
 package SOAP::XMLSchemaApacheSOAP::Deserializer;

Modified: trunk/soap-lite/lib/XMLRPC/Lite.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/soap-lite/lib/XMLRPC/Lite.pm?rev=20780&op=diff
==============================================================================
--- trunk/soap-lite/lib/XMLRPC/Lite.pm (original)
+++ trunk/soap-lite/lib/XMLRPC/Lite.pm Fri Jun  6 17:31:23 2008
@@ -4,7 +4,7 @@
 # SOAP::Lite is free software; you can redistribute it
 # and/or modify it under the same terms as Perl itself.
 #
-# $Id: Lite.pm 249 2008-05-05 20:35:05Z kutterma $
+# $Id: Lite.pm 254 2008-06-05 18:43:57Z kutterma $
 #
 # ======================================================================
 
@@ -13,7 +13,7 @@
 use SOAP::Lite;
 use strict;
 use vars qw($VERSION);
-use version; $VERSION = qv('0.710.05');
+use version; $VERSION = qv('0.710.06');
 
 # ======================================================================
 
@@ -71,12 +71,16 @@
 
     my $body;
     if ($type eq 'response') {
+        # shift off method name to make XMLRPT happy
+        my $method = shift
+            or die "Unspecified method for XMLRPC call\n";
         $body = XMLRPC::Data->name( methodResponse => \XMLRPC::Data->value(
                 XMLRPC::Data->type(params => [@_])
             )
         );
     }
     elsif ($type eq 'method') {
+        # shift off method name to make XMLRPT happy
         my $method = shift
             or die "Unspecified method for XMLRPC call\n";
         $body = XMLRPC::Data->name( methodCall => \XMLRPC::Data->value(




More information about the Pkg-perl-cvs-commits mailing list