summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMenTaLguY <mental@rydia.net>2007-06-24 17:17:14 +0000
committermental <mental@users.sourceforge.net>2007-06-24 17:17:14 +0000
commit9c2b6132e006466c2be7b3b6f1b58f2d1a43977b (patch)
tree04426fe68015a0a7f0dc6136143efc8dc1fa0069 /src
parentFix cast causing compile error on x86-64 (diff)
downloadinkscape-9c2b6132e006466c2be7b3b6f1b58f2d1a43977b.tar.gz
inkscape-9c2b6132e006466c2be7b3b6f1b58f2d1a43977b.zip
merge OpenFont license support
(bzr r3094)
Diffstat (limited to 'src')
-rw-r--r--src/dialogs/rdf.cpp18
1 files changed, 18 insertions, 0 deletions
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, }
};