TODO | 5 ----- lib/PublicInbox/ViewVCS.pm | 1 - diff --git a/TODO b/TODO index 57ea8c46c42f7a20c2e8f54983fc176088559c78..05e264068fe3543394b2ec5339664dc52aa17c24 100644 --- a/TODO +++ b/TODO @@ -29,8 +29,6 @@ * Support more of RFC 3977 (NNTP) * Combined "super server" for NNTP/HTTP/POP3 to reduce memory overhead -* Optional reply-to-nobody for dead lists. - * Configurable linkification for per-inbox shorthands: "$gmane/123456" could be configured to expand to the appropriate link pointing to the gmane.org list archives, @@ -77,9 +75,6 @@ * more and better test cases (use git fast-import to speed up creation) * large mbox/Maildir/MH/NNTP spool import (see PublicInbox::Import) - -* Optionally allow indexing Xapian without positional information to - save space (but prevents "quoted phrase" searching). * Allow NNTP and more of PSGI code to work without Xapian diff --git a/lib/PublicInbox/ViewVCS.pm b/lib/PublicInbox/ViewVCS.pm index 1e8c31f2634adad8ebdaf6c6ae42dc1116054763..eecc51e673b2aad8ad8fbfbca21326ed895be7b6 100644 --- a/lib/PublicInbox/ViewVCS.pm +++ b/lib/PublicInbox/ViewVCS.pm @@ -96,7 +96,6 @@ my $path = to_filename($di->{path_b} || $hints->{path_b} || 'blob'); my $raw_link = "(raw)"; if ($size > $max_size) { return stream_large_blob($ctx, $res, \$log, $fn) if defined $fn; - # TODO: stream the raw file if it's gigantic, at least $log = "
Too big to show, download available\n" .
 			"$oid $type $size bytes $raw_link
" . $log; return html_page($ctx, 500, \$log);