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