From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) 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.0 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 7F4571F859; Thu, 18 Aug 2016 09:51:50 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Cc: Philip Oakley Subject: [PATCH 0/2] begin online help for each public-inbox Date: Thu, 18 Aug 2016 09:51:48 +0000 Message-Id: <20160818095150.17118-1-e@80x24.org> List-Id: I expect this will be tweaked and edited heavily in coming weeks, but this at least a start. I'll be keeping everything within the constraints of a plain-text email, so no cheating with styling or #fragment tags, and definitely no deceptive hiding of URLs to external resources. Fortunately, deploying changes are cheap and relatively risk-free with zero user-visible downtime (which also needs to be documented :x) Thanks to Philip Oakley at the git list for reminding me the design_www document is actually helpful to users, not just hackers :) https://public-inbox.org/git/D5A2E231FFE74D1C891A1653E1C2D797@PhilipOakley/ Eric Wong (2): www: implement generic help text searchview: link to internal help text MANIFEST | 2 + lib/PublicInbox/Search.pm | 38 ++++++++ lib/PublicInbox/SearchView.pm | 5 +- lib/PublicInbox/WWW.pm | 14 +++ lib/PublicInbox/WwwStream.pm | 4 +- lib/PublicInbox/WwwText.pm | 201 ++++++++++++++++++++++++++++++++++++++++++ t/psgi_text.t | 39 ++++++++ 7 files changed, 299 insertions(+), 4 deletions(-) create mode 100644 lib/PublicInbox/WwwText.pm create mode 100644 t/psgi_text.t -- EW