Message ID | 1390603593-27728-9-git-send-email-mcgrof@do-not-panic.com (mailing list archive) |
---|---|
State | Not Applicable, archived |
Headers | show |
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"
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 <mcgrof@do-not-panic.com> --- rel-html.py | 2 ++ 1 file changed, 2 insertions(+)