summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFernando Farfan <ffarfan@gmail.com>2015-08-10 11:07:39 -0600
committerFernando Farfan <ffarfan@gmail.com>2015-08-10 15:42:25 -0600
commit606729f9835c7725a5e046c6c0c13cad068c9e75 (patch)
tree12b036aec3d78d7bdf7090237a5366c62151d9df
parenta4be0df87a8a75fd5dfb3a185a7e07fe8520e95f (diff)
License-serving API recognizes Copyrighted content
We add a new type of license, "Copyrighted free use", to our license-serving API. This license is used by several images from Wikipedia. [endlessm/eos-sdk#3471]
-rw-r--r--endless/eoslicense.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/endless/eoslicense.c b/endless/eoslicense.c
index 48df9d3..7aff876 100644
--- a/endless/eoslicense.c
+++ b/endless/eoslicense.c
@@ -23,6 +23,7 @@ the documentation of EosApplication and to the two arrays below this one. */
gchar * const recognized_licenses[] = {
"Public domain",
"Owner permission",
+ "Copyrighted free use",
"CC0 1.0",
"CC BY 2.0",
"CC BY 3.0",
@@ -47,6 +48,7 @@ gchar * const recognized_licenses_display_names[] = {
contain any ampersands (&), less-than signs (<) or greater-than signs (>). */
N_("Public domain"),
N_("Owner permission"),
+ N_("Copyrighted free use"),
N_("CC0-1.0"),
N_("Creative Commons Attribution 2.0"),
N_("Creative Commons Attribution 3.0"),
@@ -68,6 +70,7 @@ correspondence between `recognized_licenses` and this array. */
static gchar * const recognized_licenses_filenames[] = {
NULL,
NULL,
+ NULL,
"publicdomain/CC0-1.0.html",
"creativecommons/CC-BY-2.0.html",
"creativecommons/CC-BY-3.0.html",