xref: /dokuwiki/conf/license.php (revision 97c7326722ac7ab152ebbaadbc272bdf863000cc)
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',
10003d21aeSTanguy Ortolo    'url'  => 'http://creativecommons.org/publicdomain/zero/1.0/',
11003d21aeSTanguy Ortolo);
12066fee30SAndreas Gohr$license['publicdomain'] = array(
13066fee30SAndreas Gohr    'name' => 'Public Domain',
14066fee30SAndreas Gohr    'url'  => 'http://creativecommons.org/licenses/publicdomain/',
15066fee30SAndreas Gohr);
1606361442SAndreas Gohr$license['cc-by'] = array(
17*97c73267Spolyzen    'name' => 'CC Attribution 4.0 International',
18*97c73267Spolyzen    'url'  => 'http://creativecommons.org/licenses/by/4.0/',
1906361442SAndreas Gohr);
2006361442SAndreas Gohr$license['cc-by-sa'] = array(
21*97c73267Spolyzen    'name' => 'CC Attribution-Share Alike 4.0 International',
22*97c73267Spolyzen    'url'  => 'http://creativecommons.org/licenses/by-sa/4.0/',
2306361442SAndreas Gohr);
24066fee30SAndreas Gohr$license['gnufdl'] = array(
25003d21aeSTanguy Ortolo    'name' => 'GNU Free Documentation License 1.3',
26003d21aeSTanguy Ortolo    'url'  => 'http://www.gnu.org/licenses/fdl-1.3.html',
27066fee30SAndreas Gohr);
2806361442SAndreas Gohr$license['cc-by-nc'] = array(
29*97c73267Spolyzen    'name' => 'CC Attribution-Noncommercial 4.0 International',
30*97c73267Spolyzen    'url'  => 'http://creativecommons.org/licenses/by-nc/4.0/',
3106361442SAndreas Gohr);
3206361442SAndreas Gohr$license['cc-by-nc-sa'] = array(
33*97c73267Spolyzen    'name' => 'CC Attribution-Noncommercial-Share Alike 4.0 International',
34*97c73267Spolyzen    'url'  => 'http://creativecommons.org/licenses/by-nc-sa/4.0/',
3506361442SAndreas Gohr);
36066fee30SAndreas Gohr
37