xref: /dokuwiki/conf/license.php (revision 5dc95dfd3f2f5f574035765b6a67f04174bb44bc)
1066fee30SAndreas Gohr<?php
2066fee30SAndreas Gohr/**
3066fee30SAndreas Gohr * This file defines multiple available licenses you can license your
4066fee30SAndreas Gohr * wiki contents under. Do not change this file, but create a
5066fee30SAndreas Gohr * license.local.php instead.
6066fee30SAndreas Gohr */
7066fee30SAndreas Gohr
8003d21aeSTanguy Ortolo$license['cc-zero'] = array(
9003d21aeSTanguy Ortolo    'name' => 'CC0 1.0 Universal',
10*5dc95dfdSPetr Kajzar    'url'  => 'https://creativecommons.org/publicdomain/zero/1.0/',
11003d21aeSTanguy Ortolo);
12066fee30SAndreas Gohr$license['publicdomain'] = array(
13066fee30SAndreas Gohr    'name' => 'Public Domain',
14*5dc95dfdSPetr Kajzar    'url'  => 'https://creativecommons.org/licenses/publicdomain/',
15066fee30SAndreas Gohr);
1606361442SAndreas Gohr$license['cc-by'] = array(
1797c73267Spolyzen    'name' => 'CC Attribution 4.0 International',
18*5dc95dfdSPetr Kajzar    'url'  => 'https://creativecommons.org/licenses/by/4.0/',
1906361442SAndreas Gohr);
2006361442SAndreas Gohr$license['cc-by-sa'] = array(
2197c73267Spolyzen    'name' => 'CC Attribution-Share Alike 4.0 International',
22*5dc95dfdSPetr Kajzar    'url'  => 'https://creativecommons.org/licenses/by-sa/4.0/',
2306361442SAndreas Gohr);
24066fee30SAndreas Gohr$license['gnufdl'] = array(
25003d21aeSTanguy Ortolo    'name' => 'GNU Free Documentation License 1.3',
26*5dc95dfdSPetr Kajzar    'url'  => 'https://www.gnu.org/licenses/fdl-1.3.html',
27066fee30SAndreas Gohr);
2806361442SAndreas Gohr$license['cc-by-nc'] = array(
2997c73267Spolyzen    'name' => 'CC Attribution-Noncommercial 4.0 International',
30*5dc95dfdSPetr Kajzar    'url'  => 'https://creativecommons.org/licenses/by-nc/4.0/',
3106361442SAndreas Gohr);
3206361442SAndreas Gohr$license['cc-by-nc-sa'] = array(
3397c73267Spolyzen    'name' => 'CC Attribution-Noncommercial-Share Alike 4.0 International',
34*5dc95dfdSPetr Kajzar    'url'  => 'https://creativecommons.org/licenses/by-nc-sa/4.0/',
3506361442SAndreas Gohr);
36066fee30SAndreas Gohr
37