r25673 - in /branches/upstream/libhttp-server-simple-perl/current: Changes SIGNATURE lib/HTTP/Server/Simple.pm

ansgar-guest at users.alioth.debian.org ansgar-guest at users.alioth.debian.org
Fri Sep 26 20:47:39 UTC 2008


Author: ansgar-guest
Date: Fri Sep 26 20:47:36 2008
New Revision: 25673

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=25673
Log:
[svn-upgrade] Integrating new upstream version, libhttp-server-simple-perl (0.35)

Modified:
    branches/upstream/libhttp-server-simple-perl/current/Changes
    branches/upstream/libhttp-server-simple-perl/current/SIGNATURE
    branches/upstream/libhttp-server-simple-perl/current/lib/HTTP/Server/Simple.pm

Modified: branches/upstream/libhttp-server-simple-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libhttp-server-simple-perl/current/Changes?rev=25673&op=diff
==============================================================================
--- branches/upstream/libhttp-server-simple-perl/current/Changes (original)
+++ branches/upstream/libhttp-server-simple-perl/current/Changes Fri Sep 26 20:47:36 2008
@@ -1,3 +1,7 @@
+0.35
+
+* Pass arguments to ->run through to Net::Server->run
+
 0.34
 
 * Call setup_environment if a Net::Server is being used, for consistency.

Modified: branches/upstream/libhttp-server-simple-perl/current/SIGNATURE
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libhttp-server-simple-perl/current/SIGNATURE?rev=25673&op=diff
==============================================================================
--- branches/upstream/libhttp-server-simple-perl/current/SIGNATURE (original)
+++ branches/upstream/libhttp-server-simple-perl/current/SIGNATURE Fri Sep 26 20:47:36 2008
@@ -14,7 +14,7 @@
 -----BEGIN PGP SIGNED MESSAGE-----
 Hash: SHA1
 
-SHA1 9a45ee78f36f1167cfe442dcf9206cba941ebdda Changes
+SHA1 7b03368caeaf04a1584735e0fe874d4008fc84e6 Changes
 SHA1 0ac508c50476dcc2bf8fe3094cb341425291e1ee MANIFEST
 SHA1 7812a1c898acbf76fcccb52068b2a9c23cb86bbf META.yml
 SHA1 3a02ba613b11b07dd1fa97e2a6b962ee3e039c98 Makefile.PL
@@ -28,7 +28,7 @@
 SHA1 7d3be9b158e37b2b2c22084740099955623b1d56 inc/Module/Install/Metadata.pm
 SHA1 0a8b66180229ba2f9deaea1fedd0aacf7a7ace6b inc/Module/Install/Win32.pm
 SHA1 d3352eb33fe43a5f3ead513f645224fe34d73bc9 inc/Module/Install/WriteAll.pm
-SHA1 26a3441bde56ccec42b282612bee896c928ddd94 lib/HTTP/Server/Simple.pm
+SHA1 25a12297b6480dc17861d2c294dd8357732d6350 lib/HTTP/Server/Simple.pm
 SHA1 40f24374f2b5845a3025e14ca4b91bd58298de03 lib/HTTP/Server/Simple/CGI.pm
 SHA1 99ec6998826486bbc5775b222408e6baf40dc885 lib/HTTP/Server/Simple/CGI/Environment.pm
 SHA1 db064af54cab345a71daec576e32e64b8fb1033d t/00smoke.t
@@ -37,9 +37,9 @@
 SHA1 a7024d0d8e7b80d26f75a3551a1406a797b382f8 t/03podcoverage.t
 SHA1 e19b6afffd4ced1f89832080822686f49a155688 t/04cgi.t
 -----BEGIN PGP SIGNATURE-----
-Version: GnuPG v1.4.8 (Darwin)
+Version: GnuPG v2.0.9 (GNU/Linux)
 
-iD8DBQFITfvoEi9d9xCOQEYRAuzMAJ9LvWoC67trNPv/lJgdLWmOKh+uXwCgr/7E
-wOpC3KXbIoS9HMFCHBaRQdc=
-=jcKb
+iEYEARECAAYFAkjb9vEACgkQMflWJZZAbqBJfQCfanhxRlw+b1pXLDn5kG1Dztqs
+hxEAoKrQOkRZMbMmtf5otR/k5WuEgyFl
+=XzP2
 -----END PGP SIGNATURE-----

Modified: branches/upstream/libhttp-server-simple-perl/current/lib/HTTP/Server/Simple.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libhttp-server-simple-perl/current/lib/HTTP/Server/Simple.pm?rev=25673&op=diff
==============================================================================
--- branches/upstream/libhttp-server-simple-perl/current/lib/HTTP/Server/Simple.pm (original)
+++ branches/upstream/libhttp-server-simple-perl/current/lib/HTTP/Server/Simple.pm Fri Sep 26 20:47:36 2008
@@ -8,7 +8,7 @@
 use URI::Escape;
 
 use vars qw($VERSION $bad_request_doc);
-$VERSION = '0.34';
+$VERSION = '0.35';
 
 
 =head1 NAME
@@ -224,7 +224,7 @@
         POSIX::setsid()
             or die "Can't start a new session: $!";
     }
-    $self->run();
+    $self->run(@_);
 }
 
 =head2 run
@@ -273,7 +273,7 @@
 
     local $SIG{HUP} = sub { $SERVER_SHOULD_RUN = 0; };
 
-    $pkg->run( port => $self->port );
+    $pkg->run( port => $self->port, @_ );
 }
 
 =head2 net_server




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