about summary refs log tree commit homepage
path: root/lib
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2016-07-01 01:03:31 +0000
committerEric Wong <e@80x24.org>2016-07-01 01:11:41 +0000
commit79bf257cbc4e188992f540d6b4ae1bd5cbcf26ee (patch)
tree1b89612dc673d58b363f25c2d038f0b796cf705b /lib
parentbd3ed82913cd065636525a5dd8bab9edcb3e3cb1 (diff)
downloadpublic-inbox-79bf257cbc4e188992f540d6b4ae1bd5cbcf26ee.tar.gz
Might as well eat our own dogfood...
Diffstat (limited to 'lib')
-rw-r--r--lib/PublicInbox/Unsubscribe.pm2
-rw-r--r--lib/PublicInbox/WwwStream.pm6
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/PublicInbox/Unsubscribe.pm b/lib/PublicInbox/Unsubscribe.pm
index 79234aa1..46d5d8d7 100644
--- a/lib/PublicInbox/Unsubscribe.pm
+++ b/lib/PublicInbox/Unsubscribe.pm
@@ -12,7 +12,7 @@ use warnings;
 use Crypt::CBC;
 use Plack::Util;
 use MIME::Base64 qw(decode_base64url);
-my $CODE_URL = 'git://80x24.org/public-inbox.git';
+my $CODE_URL = 'https://public-inbox.org/public-inbox.git';
 my @CT_HTML = ('Content-Type', 'text/html; charset=UTF-8');
 
 sub new {
diff --git a/lib/PublicInbox/WwwStream.pm b/lib/PublicInbox/WwwStream.pm
index d9abb5ab..97a6dc78 100644
--- a/lib/PublicInbox/WwwStream.pm
+++ b/lib/PublicInbox/WwwStream.pm
@@ -7,7 +7,7 @@ use strict;
 use warnings;
 use PublicInbox::Hval qw(ascii_html);
 use URI;
-use constant PI_URL => 'https://public-inbox.org/README.html';
+use constant PI_URL => 'https://public-inbox.org/public-inbox.git';
 
 sub new {
         my ($class, $ctx, $cb) = @_;
@@ -86,8 +86,8 @@ sub _html_end {
         '<pre>'.join("\n",
                 '- ' . $desc,
                 $urls,
-                'served with software from public-inbox: '
-                        ."<a\nhref=\"$url\">$url</a>",
+                'Archived served using code from public-inbox:',
+                "\tgit clone $url",
         ).'</pre></body></html>';
 }