From patchwork Fri Jan 24 22:46:30 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Luis R. Rodriguez" X-Patchwork-Id: 3536541 Return-Path: X-Original-To: patchwork-linux-wireless@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id B60EB9F377 for ; Fri, 24 Jan 2014 22:47:30 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 22E022015D for ; Fri, 24 Jan 2014 22:47:26 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 76BCD2012E for ; Fri, 24 Jan 2014 22:47:21 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752871AbaAXWrR (ORCPT ); Fri, 24 Jan 2014 17:47:17 -0500 Received: from mail-pd0-f178.google.com ([209.85.192.178]:46832 "EHLO mail-pd0-f178.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752797AbaAXWrQ (ORCPT ); Fri, 24 Jan 2014 17:47:16 -0500 Received: by mail-pd0-f178.google.com with SMTP id y13so3627978pdi.37 for ; Fri, 24 Jan 2014 14:47:15 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:in-reply-to:references; bh=TxTnjdZ9UDvUjE3gJZadDnw+JTzIfM5NwQw8ZwLesN0=; b=0BJbgcQi59Txgw8oAG8pi5E8Zn0GRiQRPnz0Xq0dTTMvYMNCwkufwaDgD2nn+rmJSg dygrWokqv5hQDfI29gE30T7r+equlT2KlSea9yevREBjqVpObr3vEAziYSKvv0pOYgp2 AfZTnar+bXH0I0U9+ULCRuuVZ5Xm9K6TbrRFFcu8gfg/viy1KxIskv61Muz3zi4XND+6 3kES8LMYRSTYT5UFUISy73XirxeWGqOZT4zwJFH7GxoFtaKnkyf7e5IvlqQPMF7zDUPU CD4BMIQExDZhe0u0sbHhoYQ6CyfhV9cy/GJJ85CpCWJjMNUSoI9VeW2jXio5JlJdGEm8 X0KA== X-Received: by 10.66.224.165 with SMTP id rd5mr16870621pac.119.1390603635694; Fri, 24 Jan 2014 14:47:15 -0800 (PST) Received: from mcgrof@gmail.com (c-24-7-61-223.hsd1.ca.comcast.net. [24.7.61.223]) by mx.google.com with ESMTPSA id sy10sm17246848pac.15.2014.01.24.14.47.12 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Fri, 24 Jan 2014 14:47:14 -0800 (PST) Received: by mcgrof@gmail.com (sSMTP sendmail emulation); Fri, 24 Jan 2014 14:47:11 -0800 From: "Luis R. Rodriguez" To: linux-wireless@vger.kernel.org Cc: "Luis R. Rodriguez" Subject: [PATCH 08/11] rel-html: add copyleft-next URL reference Date: Fri, 24 Jan 2014 14:46:30 -0800 Message-Id: <1390603593-27728-9-git-send-email-mcgrof@do-not-panic.com> X-Mailer: git-send-email 1.8.5.2 In-Reply-To: <1390603593-27728-1-git-send-email-mcgrof@do-not-panic.com> References: <1390603593-27728-1-git-send-email-mcgrof@do-not-panic.com> Sender: linux-wireless-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org X-Spam-Status: No, score=-7.4 required=5.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,RP_MATCHES_RCVD,T_DKIM_INVALID,UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP This lets us allow projects to specify the copyleft-next license and point to the license's home page. As per Richard this license is definitely ready to be used by projects. Signed-off-by: Luis R. Rodriguez --- rel-html.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rel-html.py b/rel-html.py index 95d4877..0a48ea0 100755 --- a/rel-html.py +++ b/rel-html.py @@ -1082,6 +1082,8 @@ def license_url(license): return "http://opensource.org/licenses/ISC" elif (license == 'AGPL'): return "http://www.gnu.org/licenses/agpl-3.0.html" + elif (license == 'copyleft-next'): + return "http://copyleft-next.org/" else: return "http://opensource.org/licenses/alphabetical"