From: mental Date: Sun, 24 Jun 2007 17:17:14 +0000 (+0000) Subject: merge OpenFont license support X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=3a276291b26699d02bff0a1e1213e63ef35b4347;p=inkscape.git merge OpenFont license support --- diff --git a/src/dialogs/rdf.cpp b/src/dialogs/rdf.cpp index e75dc1e6f..a145e0834 100644 --- a/src/dialogs/rdf.cpp +++ b/src/dialogs/rdf.cpp @@ -164,6 +164,19 @@ struct rdf_double_t rdf_license_freeart [] = { { NULL, NULL } }; +struct rdf_double_t rdf_license_ofl [] = { + { "cc:permits", "http://scripts.sil.org/pub/OFL/Reproduction", }, + { "cc:permits", "http://scripts.sil.org/pub/OFL/Distribution", }, + { "cc:permits", "http://scripts.sil.org/pub/OFL/Embedding", }, + { "cc:permits", "http://scripts.sil.org/pub/OFL/DerivativeWorks", }, + { "cc:requires", "http://scripts.sil.org/pub/OFL/Notice", }, + { "cc:requires", "http://scripts.sil.org/pub/OFL/Attribution", }, + { "cc:requires", "http://scripts.sil.org/pub/OFL/ShareAlike", }, + { "cc:requires", "http://scripts.sil.org/pub/OFL/DerivativeRenaming", }, + { "cc:requires", "http://scripts.sil.org/pub/OFL/BundlingWhenSelling", }, + { NULL, NULL } +}; + struct rdf_license_t rdf_licenses [] = { { N_("CC Attribution"), "http://creativecommons.org/licenses/by/3.0/", @@ -205,6 +218,11 @@ struct rdf_license_t rdf_licenses [] = { rdf_license_freeart, }, + { N_("Open Font License"), + "http://scripts.sil.org/OFL", + rdf_license_ofl, + }, + { NULL, NULL, rdf_license_empty, } };