about summary refs log tree commit homepage
path: root/TODO
DateCommit message (Collapse)
2019-05-05DS: workaround IO::Kqueue EINTR (mis-)handling
IO::Kqueue seems unmaintained, so workaround a long-standing bug where it falls over on signals: https://rt.cpan.org/Ticket/Display.html?id=116615
2019-05-05listener: use EPOLLEXCLUSIVE for listen sockets
Since our listen sockets are non-blocking and we may run multiple httpd|nntpd processes; we need a way to avoid thundering herds when there are multiple httpd|nntpd worker processes. EPOLLEXCLUSIVE was added just for that in Linux 4.5
2019-05-04bundle Danga::Socket and Sys::Syscall
These modules are unmaintained upstream at the moment, but I'll be able to help with the intended maintainer once/if CPAN ownership is transferred. OTOH, we've been waiting for that transfer for several years, now... Changes I intend to make: * EPOLLEXCLUSIVE for Linux * remove unused fields wasting memory * kqueue bugfixes e.g. https://rt.cpan.org/Ticket/Display.html?id=116615 * accept4 support And some lower priority experiments: * switch to EV_ONESHOT / EPOLLONESHOT (incompatible changes) * nginx-style buffering to tmpfile instead of string array * sendfile off tmpfile buffers * io_uring maybe?
2019-04-17TODO: add an item for hooks support
and add a note for grokmirror support/integration, too
2019-02-05TODO: add item for "scraper" importers
The git-users mailing list is on Google Groups with obfuscated addresses and censored archives. We should allow users to import them soon, as obfuscated/censored archives are better than not having archives at all when Google decides to shut down yet-another-service. There's also some mangling that (most) instances of Mailman do (e.g. cgit), but being able to follow such groups over NNTP and use our search functionality is still useful and better than what typical Mailman installations provide.
2019-02-04TODO: support migration to v2 without breaking v1 "git fetch"
I'd like to move https://public-inbox.org/git/ to v2; but cronjobs using "git fetch" to following should not break.
2019-01-31doc: remove completed TODO items
2019-01-20$INBOX/_/text/color/ and sample user-side CSS
Since we now support more CSS classes for coloring, give this feature more visibility.
2019-01-01TODO: avoid mentioning untrustworthy browser extensions
Old and new versions of Mozilla-based browsers seem to support userContent.css just fine. cf. https://www-archive.mozilla.org/unix/customizing.html#usercss http://kb.mozillazine.org/index.php?title=UserContent.css
2019-01-01TODO: support integration with cgit/gitweb/etc...
We support searching on blob identifiers for a reason :>
2018-12-30TODO: add a note for exposing a targeted reindexing API
2018-12-29TODO: add note for "IMAP IDLE"-like long-polling "git fetch"
2018-12-18TODO: add a note for davfs2 Range: support
And maybe I or somebody else interested will implement it, since fusedav is abandoned upstream and removed from Debian testing: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=840388 Yes, I have fusedav patches at https://bogomips.org/fusedav.git as noted in the above bug report, but I think davfs2 has more momentum at the moment.
2018-04-23TODO: add EPOLLEXCLUSIVE item
Threads are generally discouraged in Perl5, so I won't be using a dedicated blocking accept4() thread like I would in other languages.
2018-04-19TODO: a few more updates
Mainly, v2 stuff is done
2018-01-16TODO: notes about v2 format for giant archives
Inspired by interest in LKML archival: https://public-inbox.org/meta/d5546b24-5840-4ae9-d25b-5e3e737ed73b@linuxfoundation.org
2017-02-07TODO: several updates
Always plenty to do while working on this...
2016-12-17atom: implement message threading per RFC 4685
This will allows certain feed readers to render a message thread as described in <https://www.jwz.org/doc/threading.html>. Feed readers with knowledge of of RFC 4685 are unknown to us at this time, but perhaps this will encourage future implementations. Existing feed readers I've tested (newsbeuter, feed2imap) seem to ignore these tags gracefully without degradation.
2016-12-14TODO: note IO::KQueue for the ticket
Do not require users to have network access to know what the link refers to.
2016-09-09TODO: updates for done items
The existing string -> number date range Xapian query is good enough, and having too much flexibility is probably bad for caching (as well as increasing our attack surface, because parsing queries is tricky). Tags-as-skiplists are probably not worth the effort given Xapian, and we may have to import old messages after-the-fact, anyways, and message delivery for mirrors is never orderly. Other items are all done and need to be maintained (like the search engine docs for the mairix-compatibility features that just got pushed out)
2016-08-14TODO: updates based on git@vger mirror experience
Plenty more to do!
2016-07-02TODO: clarify streaming Email::MIME replacement
I bet there's a billion other improvements to be made elsewhere.
2016-07-01TODO: update documentation for performance items
2016-06-30www: implement hybrid flat+thread conversation view
This should be more accessible to readers on narrow terminals (or giant fonts) while providing a chronological view which is also aware of message threading relationships.
2016-06-25TODO: add a few Xapian-related items
"git cat-file --batch" seems expensive for big repos and loading 70K+ tree objects in git isn't all that fast. Ideas are cheap, time, code, and testing are not :P
2016-06-17TODO: remove cookies for colors
It would be too much of a burden for caching system when user-supplied CSS is more powerful.
2016-05-23TODO: update linkification notes
Some readers will want to use "HTTPS Everywhere" conveniently; and I will support it.
2016-05-14import ssoma-replay example script I've been using
Unfortunately, most users still prefer their mail delivered over SMTP; so we'll at least document mlmmj integration for now until we can popularize pull-based reading over POP3/NNTP/ssoma.
2016-04-29TODO: add item for .mailmap support
Email addresses get out-of-date, so make sure they're mapped properly for future readers. git and linux-kernel already have an established convention for this, so we will follow it.
2016-04-25TODO: various updates
2016-01-06TODO: add a few more items
Sometimes I contribute to projects with centralization-inducing things like reply-to-list and bug trackers. I dislike those things myself, but most of the time I can deal with them... for now.
2016-01-04misc doc updates
Strongly emphasize decentralization, as that was actually the main impetus for my interest in git.
2015-11-18TODO: updates for done stuff, and add item for message threading
Of course, we need to figure out if RFC 4685 is supported anywhere, first.
2014-10-05TODO: add mlmmj integration item
Because some folks will want to receive email.
2014-10-05TODO: add a placeholder for search
While we're at it, fix up a typo.
2014-05-04add various TODO items
Screen space is precious, and we do not need it in the abbreviated view.
2014-04-26huge refactor of encoding handling
Hopefully this simplifies and corrects our usage of Perl encoding APIs.
2014-04-22fix quoted URL generation in feeds
While we're at it, make sure strange characters are escaped properly in Message-IDs. We'll need tests for all this behavior.