From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 6064A2141F for ; Thu, 31 Jan 2019 10:51:55 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 6/6] doc: remove completed TODO items Date: Thu, 31 Jan 2019 10:51:53 +0000 Message-Id: <20190131105153.25272-7-e@80x24.org> In-Reply-To: <20190131105153.25272-1-e@80x24.org> References: <20190131105153.25272-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: --- TODO | 5 ----- lib/PublicInbox/ViewVCS.pm | 1 - 2 files changed, 6 deletions(-) diff --git a/TODO b/TODO index 57ea8c4..05e2640 100644 --- a/TODO +++ b/TODO @@ -29,8 +29,6 @@ all need to be considered for everything we introduce) * 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, @@ -78,9 +76,6 @@ all need to be considered for everything we introduce) * 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 * Read-only WebDAV interface to the git repo so it can be mounted diff --git a/lib/PublicInbox/ViewVCS.pm b/lib/PublicInbox/ViewVCS.pm index 1e8c31f..eecc51e 100644 --- a/lib/PublicInbox/ViewVCS.pm +++ b/lib/PublicInbox/ViewVCS.pm @@ -96,7 +96,6 @@ sub solve_result { 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); -- EW