xref: /dokuwiki/conf/license.php (revision 066fee3089513b988d1beac2040e32a365921310)
1*066fee30SAndreas Gohr<?php
2*066fee30SAndreas Gohr/**
3*066fee30SAndreas Gohr * This file defines multiple available licenses you can license your
4*066fee30SAndreas Gohr * wiki contents under. Do not change this file, but create a
5*066fee30SAndreas Gohr * license.local.php instead.
6*066fee30SAndreas Gohr */
7*066fee30SAndreas Gohr
8*066fee30SAndreas Gohr$license['cc-by'] = array(
9*066fee30SAndreas Gohr    'name' => 'CC Attribution 3.0 Unported',
10*066fee30SAndreas Gohr    'url'  => 'http://creativecommons.org/licenses/by/3.0/',
11*066fee30SAndreas Gohr);
12*066fee30SAndreas Gohr$license['cc-by-nc'] = array(
13*066fee30SAndreas Gohr    'name' => 'CC Attribution-Noncommercial 3.0 Unported',
14*066fee30SAndreas Gohr    'url'  => 'http://creativecommons.org/licenses/by-nc/3.0/',
15*066fee30SAndreas Gohr);
16*066fee30SAndreas Gohr$license['cc-by-nc-nd'] = array(
17*066fee30SAndreas Gohr    'name' => 'CC Attribution-Noncommercial-No Derivative Works 3.0 Unported',
18*066fee30SAndreas Gohr    'url'  => 'http://creativecommons.org/licenses/by-nc-nd/3.0/',
19*066fee30SAndreas Gohr);
20*066fee30SAndreas Gohr$license['cc-by-nc-sa'] = array(
21*066fee30SAndreas Gohr    'name' => 'CC Attribution-Noncommercial-Share Alike 3.0 Unported',
22*066fee30SAndreas Gohr    'url'  => 'http://creativecommons.org/licenses/by-nc-sa/3.0/',
23*066fee30SAndreas Gohr);
24*066fee30SAndreas Gohr$license['cc-by-nd'] = array(
25*066fee30SAndreas Gohr    'name' => 'CC Attribution-No Derivative Works 3.0 Unported',
26*066fee30SAndreas Gohr    'url'  => 'cc-by-nd',
27*066fee30SAndreas Gohr);
28*066fee30SAndreas Gohr$license['cc-by-sa'] = array(
29*066fee30SAndreas Gohr    'name' => 'CC Attribution-Share Alike 3.0 Unported',
30*066fee30SAndreas Gohr    'url'  => 'http://creativecommons.org/licenses/by-sa/3.0/',
31*066fee30SAndreas Gohr);
32*066fee30SAndreas Gohr$license['publicdomain'] = array(
33*066fee30SAndreas Gohr    'name' => 'Public Domain',
34*066fee30SAndreas Gohr    'url'  => 'http://creativecommons.org/licenses/publicdomain/',
35*066fee30SAndreas Gohr);
36*066fee30SAndreas Gohr$license['gnufdl'] = array(
37*066fee30SAndreas Gohr    'name' => 'GNU Free Documentation License 1.2',
38*066fee30SAndreas Gohr    'url'  => 'http://www.gnu.org/licenses/fdl-1.2.html',
39*066fee30SAndreas Gohr);
40*066fee30SAndreas Gohr
41