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 AC4E81FC96 for ; Tue, 29 Nov 2016 22:57:40 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH] note the source code is AGPL for cloning Date: Tue, 29 Nov 2016 22:57:40 +0000 Message-Id: <20161129225740.29469-1-e@80x24.org> List-Id: This should be adequate warning for folks who may be uncomfortable or uncertain about even possessing AGPL source code due to employer agreements and such. Disclaimer: I remain completely in favor of AGPL and strong copyleft, and am more than willing to risk my own future on it. However, I refuse to even nudge people into downloading AGPL source code if it presents any legal risk to them. --- README | 2 +- lib/PublicInbox/WwwStream.pm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README b/README index 3235275..150dbec 100644 --- a/README +++ b/README @@ -85,7 +85,7 @@ See https://public-inbox.org/INSTALL Hacking ------- -Source code is available via git: +AGPL source code is available via git: git clone https://public-inbox.org/ public-inbox git clone git://repo.or.cz/public-inbox diff --git a/lib/PublicInbox/WwwStream.pm b/lib/PublicInbox/WwwStream.pm index dfbcf41..12f5fa5 100644 --- a/lib/PublicInbox/WwwStream.pm +++ b/lib/PublicInbox/WwwStream.pm @@ -106,7 +106,7 @@ sub _html_end { '
'.join("\n\n",
 		$desc,
 		$urls,
-		'Code for this site: '.
+		'AGPL code for this site: '.
 		qq(git clone $url $PROJECT)
 	).'
'; } -- EW