xref: /dokuwiki/conf/license.php (revision 0636144287f7acf89c633d3d2f5214e1d229e033)
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);
16*06361442SAndreas Gohr$license['cc-by'] = array(
17*06361442SAndreas Gohr    'name' => 'CC Attribution 3.0 Unported',
18*06361442SAndreas Gohr    'url'  => 'http://creativecommons.org/licenses/by/3.0/',
19*06361442SAndreas Gohr);
20*06361442SAndreas Gohr$license['cc-by-sa'] = array(
21*06361442SAndreas Gohr    'name' => 'CC Attribution-Share Alike 3.0 Unported',
22*06361442SAndreas Gohr    'url'  => 'http://creativecommons.org/licenses/by-sa/3.0/',
23*06361442SAndreas 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);
28*06361442SAndreas Gohr$license['cc-by-nc'] = array(
29*06361442SAndreas Gohr    'name' => 'CC Attribution-Noncommercial 3.0 Unported',
30*06361442SAndreas Gohr    'url'  => 'http://creativecommons.org/licenses/by-nc/3.0/',
31*06361442SAndreas Gohr);
32*06361442SAndreas Gohr$license['cc-by-nc-sa'] = array(
33*06361442SAndreas Gohr    'name' => 'CC Attribution-Noncommercial-Share Alike 3.0 Unported',
34*06361442SAndreas Gohr    'url'  => 'http://creativecommons.org/licenses/by-nc-sa/3.0/',
35*06361442SAndreas Gohr);
36066fee30SAndreas Gohr
37