From: Andrew Engelbrecht Date: Mon, 27 Mar 2017 21:56:13 +0000 (-0400) Subject: added GFDL license to license list X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=4fdf57b476997c2ff71e160b644d0cfb5476eb14;p=mediagoblin-libreplanet.git added GFDL license to license list --- diff --git a/mediagoblin_libreplanet/__init__.py b/mediagoblin_libreplanet/__init__.py index 2a0de2c..62c1d3d 100644 --- a/mediagoblin_libreplanet/__init__.py +++ b/mediagoblin_libreplanet/__init__.py @@ -36,12 +36,17 @@ cc_by_sa_4 = License("CC BY-SA 4.0", cc_by_nd_4 = License("CC BY-ND 4.0", "Creative Commons Attribution-NoDerivatives 4.0 International", "https://creativecommons.org/licenses/by-nd/4.0/") +gfdl_1_3 = License("GFDL 1.3", + "GNU Free Documentation License 1.3", + "https://www.gnu.org/licenses/fdl-1.3.en.html") SORTED_LICENSES.insert(1, cc_by_4) SORTED_LICENSES.insert(2, cc_by_sa_4) SORTED_LICENSES.insert(3, cc_by_nd_4) +SORTED_LICENSES.insert(4, gfdl_1_3) SUPPORTED_LICENSES[cc_by_4.uri] = cc_by_4 SUPPORTED_LICENSES[cc_by_sa_4.uri] = cc_by_sa_4 SUPPORTED_LICENSES[cc_by_nd_4.uri] = cc_by_nd_4 +SUPPORTED_LICENSES[gfdl_1_3.uri] = gfdl_1_3 PLUGIN_DIR = os.path.dirname(__file__)