r69070 - in /branches/upstream/starman/current: Changes META.yml bin/starman lib/Starman.pm lib/Starman/Server.pm

ghedo-guest at users.alioth.debian.org ghedo-guest at users.alioth.debian.org
Sat Feb 19 13:25:17 UTC 2011


Author: ghedo-guest
Date: Sat Feb 19 13:24:51 2011
New Revision: 69070

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=69070
Log:
[svn-upgrade] new version starman (0.2008)

Modified:
    branches/upstream/starman/current/Changes
    branches/upstream/starman/current/META.yml
    branches/upstream/starman/current/bin/starman
    branches/upstream/starman/current/lib/Starman.pm
    branches/upstream/starman/current/lib/Starman/Server.pm

Modified: branches/upstream/starman/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/starman/current/Changes?rev=69070&op=diff
==============================================================================
--- branches/upstream/starman/current/Changes (original)
+++ branches/upstream/starman/current/Changes Sat Feb 19 13:24:51 2011
@@ -1,4 +1,8 @@
 Revision history for Perl extension Starman
+
+0.2008  Mon Feb 14 17:19:20 PST 2011
+        - Documented that -E is automatically set to 'deployment' RT:61517 (timbunce)
+        - Check the defined-ness of the input buffer to suppress warnings RT:60007
 
 0.2007 Thu Sep 30 14:09:00 PDT 2010
         - Fixed a bug where Date header can be duplicate if the app generates one (spleenjack)

Modified: branches/upstream/starman/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/starman/current/META.yml?rev=69070&op=diff
==============================================================================
--- branches/upstream/starman/current/META.yml (original)
+++ branches/upstream/starman/current/META.yml Sat Feb 19 13:24:51 2011
@@ -34,4 +34,4 @@
 resources:
   license: http://dev.perl.org/licenses/
   repository: git://github.com/miyagawa/Starman.git
-version: 0.2007
+version: 0.2008

Modified: branches/upstream/starman/current/bin/starman
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/starman/current/bin/starman?rev=69070&op=diff
==============================================================================
--- branches/upstream/starman/current/bin/starman (original)
+++ branches/upstream/starman/current/bin/starman Sat Feb 19 13:24:51 2011
@@ -162,6 +162,8 @@
 
 See C<plackup -h> for more options.
 
+C<starman> command automatically sets the environment (C<-E>) to the value of I<deployment>.
+
 =head1 SEE ALSO
 
 L<Starman>

Modified: branches/upstream/starman/current/lib/Starman.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/starman/current/lib/Starman.pm?rev=69070&op=diff
==============================================================================
--- branches/upstream/starman/current/lib/Starman.pm (original)
+++ branches/upstream/starman/current/lib/Starman.pm Sat Feb 19 13:24:51 2011
@@ -2,7 +2,7 @@
 
 use strict;
 use 5.008_001;
-our $VERSION = '0.2007';
+our $VERSION = '0.2008';
 
 1;
 __END__

Modified: branches/upstream/starman/current/lib/Starman/Server.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/starman/current/lib/Starman/Server.pm?rev=69070&op=diff
==============================================================================
--- branches/upstream/starman/current/lib/Starman/Server.pm (original)
+++ branches/upstream/starman/current/lib/Starman/Server.pm Sat Feb 19 13:24:51 2011
@@ -269,7 +269,7 @@
             # Do we have a full header in the buffer?
             # This is before sysread so we don't read if we have a pipelined request
             # waiting in the buffer
-            last if $self->{client}->{inputbuf} =~ /$CRLF$CRLF/s;
+            last if defined $self->{client}->{inputbuf} && $self->{client}->{inputbuf} =~ /$CRLF$CRLF/s;
 
             # If not, read some data
             my $read = sysread $self->{server}->{client}, my $buf, CHUNKSIZE;




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