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 9AC1B20374 for ; Mon, 22 Apr 2019 01:49:06 +0000 (UTC) From: Eric Wong To: Subject: [PATCH 0/3] Earth Day changes! Date: Mon, 22 Apr 2019 01:49:03 +0000 Message-Id: <20190422014906.4253-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Since most users are on horrible GUI browsers which default to light backgrounds, implement the "dark216" color scheme which saves power on OLED and CRT displays. This still respects "prefers-color-scheme:light" on newer browsers, so users can burn their eyes out if they wish :P While we're at it, switch to perlpod for our own documentation since Perl5 and POD tooling is more common on most *nix systems than pandoc. Finally, update our documentation to avoid the term "mailing list" because centralized subscriber lists hurt forkability compared to an "archives first" approach to email. Eric Wong (3): add dark216 color scheme for power savings doc: switch to perlpod for documentation doc: update wording to avoid "mailing list" Documentation/.gitignore | 1 + Documentation/GNUmakefile | 77 ++++++++++++++------ Documentation/olddoc.1.pod | 21 ++++++ Documentation/olddoc.1.txt | 21 ------ Documentation/{olddoc.5.txt => olddoc.5.pod} | 19 ++--- Documentation/podtxt2html | 54 ++++++++++++++ GNUmakefile | 2 +- README | 27 ++++--- Rakefile | 2 +- lib/dark216.rb | 40 ++++++++++ lib/olddoc.rb | 3 +- lib/oldweb.rb | 1 + lib/oldweb/_head.rhtml | 6 +- 13 files changed, 202 insertions(+), 72 deletions(-) create mode 100644 Documentation/olddoc.1.pod delete mode 100644 Documentation/olddoc.1.txt rename Documentation/{olddoc.5.txt => olddoc.5.pod} (77%) create mode 100755 Documentation/podtxt2html create mode 100644 lib/dark216.rb -- EW