diff options
author | Alexandre Emsenhuber <ialex.wiki@gmail.com> | 2012-06-04 15:36:23 +0200 |
---|---|---|
committer | Alexandre Emsenhuber <ialex.wiki@gmail.com> | 2012-06-04 15:36:23 +0200 |
commit | cf5f05570721f6cca45b38f96dc423db6d09eaf9 (patch) | |
tree | af03faf9dc4ba85ffbe2d4e40e57bbf5de073fb5 /skins | |
parent | 1267e41a2a7ed8cdbcbf664806c37e2c274b5431 (diff) | |
download | mediawikicore-cf5f05570721f6cca45b38f96dc423db6d09eaf9.tar.gz mediawikicore-cf5f05570721f6cca45b38f96dc423db6d09eaf9.zip |
Added missing GPLv2 headers in some places.
Also made file/class documentation more consistent.
Change-Id: If00cc0c63c49e441de56bc7b55d764d4a9a53ae8
Diffstat (limited to 'skins')
-rw-r--r-- | skins/Chick.php | 15 | ||||
-rw-r--r-- | skins/CologneBlue.php | 15 | ||||
-rw-r--r-- | skins/Modern.php | 15 | ||||
-rw-r--r-- | skins/MonoBook.php | 17 | ||||
-rw-r--r-- | skins/MySkin.php | 17 | ||||
-rw-r--r-- | skins/Nostalgia.php | 15 | ||||
-rw-r--r-- | skins/Simple.php | 15 | ||||
-rw-r--r-- | skins/Vector.php | 15 |
8 files changed, 122 insertions, 2 deletions
diff --git a/skins/Chick.php b/skins/Chick.php index 2362263c6d14..8416393fbf3f 100644 --- a/skins/Chick.php +++ b/skins/Chick.php @@ -3,6 +3,21 @@ * Chick: A lightweight Monobook skin with no sidebar, the sidebar links are * given at the bottom of the page instead, as in the unstyled MySkin. * + * 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 2 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, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * http://www.gnu.org/copyleft/gpl.html + * * @file * @ingroup Skins */ diff --git a/skins/CologneBlue.php b/skins/CologneBlue.php index c5b3b11d38b8..214d9bc2c01a 100644 --- a/skins/CologneBlue.php +++ b/skins/CologneBlue.php @@ -2,6 +2,21 @@ /** * Cologne Blue: A nicer-looking alternative to Standard. * + * 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 2 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, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * http://www.gnu.org/copyleft/gpl.html + * * @todo document * @file * @ingroup Skins diff --git a/skins/Modern.php b/skins/Modern.php index ebd574f435fe..efcf1dea42d3 100644 --- a/skins/Modern.php +++ b/skins/Modern.php @@ -2,6 +2,21 @@ /** * Modern skin, derived from monobook template. * + * 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 2 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, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * http://www.gnu.org/copyleft/gpl.html + * * @todo document * @file * @ingroup Skins diff --git a/skins/MonoBook.php b/skins/MonoBook.php index 857db0f28af1..8282fb322dbe 100644 --- a/skins/MonoBook.php +++ b/skins/MonoBook.php @@ -1,10 +1,25 @@ <?php /** - * MonoBook nouveau + * MonoBook nouveau. * * Translated from gwicke's previous TAL template version to remove * dependency on PHPTAL. * + * 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 2 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, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * http://www.gnu.org/copyleft/gpl.html + * * @todo document * @file * @ingroup Skins diff --git a/skins/MySkin.php b/skins/MySkin.php index 8859a71ad677..fb49b88d19ba 100644 --- a/skins/MySkin.php +++ b/skins/MySkin.php @@ -1,7 +1,22 @@ <?php /** * MySkin: Monobook without the CSS. The idea is that you - * customise it using user or site CSS + * customise it using user or site CSS. + * + * 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 2 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, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * http://www.gnu.org/copyleft/gpl.html * * @file * @ingroup Skins diff --git a/skins/Nostalgia.php b/skins/Nostalgia.php index 21d3578d816f..98437e2e4f81 100644 --- a/skins/Nostalgia.php +++ b/skins/Nostalgia.php @@ -2,6 +2,21 @@ /** * Nostalgia: A skin which looks like Wikipedia did in its first year (2001). * + * 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 2 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, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * http://www.gnu.org/copyleft/gpl.html + * * @file * @ingroup Skins */ diff --git a/skins/Simple.php b/skins/Simple.php index 0e1668b137a3..d06bdfd4af78 100644 --- a/skins/Simple.php +++ b/skins/Simple.php @@ -3,6 +3,21 @@ * Simple: A lightweight skin with a simple white-background sidebar and no * top bar. * + * 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 2 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, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * http://www.gnu.org/copyleft/gpl.html + * * @file * @ingroup Skins */ diff --git a/skins/Vector.php b/skins/Vector.php index 04413b5bc65a..6ac3f0874455 100644 --- a/skins/Vector.php +++ b/skins/Vector.php @@ -3,6 +3,21 @@ * Vector - Modern version of MonoBook with fresh look and many usability * improvements. * + * 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 2 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, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * http://www.gnu.org/copyleft/gpl.html + * * @todo document * @file * @ingroup Skins |