xref: /dokuwiki/conf/license.php (revision 003d21aecc68351b4dc919e47c6d89614c60ca4a)
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
8066fee30SAndreas Gohr$license['cc-by'] = array(
9066fee30SAndreas Gohr    'name' => 'CC Attribution 3.0 Unported',
10066fee30SAndreas Gohr    'url'  => 'http://creativecommons.org/licenses/by/3.0/',
11066fee30SAndreas Gohr);
12066fee30SAndreas Gohr$license['cc-by-nc'] = array(
13066fee30SAndreas Gohr    'name' => 'CC Attribution-Noncommercial 3.0 Unported',
14066fee30SAndreas Gohr    'url'  => 'http://creativecommons.org/licenses/by-nc/3.0/',
15066fee30SAndreas Gohr);
16066fee30SAndreas Gohr$license['cc-by-nc-nd'] = array(
17066fee30SAndreas Gohr    'name' => 'CC Attribution-Noncommercial-No Derivative Works 3.0 Unported',
18066fee30SAndreas Gohr    'url'  => 'http://creativecommons.org/licenses/by-nc-nd/3.0/',
19066fee30SAndreas Gohr);
20066fee30SAndreas Gohr$license['cc-by-nc-sa'] = array(
21066fee30SAndreas Gohr    'name' => 'CC Attribution-Noncommercial-Share Alike 3.0 Unported',
22066fee30SAndreas Gohr    'url'  => 'http://creativecommons.org/licenses/by-nc-sa/3.0/',
23066fee30SAndreas Gohr);
24066fee30SAndreas Gohr$license['cc-by-nd'] = array(
25066fee30SAndreas Gohr    'name' => 'CC Attribution-No Derivative Works 3.0 Unported',
2681276e74SAndreas Gohr    'url'  => 'http://creativecommons.org/licenses/by-nd/3.0/',
27066fee30SAndreas Gohr);
28066fee30SAndreas Gohr$license['cc-by-sa'] = array(
29066fee30SAndreas Gohr    'name' => 'CC Attribution-Share Alike 3.0 Unported',
30066fee30SAndreas Gohr    'url'  => 'http://creativecommons.org/licenses/by-sa/3.0/',
31066fee30SAndreas Gohr);
32*003d21aeSTanguy Ortolo$license['cc-zero'] = array(
33*003d21aeSTanguy Ortolo    'name' => 'CC0 1.0 Universal',
34*003d21aeSTanguy Ortolo    'url'  => 'http://creativecommons.org/publicdomain/zero/1.0/',
35*003d21aeSTanguy Ortolo);
36066fee30SAndreas Gohr$license['publicdomain'] = array(
37066fee30SAndreas Gohr    'name' => 'Public Domain',
38066fee30SAndreas Gohr    'url'  => 'http://creativecommons.org/licenses/publicdomain/',
39066fee30SAndreas Gohr);
40066fee30SAndreas Gohr$license['gnufdl'] = array(
41*003d21aeSTanguy Ortolo    'name' => 'GNU Free Documentation License 1.3',
42*003d21aeSTanguy Ortolo    'url'  => 'http://www.gnu.org/licenses/fdl-1.3.html',
43066fee30SAndreas Gohr);
44066fee30SAndreas Gohr
45