about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2020-09-09 21:23:24 +0000
committerEric Wong <e@80x24.org>2020-09-10 19:45:18 +0000
commitd540575bf64e4de1512b4bf5ad8aa18247828c27 (patch)
tree03dd777cdecf901454fbab638107b5d1cf19eb11
parent305d728977def1df9ab57778f9cad9dd834ce73d (diff)
downloadpublic-inbox-d540575bf64e4de1512b4bf5ad8aa18247828c27.tar.gz
The `solver' feature is not very obvious, give potential
users a hint about it.
-rw-r--r--lib/PublicInbox/WwwText.pm6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/PublicInbox/WwwText.pm b/lib/PublicInbox/WwwText.pm
index a691e2d8..81c0ee4a 100644
--- a/lib/PublicInbox/WwwText.pm
+++ b/lib/PublicInbox/WwwText.pm
@@ -181,7 +181,13 @@ EOF
         # and drop the original structure
         if (defined(my $cr = $ibx->{coderepo})) {
                 $$txt .= "\tcoderepo = $_\n" for @$cr;
+                $$txt .= <<'EOF';
 
+; `coderepo' entries allows blob reconstruction via patch emails if
+; the inbox is indexed with Xapian.  `@@ <from-range> <to-range> @@'
+; line number ranges in `[PATCH]' emails link to /$INBOX_NAME/$OID/s/,
+; an HTTP endpoint which reconstructs git blobs via git-apply(1).
+EOF
                 my $pi_config = $ctx->{www}->{pi_config};
                 for my $cr_name (@$cr) {
                         my $urls = $pi_config->{"coderepo.$cr_name.cgiturl"};