-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlicense.php
57 lines (41 loc) · 2.43 KB
/
license.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
/*
Copyright 2013 Alex Zaddach. ([email protected])
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
header('Content-Type:text/plain');
// License details for the program
echo file_get_contents('../license_info');
echo '
';
// License for the template
echo"The PHP/HTML template, stylesheets, Javascript, supporting PHP scripts, and other parts of the interface except
those described below are licensed under the GNU General Public License version 3.
The HTML5 logo: HTML5_1Color_Black.svg was produced by the W3C, is from http://www.w3.org/html/logo/ and is
released under the Creative Commons Attribution 3.0 License - http://creativecommons.org/licenses/by/3.0/
The GPLv3 logo: gpl-v3-logo.svg was produced by GNU, is from http://www.gnu.org/graphics/license-logos.html and
is released under the Creative Commons Attribution-NoDerivs 3.0 United States License -
http://creativecommons.org/licenses/by-nd/3.0/us/
The bullet image (https://upload.wikimedia.org/wikipedia/commons/9/90/Vector-bullet-icon.png) is public domain
https://commons.wikimedia.org/wiki/File:Vector-bullet-icon.png
The Tool Labs logo (http://upload.wikimedia.org/wikipedia/commons/thumb/7/78/Tool_labs_logo_with_text.svg/150px-Tool_labs_logo_with_text.svg.png)
was produced by Brandon Harris, Wikimedia User:Isarra, and Wikimedia User:Danilo.mac
https://commons.wikimedia.org/wiki/File:Tool_labs_logo_with_text.svg and is released under the
Creative Commons Attribution-Share Alike 3.0 Unported license -
https://creativecommons.org/licenses/by-sa/3.0/deed.en
Part of GlobalFunctions.php is from MediaWiki, which is released under GNU General Public License version 2.
Authors: https://github.com/wikimedia/mediawiki-core/blob/master/CREDITS
https://github.com/wikimedia/mediawiki-core/blob/master/includes/GlobalFunctions.php";
echo '
';
// The GPL
echo file_get_contents('LICENSE');