From 21f5b7a8bcd942b19475c1c0c265f39dfdf93608 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Sat, 3 Dec 2016 00:24:05 +0000 Subject: wwwstream: improve documentation and variable naming Hopefully this makes the code more readable for newbies. --- lib/PublicInbox/WwwStream.pm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'lib/PublicInbox/WwwStream.pm') diff --git a/lib/PublicInbox/WwwStream.pm b/lib/PublicInbox/WwwStream.pm index 12f5fa57..01f7b31b 100644 --- a/lib/PublicInbox/WwwStream.pm +++ b/lib/PublicInbox/WwwStream.pm @@ -12,6 +12,7 @@ our $TOR2WEB_URL = 'https://www.tor2web.org/'; our $CODE_URL = 'https://public-inbox.org/'; our $PROJECT = 'public-inbox'; +# noop for HTTP.pm (and any other PSGI servers) sub close {} sub new { @@ -111,14 +112,15 @@ sub _html_end { ).''; } +# callback for HTTP.pm (and any other PSGI servers) sub getline { my ($self) = @_; my $nr = $self->{nr}++; return _html_top($self) if $nr == 0; - if (my $mid = $self->{cb}) { # middle - $mid = $mid->($nr, $self->{ctx}) and return $mid; + if (my $middle = $self->{cb}) { + $middle = $middle->($nr, $self->{ctx}) and return $middle; } delete $self->{cb} ? _html_end($self) : undef; -- cgit v1.2.3-24-ge0c7