Index: trunk/phase3/includes/specials/SpecialShortpages.php |
— | — | @@ -1,5 +1,6 @@ |
2 | 2 | <?php |
3 | 3 | /** |
| 4 | + * Implements Special:Shortpages |
4 | 5 | * |
5 | 6 | * This program is free software; you can redistribute it and/or modify |
6 | 7 | * it under the terms of the GNU General Public License as published by |
— | — | @@ -15,9 +16,7 @@ |
16 | 17 | * with this program; if not, write to the Free Software Foundation, Inc., |
17 | 18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
18 | 19 | * http://www.gnu.org/copyleft/gpl.html |
19 | | - */ |
20 | | - |
21 | | -/** |
| 20 | + * |
22 | 21 | * @file |
23 | 22 | * @ingroup SpecialPage |
24 | 23 | */ |
— | — | @@ -25,6 +24,7 @@ |
26 | 25 | /** |
27 | 26 | * SpecialShortpages extends QueryPage. It is used to return the shortest |
28 | 27 | * pages in the database. |
| 28 | + * |
29 | 29 | * @ingroup SpecialPage |
30 | 30 | */ |
31 | 31 | class ShortPagesPage extends QueryPage { |
Index: trunk/phase3/includes/specials/SpecialUncategorizedtemplates.php |
— | — | @@ -1,5 +1,6 @@ |
2 | 2 | <?php |
3 | 3 | /** |
| 4 | + * Implements Special:Uncategorizedtemplates |
4 | 5 | * |
5 | 6 | * This program is free software; you can redistribute it and/or modify |
6 | 7 | * it under the terms of the GNU General Public License as published by |
— | — | @@ -15,11 +16,10 @@ |
16 | 17 | * with this program; if not, write to the Free Software Foundation, Inc., |
17 | 18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
18 | 19 | * http://www.gnu.org/copyleft/gpl.html |
19 | | - */ |
20 | | - |
21 | | -/** |
| 20 | + * |
22 | 21 | * @file |
23 | 22 | * @ingroup SpecialPage |
| 23 | + * @author Rob Church <robchur@gmail.com> |
24 | 24 | */ |
25 | 25 | |
26 | 26 | /** |
— | — | @@ -27,7 +27,6 @@ |
28 | 28 | * template namespace |
29 | 29 | * |
30 | 30 | * @ingroup SpecialPage |
31 | | - * @author Rob Church <robchur@gmail.com> |
32 | 31 | */ |
33 | 32 | class UncategorizedTemplatesPage extends UncategorizedPagesPage { |
34 | 33 | |
Index: trunk/phase3/includes/specials/SpecialUnusedtemplates.php |
— | — | @@ -1,6 +1,9 @@ |
2 | 2 | <?php |
3 | 3 | /** |
| 4 | + * Implements Special:Unusedtemplates |
4 | 5 | * |
| 6 | + * Copyright © 2006 Rob Church |
| 7 | + * |
5 | 8 | * This program is free software; you can redistribute it and/or modify |
6 | 9 | * it under the terms of the GNU General Public License as published by |
7 | 10 | * the Free Software Foundation; either version 2 of the License, or |
— | — | @@ -15,18 +18,15 @@ |
16 | 19 | * with this program; if not, write to the Free Software Foundation, Inc., |
17 | 20 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
18 | 21 | * http://www.gnu.org/copyleft/gpl.html |
19 | | - */ |
20 | | - |
21 | | -/** |
| 22 | + * |
22 | 23 | * @file |
23 | 24 | * @ingroup SpecialPage |
| 25 | + * @author Rob Church <robchur@gmail.com> |
24 | 26 | */ |
25 | 27 | |
26 | 28 | /** |
27 | | - * implements Special:Unusedtemplates |
28 | | - * @author Rob Church <robchur@gmail.com> |
29 | | - * @copyright © 2006 Rob Church |
30 | | - * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later |
| 29 | + * A special page that lists unused templates |
| 30 | + * |
31 | 31 | * @ingroup SpecialPage |
32 | 32 | */ |
33 | 33 | class UnusedtemplatesPage extends QueryPage { |
Index: trunk/phase3/includes/specials/SpecialUpload.php |
— | — | @@ -1,5 +1,6 @@ |
2 | 2 | <?php |
3 | 3 | /** |
| 4 | + * Implements Special:Upload |
4 | 5 | * |
5 | 6 | * This program is free software; you can redistribute it and/or modify |
6 | 7 | * it under the terms of the GNU General Public License as published by |
— | — | @@ -15,16 +16,18 @@ |
16 | 17 | * with this program; if not, write to the Free Software Foundation, Inc., |
17 | 18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
18 | 19 | * http://www.gnu.org/copyleft/gpl.html |
| 20 | + * |
| 21 | + * @file |
| 22 | + * @ingroup SpecialPage |
| 23 | + * @ingroup Upload |
19 | 24 | */ |
20 | 25 | |
21 | 26 | /** |
22 | | - * @file |
| 27 | + * Form for handling uploads and special page. |
| 28 | + * |
23 | 29 | * @ingroup SpecialPage |
24 | 30 | * @ingroup Upload |
25 | | - * |
26 | | - * Form for handling uploads and special page. |
27 | 31 | */ |
28 | | - |
29 | 32 | class SpecialUpload extends SpecialPage { |
30 | 33 | /** |
31 | 34 | * Constructor : initialise object |
Index: trunk/phase3/includes/specials/SpecialVersion.php |
— | — | @@ -1,6 +1,9 @@ |
2 | 2 | <?php |
3 | | - |
4 | 3 | /** |
| 4 | + * Implements Special:Version |
| 5 | + * |
| 6 | + * Copyright © 2005 Ævar Arnfjörð Bjarmason |
| 7 | + * |
5 | 8 | * This program is free software; you can redistribute it and/or modify |
6 | 9 | * it under the terms of the GNU General Public License as published by |
7 | 10 | * the Free Software Foundation; either version 2 of the License, or |
— | — | @@ -15,16 +18,15 @@ |
16 | 19 | * with this program; if not, write to the Free Software Foundation, Inc., |
17 | 20 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
18 | 21 | * http://www.gnu.org/copyleft/gpl.html |
| 22 | + * |
| 23 | + * @file |
| 24 | + * @ingroup SpecialPage |
19 | 25 | */ |
20 | 26 | |
21 | 27 | /** |
22 | 28 | * Give information about the version of MediaWiki, PHP, the DB and extensions |
23 | 29 | * |
24 | 30 | * @ingroup SpecialPage |
25 | | - * |
26 | | - * @author Ævar Arnfjörð Bjarmason <avarab@gmail.com> |
27 | | - * @copyright Copyright © 2005, Ævar Arnfjörð Bjarmason |
28 | | - * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later |
29 | 31 | */ |
30 | 32 | class SpecialVersion extends SpecialPage { |
31 | 33 | |
Index: trunk/phase3/includes/specials/SpecialWantedcategories.php |
— | — | @@ -1,6 +1,9 @@ |
2 | 2 | <?php |
3 | 3 | /** |
| 4 | + * Implements Special:Wantedcategories |
4 | 5 | * |
| 6 | + * Copyright © 2005 Ævar Arnfjörð Bjarmason |
| 7 | + * |
5 | 8 | * This program is free software; you can redistribute it and/or modify |
6 | 9 | * it under the terms of the GNU General Public License as published by |
7 | 10 | * the Free Software Foundation; either version 2 of the License, or |
— | — | @@ -15,17 +18,15 @@ |
16 | 19 | * with this program; if not, write to the Free Software Foundation, Inc., |
17 | 20 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
18 | 21 | * http://www.gnu.org/copyleft/gpl.html |
| 22 | + * |
| 23 | + * @file |
| 24 | + * @ingroup SpecialPage |
19 | 25 | */ |
20 | 26 | |
21 | 27 | /** |
22 | 28 | * A querypage to list the most wanted categories - implements Special:Wantedcategories |
23 | 29 | * |
24 | | - * @file |
25 | 30 | * @ingroup SpecialPage |
26 | | - * |
27 | | - * @author Ævar Arnfjörð Bjarmason <avarab@gmail.com> |
28 | | - * @copyright Copyright © 2005, Ævar Arnfjörð Bjarmason |
29 | | - * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later |
30 | 31 | */ |
31 | 32 | class WantedCategoriesPage extends WantedQueryPage { |
32 | 33 | |
Index: trunk/phase3/includes/specials/SpecialWithoutinterwiki.php |
— | — | @@ -1,5 +1,6 @@ |
2 | 2 | <?php |
3 | 3 | /** |
| 4 | + * Implements Special:Withoutinterwiki |
4 | 5 | * |
5 | 6 | * This program is free software; you can redistribute it and/or modify |
6 | 7 | * it under the terms of the GNU General Public License as published by |
— | — | @@ -15,14 +16,16 @@ |
16 | 17 | * with this program; if not, write to the Free Software Foundation, Inc., |
17 | 18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
18 | 19 | * http://www.gnu.org/copyleft/gpl.html |
| 20 | + * |
| 21 | + * @file |
| 22 | + * @ingroup SpecialPage |
| 23 | + * @author Rob Church <robchur@gmail.com> |
19 | 24 | */ |
20 | 25 | |
21 | 26 | /** |
22 | 27 | * Special page lists pages without language links |
23 | 28 | * |
24 | | - * @file |
25 | 29 | * @ingroup SpecialPage |
26 | | - * @author Rob Church <robchur@gmail.com> |
27 | 30 | */ |
28 | 31 | class WithoutInterwikiPage extends PageQueryPage { |
29 | 32 | private $prefix = ''; |
Index: trunk/phase3/includes/specials/SpecialUnusedimages.php |
— | — | @@ -1,5 +1,6 @@ |
2 | 2 | <?php |
3 | 3 | /** |
| 4 | + * Implements Special:Unusedimages |
4 | 5 | * |
5 | 6 | * This program is free software; you can redistribute it and/or modify |
6 | 7 | * it under the terms of the GNU General Public License as published by |
— | — | @@ -15,15 +16,14 @@ |
16 | 17 | * with this program; if not, write to the Free Software Foundation, Inc., |
17 | 18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
18 | 19 | * http://www.gnu.org/copyleft/gpl.html |
19 | | - */ |
20 | | - |
21 | | -/** |
| 20 | + * |
22 | 21 | * @file |
23 | 22 | * @ingroup SpecialPage |
24 | 23 | */ |
25 | 24 | |
26 | 25 | /** |
27 | | - * implements Special:Unusedimages |
| 26 | + * A special page that lists unused images |
| 27 | + * |
28 | 28 | * @ingroup SpecialPage |
29 | 29 | */ |
30 | 30 | class UnusedimagesPage extends ImageQueryPage { |
Index: trunk/phase3/includes/specials/SpecialUncategorizedimages.php |
— | — | @@ -1,5 +1,6 @@ |
2 | 2 | <?php |
3 | 3 | /** |
| 4 | + * Implements Special:Uncategorizedimages |
4 | 5 | * |
5 | 6 | * This program is free software; you can redistribute it and/or modify |
6 | 7 | * it under the terms of the GNU General Public License as published by |
— | — | @@ -15,10 +16,6 @@ |
16 | 17 | * with this program; if not, write to the Free Software Foundation, Inc., |
17 | 18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
18 | 19 | * http://www.gnu.org/copyleft/gpl.html |
19 | | - */ |
20 | | - |
21 | | -/** |
22 | | - * Special page lists images which haven't been categorised |
23 | 20 | * |
24 | 21 | * @file |
25 | 22 | * @ingroup SpecialPage |
— | — | @@ -26,6 +23,8 @@ |
27 | 24 | */ |
28 | 25 | |
29 | 26 | /** |
| 27 | + * Special page lists images which haven't been categorised |
| 28 | + * |
30 | 29 | * @ingroup SpecialPage |
31 | 30 | */ |
32 | 31 | class UncategorizedImagesPage extends ImageQueryPage { |
Index: trunk/phase3/includes/specials/SpecialTags.php |
— | — | @@ -1,5 +1,6 @@ |
2 | 2 | <?php |
3 | 3 | /** |
| 4 | + * Implements Special:Tags |
4 | 5 | * |
5 | 6 | * This program is free software; you can redistribute it and/or modify |
6 | 7 | * it under the terms of the GNU General Public License as published by |
— | — | @@ -15,11 +16,19 @@ |
16 | 17 | * with this program; if not, write to the Free Software Foundation, Inc., |
17 | 18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
18 | 19 | * http://www.gnu.org/copyleft/gpl.html |
| 20 | + * |
| 21 | + * @file |
| 22 | + * @ingroup SpecialPage |
19 | 23 | */ |
20 | 24 | |
21 | 25 | if (!defined('MEDIAWIKI')) |
22 | 26 | die; |
23 | 27 | |
| 28 | +/** |
| 29 | + * A special page that lists tags for edits |
| 30 | + * |
| 31 | + * @ingroup SpecialPage |
| 32 | + */ |
24 | 33 | class SpecialTags extends SpecialPage { |
25 | 34 | |
26 | 35 | function __construct() { |
Index: trunk/phase3/includes/specials/SpecialRandomredirect.php |
— | — | @@ -1,5 +1,6 @@ |
2 | 2 | <?php |
3 | 3 | /** |
| 4 | + * Implements Special:Randomredirect |
4 | 5 | * |
5 | 6 | * This program is free software; you can redistribute it and/or modify |
6 | 7 | * it under the terms of the GNU General Public License as published by |
— | — | @@ -15,14 +16,16 @@ |
16 | 17 | * with this program; if not, write to the Free Software Foundation, Inc., |
17 | 18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
18 | 19 | * http://www.gnu.org/copyleft/gpl.html |
| 20 | + * |
| 21 | + * @file |
| 22 | + * @ingroup SpecialPage |
| 23 | + * @author Rob Church <robchur@gmail.com>, Ilmari Karonen |
19 | 24 | */ |
20 | 25 | |
21 | 26 | /** |
22 | 27 | * Special page to direct the user to a random redirect page (minus the second redirect) |
23 | 28 | * |
24 | 29 | * @ingroup SpecialPage |
25 | | - * @author Rob Church <robchur@gmail.com>, Ilmari Karonen |
26 | | - * @license GNU General Public Licence 2.0 or later |
27 | 30 | */ |
28 | 31 | class SpecialRandomredirect extends RandomPage { |
29 | 32 | function __construct(){ |
Index: trunk/phase3/includes/specials/SpecialWatchlist.php |
— | — | @@ -1,7 +1,6 @@ |
2 | 2 | <?php |
3 | 3 | /** |
4 | | - * @file |
5 | | - * @ingroup SpecialPage Watchlist |
| 4 | + * Implements Special:Watchlist |
6 | 5 | * |
7 | 6 | * This program is free software; you can redistribute it and/or modify |
8 | 7 | * it under the terms of the GNU General Public License as published by |
— | — | @@ -17,6 +16,9 @@ |
18 | 17 | * with this program; if not, write to the Free Software Foundation, Inc., |
19 | 18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
20 | 19 | * http://www.gnu.org/copyleft/gpl.html |
| 20 | + * |
| 21 | + * @file |
| 22 | + * @ingroup SpecialPage Watchlist |
21 | 23 | */ |
22 | 24 | |
23 | 25 | /** |
Index: trunk/phase3/includes/specials/SpecialWantedpages.php |
— | — | @@ -1,5 +1,6 @@ |
2 | 2 | <?php |
3 | 3 | /** |
| 4 | + * Implements Special:Wantedpages |
4 | 5 | * |
5 | 6 | * This program is free software; you can redistribute it and/or modify |
6 | 7 | * it under the terms of the GNU General Public License as published by |
— | — | @@ -15,11 +16,14 @@ |
16 | 17 | * with this program; if not, write to the Free Software Foundation, Inc., |
17 | 18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
18 | 19 | * http://www.gnu.org/copyleft/gpl.html |
| 20 | + * |
| 21 | + * @file |
| 22 | + * @ingroup SpecialPage |
19 | 23 | */ |
20 | 24 | |
21 | 25 | /** |
22 | | - * @file |
23 | | - * implements Special:Wantedpages |
| 26 | + * A special page that lists most linked pages that does not exist |
| 27 | + * |
24 | 28 | * @ingroup SpecialPage |
25 | 29 | */ |
26 | 30 | class WantedPagesPage extends WantedQueryPage { |
Index: trunk/phase3/includes/specials/SpecialSearch.php |
— | — | @@ -1,7 +1,9 @@ |
2 | 2 | <?php |
3 | 3 | /** |
4 | | - * Copyright (C) 2004 Brion Vibber <brion@pobox.com> |
| 4 | + * Implements Special:Search |
5 | 5 | * |
| 6 | + * Copyright © 2004 Brion Vibber <brion@pobox.com> |
| 7 | + * |
6 | 8 | * This program is free software; you can redistribute it and/or modify |
7 | 9 | * it under the terms of the GNU General Public License as published by |
8 | 10 | * the Free Software Foundation; either version 2 of the License, or |
— | — | @@ -16,10 +18,7 @@ |
17 | 19 | * with this program; if not, write to the Free Software Foundation, Inc., |
18 | 20 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
19 | 21 | * http://www.gnu.org/copyleft/gpl.html |
20 | | - */ |
21 | | - |
22 | | -/** |
23 | | - * Run text & title search and display the output |
| 22 | + * |
24 | 23 | * @file |
25 | 24 | * @ingroup SpecialPage |
26 | 25 | */ |
Index: trunk/phase3/includes/specials/SpecialProtectedpages.php |
— | — | @@ -1,5 +1,6 @@ |
2 | 2 | <?php |
3 | 3 | /** |
| 4 | + * Implements Special:Protectedpages |
4 | 5 | * |
5 | 6 | * This program is free software; you can redistribute it and/or modify |
6 | 7 | * it under the terms of the GNU General Public License as published by |
— | — | @@ -15,15 +16,14 @@ |
16 | 17 | * with this program; if not, write to the Free Software Foundation, Inc., |
17 | 18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
18 | 19 | * http://www.gnu.org/copyleft/gpl.html |
19 | | - */ |
20 | | - |
21 | | -/** |
| 20 | + * |
22 | 21 | * @file |
23 | 22 | * @ingroup SpecialPage |
24 | 23 | */ |
25 | 24 | |
26 | 25 | /** |
27 | | - * @todo document |
| 26 | + * A special page that lists protected pages |
| 27 | + * |
28 | 28 | * @ingroup SpecialPage |
29 | 29 | */ |
30 | 30 | class ProtectedPagesForm { |
Index: trunk/phase3/includes/specials/SpecialResetpass.php |
— | — | @@ -1,5 +1,6 @@ |
2 | 2 | <?php |
3 | 3 | /** |
| 4 | + * Implements Special:Resetpass |
4 | 5 | * |
5 | 6 | * This program is free software; you can redistribute it and/or modify |
6 | 7 | * it under the terms of the GNU General Public License as published by |
— | — | @@ -15,15 +16,14 @@ |
16 | 17 | * with this program; if not, write to the Free Software Foundation, Inc., |
17 | 18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
18 | 19 | * http://www.gnu.org/copyleft/gpl.html |
19 | | - */ |
20 | | - |
21 | | -/** |
| 20 | + * |
22 | 21 | * @file |
23 | 22 | * @ingroup SpecialPage |
24 | 23 | */ |
25 | 24 | |
26 | 25 | /** |
27 | 26 | * Let users recover their password. |
| 27 | + * |
28 | 28 | * @ingroup SpecialPage |
29 | 29 | */ |
30 | 30 | class SpecialResetpass extends SpecialPage { |
Index: trunk/phase3/includes/specials/SpecialRandompage.php |
— | — | @@ -1,5 +1,6 @@ |
2 | 2 | <?php |
3 | 3 | /** |
| 4 | + * Implements Special:Randompage |
4 | 5 | * |
5 | 6 | * This program is free software; you can redistribute it and/or modify |
6 | 7 | * it under the terms of the GNU General Public License as published by |
— | — | @@ -15,14 +16,16 @@ |
16 | 17 | * with this program; if not, write to the Free Software Foundation, Inc., |
17 | 18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
18 | 19 | * http://www.gnu.org/copyleft/gpl.html |
| 20 | + * |
| 21 | + * @file |
| 22 | + * @ingroup SpecialPage |
| 23 | + * @author Rob Church <robchur@gmail.com>, Ilmari Karonen |
19 | 24 | */ |
20 | 25 | |
21 | 26 | /** |
22 | 27 | * Special page to direct the user to a random page |
23 | 28 | * |
24 | 29 | * @ingroup SpecialPage |
25 | | - * @author Rob Church <robchur@gmail.com>, Ilmari Karonen |
26 | | - * @license GNU General Public Licence 2.0 or later |
27 | 30 | */ |
28 | 31 | class RandomPage extends SpecialPage { |
29 | 32 | private $namespaces; // namespaces to select pages from |
Index: trunk/phase3/includes/specials/SpecialNewimages.php |
— | — | @@ -1,5 +1,6 @@ |
2 | 2 | <?php |
3 | 3 | /** |
| 4 | + * Implements Special:Newimages |
4 | 5 | * |
5 | 6 | * This program is free software; you can redistribute it and/or modify |
6 | 7 | * it under the terms of the GNU General Public License as published by |
— | — | @@ -15,14 +16,14 @@ |
16 | 17 | * with this program; if not, write to the Free Software Foundation, Inc., |
17 | 18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
18 | 19 | * http://www.gnu.org/copyleft/gpl.html |
| 20 | + * |
| 21 | + * @file |
| 22 | + * @ingroup SpecialPage |
19 | 23 | */ |
20 | 24 | |
21 | 25 | /** |
22 | | - * @file |
23 | | - * @ingroup SpecialPage |
24 | | - * FIXME: this code is crap, should use Pager and Database::select(). |
| 26 | + * @todo FIXME: this code is crap, should use Pager and Database::select(). |
25 | 27 | */ |
26 | | - |
27 | 28 | function wfSpecialNewimages( $par, $specialPage ) { |
28 | 29 | global $wgUser, $wgOut, $wgLang, $wgRequest, $wgMiserMode; |
29 | 30 | |
Index: trunk/phase3/includes/specials/SpecialSelenium.php |
— | — | @@ -1,9 +1,15 @@ |
2 | 2 | <?php |
| 3 | +/** |
| 4 | + * Implements Special:Selenium |
| 5 | + * |
| 6 | + * @file |
| 7 | + * @ingroup SpecialPage |
| 8 | + * @todo Remove this feature |
| 9 | + */ |
3 | 10 | |
4 | 11 | /** |
5 | | - * TODO: remove this feature |
| 12 | + * @ingroup SpecialPage |
6 | 13 | */ |
7 | | - |
8 | 14 | class SpecialSelenium extends SpecialPage { |
9 | 15 | function __construct() { |
10 | 16 | parent::__construct( 'Selenium', 'selenium', false ); |
Index: trunk/phase3/includes/specials/SpecialRevisionMove.php |
— | — | @@ -1,5 +1,6 @@ |
2 | 2 | <?php |
3 | 3 | /** |
| 4 | + * Implements Special:RevisionMove |
4 | 5 | * |
5 | 6 | * This program is free software; you can redistribute it and/or modify |
6 | 7 | * it under the terms of the GNU General Public License as published by |
— | — | @@ -15,6 +16,9 @@ |
16 | 17 | * with this program; if not, write to the Free Software Foundation, Inc., |
17 | 18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
18 | 19 | * http://www.gnu.org/copyleft/gpl.html |
| 20 | + * |
| 21 | + * @file |
| 22 | + * @ingroup SpecialPage |
19 | 23 | */ |
20 | 24 | |
21 | 25 | /** |
— | — | @@ -33,17 +37,13 @@ |
34 | 38 | * **** NOTE: This feature is EXPERIMENTAL. **** |
35 | 39 | * **** Do not use on any productive system. **** |
36 | 40 | * |
37 | | - * @file |
38 | 41 | * @ingroup SpecialPage |
39 | | - */ |
40 | | - |
41 | | -/* TODO In case page_deleted gets introduced some day, use it. |
42 | | - * Currently it is possible with RevisionMove to make the latest revision |
43 | | - * of a page a RevisionDeleted one. When that happens, the user is presented |
44 | | - * an empty page with no error message whatsoever (in case he is not permitted |
45 | | - * to view deleted edits). |
| 42 | + * @todo In case page_deleted gets introduced some day, use it. |
| 43 | + * Currently it is possible with RevisionMove to make the latest revision |
| 44 | + * of a page a RevisionDeleted one. When that happens, the user is presented |
| 45 | + * an empty page with no error message whatsoever (in case he is not permitted |
| 46 | + * to view deleted edits). |
46 | 47 | */ |
47 | | - |
48 | 48 | class SpecialRevisionMove extends UnlistedSpecialPage { |
49 | 49 | # common objects |
50 | 50 | var $mOldTitle; # Title object. |
Index: trunk/phase3/includes/specials/SpecialUserrights.php |
— | — | @@ -1,5 +1,6 @@ |
2 | 2 | <?php |
3 | 3 | /** |
| 4 | + * Implements Special:Userrights |
4 | 5 | * |
5 | 6 | * This program is free software; you can redistribute it and/or modify |
6 | 7 | * it under the terms of the GNU General Public License as published by |
— | — | @@ -15,17 +16,14 @@ |
16 | 17 | * with this program; if not, write to the Free Software Foundation, Inc., |
17 | 18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
18 | 19 | * http://www.gnu.org/copyleft/gpl.html |
19 | | - */ |
20 | | - |
21 | | -/** |
22 | | - * Special page to allow managing user group membership |
23 | 20 | * |
24 | 21 | * @file |
25 | 22 | * @ingroup SpecialPage |
26 | 23 | */ |
27 | 24 | |
28 | 25 | /** |
29 | | - * A class to manage user levels rights. |
| 26 | + * Special page to allow managing user group membership |
| 27 | + * |
30 | 28 | * @ingroup SpecialPage |
31 | 29 | */ |
32 | 30 | class UserrightsPage extends SpecialPage { |
Index: trunk/phase3/includes/specials/SpecialRecentchangeslinked.php |
— | — | @@ -1,5 +1,6 @@ |
2 | 2 | <?php |
3 | 3 | /** |
| 4 | + * Implements Special:Recentchangeslinked |
4 | 5 | * |
5 | 6 | * This program is free software; you can redistribute it and/or modify |
6 | 7 | * it under the terms of the GNU General Public License as published by |
— | — | @@ -15,10 +16,14 @@ |
16 | 17 | * with this program; if not, write to the Free Software Foundation, Inc., |
17 | 18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
18 | 19 | * http://www.gnu.org/copyleft/gpl.html |
| 20 | + * |
| 21 | + * @file |
| 22 | + * @ingroup SpecialPage |
19 | 23 | */ |
20 | 24 | |
21 | 25 | /** |
22 | 26 | * This is to display changes made to all articles linked in an article. |
| 27 | + * |
23 | 28 | * @ingroup SpecialPage |
24 | 29 | */ |
25 | 30 | class SpecialRecentchangeslinked extends SpecialRecentchanges { |
Index: trunk/phase3/includes/specials/SpecialWantedtemplates.php |
— | — | @@ -1,6 +1,11 @@ |
2 | 2 | <?php |
3 | 3 | /** |
| 4 | + * Implements Special:Wantedtemplates |
4 | 5 | * |
| 6 | + * Copyright © 2008, Danny B. |
| 7 | + * Based on SpecialWantedcategories.php by Ævar Arnfjörð Bjarmason <avarab@gmail.com> |
| 8 | + * makeWlhLink() taken from SpecialMostlinkedtemplates by Rob Church <robchur@gmail.com> |
| 9 | + * |
5 | 10 | * This program is free software; you can redistribute it and/or modify |
6 | 11 | * it under the terms of the GNU General Public License as published by |
7 | 12 | * the Free Software Foundation; either version 2 of the License, or |
— | — | @@ -15,19 +20,16 @@ |
16 | 21 | * with this program; if not, write to the Free Software Foundation, Inc., |
17 | 22 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
18 | 23 | * http://www.gnu.org/copyleft/gpl.html |
| 24 | + * |
| 25 | + * @file |
| 26 | + * @ingroup SpecialPage |
| 27 | + * @author Danny B. |
19 | 28 | */ |
20 | 29 | |
21 | 30 | /** |
22 | | - * A querypage to list the most wanted templates - implements Special:Wantedtemplates |
23 | | - * based on SpecialWantedcategories.php by Ævar Arnfjörð Bjarmason <avarab@gmail.com> |
24 | | - * makeWlhLink() taken from SpecialMostlinkedtemplates by Rob Church <robchur@gmail.com> |
| 31 | + * A querypage to list the most wanted templates |
25 | 32 | * |
26 | | - * @file |
27 | 33 | * @ingroup SpecialPage |
28 | | - * |
29 | | - * @author Danny B. |
30 | | - * @copyright Copyright © 2008, Danny B. |
31 | | - * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later |
32 | 34 | */ |
33 | 35 | class WantedTemplatesPage extends WantedQueryPage { |
34 | 36 | |
Index: trunk/phase3/includes/specials/SpecialUndelete.php |
— | — | @@ -1,5 +1,6 @@ |
2 | 2 | <?php |
3 | 3 | /** |
| 4 | + * Implements Special:Undelete |
4 | 5 | * |
5 | 6 | * This program is free software; you can redistribute it and/or modify |
6 | 7 | * it under the terms of the GNU General Public License as published by |
— | — | @@ -15,10 +16,14 @@ |
16 | 17 | * with this program; if not, write to the Free Software Foundation, Inc., |
17 | 18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
18 | 19 | * http://www.gnu.org/copyleft/gpl.html |
| 20 | + * |
| 21 | + * @file |
| 22 | + * @ingroup SpecialPage |
19 | 23 | */ |
20 | 24 | |
21 | 25 | /** |
22 | 26 | * Used to show archived pages and eventually restore them. |
| 27 | + * |
23 | 28 | * @ingroup SpecialPage |
24 | 29 | */ |
25 | 30 | class PageArchive { |
Index: trunk/phase3/includes/specials/SpecialNewpages.php |
— | — | @@ -1,5 +1,6 @@ |
2 | 2 | <?php |
3 | 3 | /** |
| 4 | + * Implements Special:Newpages |
4 | 5 | * |
5 | 6 | * This program is free software; you can redistribute it and/or modify |
6 | 7 | * it under the terms of the GNU General Public License as published by |
— | — | @@ -15,10 +16,14 @@ |
16 | 17 | * with this program; if not, write to the Free Software Foundation, Inc., |
17 | 18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
18 | 19 | * http://www.gnu.org/copyleft/gpl.html |
| 20 | + * |
| 21 | + * @file |
| 22 | + * @ingroup SpecialPage |
19 | 23 | */ |
20 | 24 | |
21 | 25 | /** |
22 | | - * implements Special:Newpages |
| 26 | + * A special page that list newly created pages |
| 27 | + * |
23 | 28 | * @ingroup SpecialPage |
24 | 29 | */ |
25 | 30 | class SpecialNewpages extends IncludableSpecialPage { |
Index: trunk/phase3/includes/specials/SpecialStatistics.php |
— | — | @@ -1,5 +1,6 @@ |
2 | 2 | <?php |
3 | 3 | /** |
| 4 | + * Implements Special:Statistics |
4 | 5 | * |
5 | 6 | * This program is free software; you can redistribute it and/or modify |
6 | 7 | * it under the terms of the GNU General Public License as published by |
— | — | @@ -15,19 +16,17 @@ |
16 | 17 | * with this program; if not, write to the Free Software Foundation, Inc., |
17 | 18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
18 | 19 | * http://www.gnu.org/copyleft/gpl.html |
| 20 | + * |
| 21 | + * @file |
| 22 | + * @ingroup SpecialPage |
19 | 23 | */ |
20 | 24 | |
21 | 25 | /** |
22 | 26 | * Special page lists various statistics, including the contents of |
23 | 27 | * `site_stats`, plus page view details if enabled |
24 | 28 | * |
25 | | - * @file |
26 | 29 | * @ingroup SpecialPage |
27 | 30 | */ |
28 | | - |
29 | | -/** |
30 | | - * Some statistics about the wiki |
31 | | - */ |
32 | 31 | class SpecialStatistics extends SpecialPage { |
33 | 32 | |
34 | 33 | private $views, $edits, $good, $images, $total, $users, |
Index: trunk/phase3/includes/specials/SpecialSpecialpages.php |
— | — | @@ -1,5 +1,6 @@ |
2 | 2 | <?php |
3 | 3 | /** |
| 4 | + * Implements Special:Specialpages |
4 | 5 | * |
5 | 6 | * This program is free software; you can redistribute it and/or modify |
6 | 7 | * it under the terms of the GNU General Public License as published by |
— | — | @@ -15,10 +16,14 @@ |
16 | 17 | * with this program; if not, write to the Free Software Foundation, Inc., |
17 | 18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
18 | 19 | * http://www.gnu.org/copyleft/gpl.html |
| 20 | + * |
| 21 | + * @file |
| 22 | + * @ingroup SpecialPage |
19 | 23 | */ |
20 | | - |
| 24 | + |
21 | 25 | /** |
22 | | - * @file |
| 26 | + * A special page that lists special pages |
| 27 | + * |
23 | 28 | * @ingroup SpecialPage |
24 | 29 | */ |
25 | 30 | class SpecialSpecialpages extends UnlistedSpecialPage { |
Index: trunk/phase3/includes/specials/SpecialUnlockdb.php |
— | — | @@ -1,5 +1,6 @@ |
2 | 2 | <?php |
3 | 3 | /** |
| 4 | + * Implements Special:Unlockdb |
4 | 5 | * |
5 | 6 | * This program is free software; you can redistribute it and/or modify |
6 | 7 | * it under the terms of the GNU General Public License as published by |
— | — | @@ -15,6 +16,9 @@ |
16 | 17 | * with this program; if not, write to the Free Software Foundation, Inc., |
17 | 18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
18 | 19 | * http://www.gnu.org/copyleft/gpl.html |
| 20 | + * |
| 21 | + * @file |
| 22 | + * @ingroup SpecialPage |
19 | 23 | */ |
20 | 24 | |
21 | 25 | /** |
Index: trunk/phase3/includes/specials/SpecialPreferences.php |
— | — | @@ -1,5 +1,6 @@ |
2 | 2 | <?php |
3 | 3 | /** |
| 4 | + * Implements Special:Preferences |
4 | 5 | * |
5 | 6 | * This program is free software; you can redistribute it and/or modify |
6 | 7 | * it under the terms of the GNU General Public License as published by |
— | — | @@ -15,8 +16,16 @@ |
16 | 17 | * with this program; if not, write to the Free Software Foundation, Inc., |
17 | 18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
18 | 19 | * http://www.gnu.org/copyleft/gpl.html |
| 20 | + * |
| 21 | + * @file |
| 22 | + * @ingroup SpecialPage |
19 | 23 | */ |
20 | 24 | |
| 25 | +/** |
| 26 | + * A special page that allows users to change their preferences |
| 27 | + * |
| 28 | + * @ingroup SpecialPage |
| 29 | + */ |
21 | 30 | class SpecialPreferences extends SpecialPage { |
22 | 31 | function __construct() { |
23 | 32 | parent::__construct( 'Preferences' ); |
Index: trunk/phase3/includes/specials/SpecialUnwatchedpages.php |
— | — | @@ -1,6 +1,9 @@ |
2 | 2 | <?php |
3 | 3 | /** |
| 4 | + * Implements Special:Unwatchedpages |
4 | 5 | * |
| 6 | + * Copyright © 2005 Ævar Arnfjörð Bjarmason |
| 7 | + * |
5 | 8 | * This program is free software; you can redistribute it and/or modify |
6 | 9 | * it under the terms of the GNU General Public License as published by |
7 | 10 | * the Free Software Foundation; either version 2 of the License, or |
— | — | @@ -15,21 +18,16 @@ |
16 | 19 | * with this program; if not, write to the Free Software Foundation, Inc., |
17 | 20 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
18 | 21 | * http://www.gnu.org/copyleft/gpl.html |
19 | | - */ |
20 | | - |
21 | | -/** |
| 22 | + * |
22 | 23 | * @file |
23 | 24 | * @ingroup SpecialPage |
| 25 | + * @author Ævar Arnfjörð Bjarmason <avarab@gmail.com> |
24 | 26 | */ |
25 | 27 | |
26 | 28 | /** |
27 | 29 | * A special page that displays a list of pages that are not on anyones watchlist. |
28 | | - * Implements Special:Unwatchedpages |
29 | 30 | * |
30 | 31 | * @ingroup SpecialPage |
31 | | - * @author Ævar Arnfjörð Bjarmason <avarab@gmail.com> |
32 | | - * @copyright Copyright © 2005, Ævar Arnfjörð Bjarmason |
33 | | - * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later |
34 | 32 | */ |
35 | 33 | class UnwatchedpagesPage extends QueryPage { |
36 | 34 | |
Index: trunk/phase3/includes/specials/SpecialPopularpages.php |
— | — | @@ -1,5 +1,6 @@ |
2 | 2 | <?php |
3 | 3 | /** |
| 4 | + * Implements Special:PopularPages |
4 | 5 | * |
5 | 6 | * This program is free software; you can redistribute it and/or modify |
6 | 7 | * it under the terms of the GNU General Public License as published by |
— | — | @@ -15,15 +16,14 @@ |
16 | 17 | * with this program; if not, write to the Free Software Foundation, Inc., |
17 | 18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
18 | 19 | * http://www.gnu.org/copyleft/gpl.html |
19 | | - */ |
20 | | - |
21 | | -/** |
| 20 | + * |
22 | 21 | * @file |
23 | 22 | * @ingroup SpecialPage |
24 | 23 | */ |
25 | 24 | |
26 | 25 | /** |
27 | | - * implements Special:Popularpages |
| 26 | + * A special page that list most viewed pages |
| 27 | + * |
28 | 28 | * @ingroup SpecialPage |
29 | 29 | */ |
30 | 30 | class PopularPagesPage extends QueryPage { |
Index: trunk/phase3/includes/specials/SpecialWantedfiles.php |
— | — | @@ -1,6 +1,9 @@ |
2 | 2 | <?php |
3 | 3 | /** |
| 4 | + * Implements Special:Wantedfiles |
4 | 5 | * |
| 6 | + * Copyright © 2008 Soxred93 |
| 7 | + * |
5 | 8 | * This program is free software; you can redistribute it and/or modify |
6 | 9 | * it under the terms of the GNU General Public License as published by |
7 | 10 | * the Free Software Foundation; either version 2 of the License, or |
— | — | @@ -15,17 +18,16 @@ |
16 | 19 | * with this program; if not, write to the Free Software Foundation, Inc., |
17 | 20 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
18 | 21 | * http://www.gnu.org/copyleft/gpl.html |
| 22 | + * |
| 23 | + * @file |
| 24 | + * @ingroup SpecialPage |
| 25 | + * @author Soxred93 <soxred93@gmail.com> |
19 | 26 | */ |
20 | 27 | |
21 | 28 | /** |
22 | | - * Querypage that lists the most wanted files - implements Special:Wantedfiles |
| 29 | + * Querypage that lists the most wanted files |
23 | 30 | * |
24 | | - * @file |
25 | 31 | * @ingroup SpecialPage |
26 | | - * |
27 | | - * @author Soxred93 <soxred93@gmail.com> |
28 | | - * @copyright Copyright © 2008, Soxred93 |
29 | | - * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later |
30 | 32 | */ |
31 | 33 | class WantedFilesPage extends WantedQueryPage { |
32 | 34 | |
Index: trunk/phase3/includes/specials/SpecialUserlogin.php |
— | — | @@ -1,5 +1,6 @@ |
2 | 2 | <?php |
3 | 3 | /** |
| 4 | + * Implements Special:Userlogin |
4 | 5 | * |
5 | 6 | * This program is free software; you can redistribute it and/or modify |
6 | 7 | * it under the terms of the GNU General Public License as published by |
— | — | @@ -15,9 +16,7 @@ |
16 | 17 | * with this program; if not, write to the Free Software Foundation, Inc., |
17 | 18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
18 | 19 | * http://www.gnu.org/copyleft/gpl.html |
19 | | - */ |
20 | | - |
21 | | -/** |
| 20 | + * |
22 | 21 | * @file |
23 | 22 | * @ingroup SpecialPage |
24 | 23 | */ |
— | — | @@ -36,7 +35,8 @@ |
37 | 36 | } |
38 | 37 | |
39 | 38 | /** |
40 | | - * implements Special:Login |
| 39 | + * Implements Special:Login |
| 40 | + * |
41 | 41 | * @ingroup SpecialPage |
42 | 42 | */ |
43 | 43 | class LoginForm { |
Index: trunk/phase3/includes/specials/SpecialUserlogout.php |
— | — | @@ -1,5 +1,6 @@ |
2 | 2 | <?php |
3 | 3 | /** |
| 4 | + * Implements Special:Upload |
4 | 5 | * |
5 | 6 | * This program is free software; you can redistribute it and/or modify |
6 | 7 | * it under the terms of the GNU General Public License as published by |
— | — | @@ -15,10 +16,14 @@ |
16 | 17 | * with this program; if not, write to the Free Software Foundation, Inc., |
17 | 18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
18 | 19 | * http://www.gnu.org/copyleft/gpl.html |
| 20 | + * |
| 21 | + * @file |
| 22 | + * @ingroup SpecialPage |
19 | 23 | */ |
20 | 24 | |
21 | 25 | /** |
22 | 26 | * Implements Special:Userlogout |
| 27 | + * |
23 | 28 | * @ingroup SpecialPage |
24 | 29 | */ |
25 | 30 | class SpecialUserlogout extends UnlistedSpecialPage { |
Index: trunk/phase3/includes/specials/SpecialRecentchanges.php |
— | — | @@ -1,5 +1,6 @@ |
2 | 2 | <?php |
3 | 3 | /** |
| 4 | + * Implements Special:Recentchanges |
4 | 5 | * |
5 | 6 | * This program is free software; you can redistribute it and/or modify |
6 | 7 | * it under the terms of the GNU General Public License as published by |
— | — | @@ -15,10 +16,14 @@ |
16 | 17 | * with this program; if not, write to the Free Software Foundation, Inc., |
17 | 18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
18 | 19 | * http://www.gnu.org/copyleft/gpl.html |
| 20 | + * |
| 21 | + * @file |
| 22 | + * @ingroup SpecialPage |
19 | 23 | */ |
20 | 24 | |
21 | 25 | /** |
22 | | - * Implements Special:Recentchanges |
| 26 | + * A special page that lists last changes made to the wiki |
| 27 | + * |
23 | 28 | * @ingroup SpecialPage |
24 | 29 | */ |
25 | 30 | class SpecialRecentChanges extends IncludableSpecialPage { |
Index: trunk/phase3/includes/specials/SpecialProtectedtitles.php |
— | — | @@ -1,5 +1,6 @@ |
2 | 2 | <?php |
3 | 3 | /** |
| 4 | + * Implements Special:Protectedtitles |
4 | 5 | * |
5 | 6 | * This program is free software; you can redistribute it and/or modify |
6 | 7 | * it under the terms of the GNU General Public License as published by |
— | — | @@ -15,15 +16,14 @@ |
16 | 17 | * with this program; if not, write to the Free Software Foundation, Inc., |
17 | 18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
18 | 19 | * http://www.gnu.org/copyleft/gpl.html |
19 | | - */ |
20 | | - |
21 | | -/** |
| 20 | + * |
22 | 21 | * @file |
23 | 22 | * @ingroup SpecialPage |
24 | 23 | */ |
25 | 24 | |
26 | 25 | /** |
27 | | - * @todo document |
| 26 | + * A special page that list protected titles from creation |
| 27 | + * |
28 | 28 | * @ingroup SpecialPage |
29 | 29 | */ |
30 | 30 | class ProtectedTitlesForm { |
Index: trunk/phase3/includes/specials/SpecialRevisiondelete.php |
— | — | @@ -1,5 +1,6 @@ |
2 | 2 | <?php |
3 | 3 | /** |
| 4 | + * Implements Special:Revisiondelete |
4 | 5 | * |
5 | 6 | * This program is free software; you can redistribute it and/or modify |
6 | 7 | * it under the terms of the GNU General Public License as published by |
— | — | @@ -15,16 +16,17 @@ |
16 | 17 | * with this program; if not, write to the Free Software Foundation, Inc., |
17 | 18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
18 | 19 | * http://www.gnu.org/copyleft/gpl.html |
| 20 | + * |
| 21 | + * @file |
| 22 | + * @ingroup SpecialPage |
19 | 23 | */ |
20 | 24 | |
21 | 25 | /** |
22 | 26 | * Special page allowing users with the appropriate permissions to view |
23 | 27 | * and hide revisions. Log items can also be hidden. |
24 | 28 | * |
25 | | - * @file |
26 | 29 | * @ingroup SpecialPage |
27 | 30 | */ |
28 | | - |
29 | 31 | class SpecialRevisionDelete extends UnlistedSpecialPage { |
30 | 32 | /** Skin object */ |
31 | 33 | var $skin; |
Index: trunk/phase3/includes/specials/SpecialUncategorizedpages.php |
— | — | @@ -1,5 +1,6 @@ |
2 | 2 | <?php |
3 | 3 | /** |
| 4 | + * Implements Special:Uncategorizedpages |
4 | 5 | * |
5 | 6 | * This program is free software; you can redistribute it and/or modify |
6 | 7 | * it under the terms of the GNU General Public License as published by |
— | — | @@ -15,15 +16,14 @@ |
16 | 17 | * with this program; if not, write to the Free Software Foundation, Inc., |
17 | 18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
18 | 19 | * http://www.gnu.org/copyleft/gpl.html |
19 | | - */ |
20 | | - |
21 | | -/** |
| 20 | + * |
22 | 21 | * @file |
23 | 22 | * @ingroup SpecialPage |
24 | 23 | */ |
25 | 24 | |
26 | 25 | /** |
27 | 26 | * A special page looking for page without any category. |
| 27 | + * |
28 | 28 | * @ingroup SpecialPage |
29 | 29 | */ |
30 | 30 | class UncategorizedPagesPage extends PageQueryPage { |
Index: trunk/phase3/includes/specials/SpecialPrefixindex.php |
— | — | @@ -1,5 +1,6 @@ |
2 | 2 | <?php |
3 | 3 | /** |
| 4 | + * Implements Special:Prefixindex |
4 | 5 | * |
5 | 6 | * This program is free software; you can redistribute it and/or modify |
6 | 7 | * it under the terms of the GNU General Public License as published by |
— | — | @@ -15,10 +16,14 @@ |
16 | 17 | * with this program; if not, write to the Free Software Foundation, Inc., |
17 | 18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
18 | 19 | * http://www.gnu.org/copyleft/gpl.html |
| 20 | + * |
| 21 | + * @file |
| 22 | + * @ingroup SpecialPage |
19 | 23 | */ |
20 | 24 | |
21 | 25 | /** |
22 | | - * implements Special:Prefixindex |
| 26 | + * Implements Special:Prefixindex |
| 27 | + * |
23 | 28 | * @ingroup SpecialPage |
24 | 29 | */ |
25 | 30 | class SpecialPrefixindex extends SpecialAllpages { |
Index: trunk/phase3/includes/specials/SpecialUncategorizedcategories.php |
— | — | @@ -1,5 +1,6 @@ |
2 | 2 | <?php |
3 | 3 | /** |
| 4 | + * Implements Special:Uncategorizedcategories |
4 | 5 | * |
5 | 6 | * This program is free software; you can redistribute it and/or modify |
6 | 7 | * it under the terms of the GNU General Public License as published by |
— | — | @@ -15,15 +16,14 @@ |
16 | 17 | * with this program; if not, write to the Free Software Foundation, Inc., |
17 | 18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
18 | 19 | * http://www.gnu.org/copyleft/gpl.html |
19 | | - */ |
20 | | - |
21 | | -/** |
| 20 | + * |
22 | 21 | * @file |
23 | 22 | * @ingroup SpecialPage |
24 | 23 | */ |
25 | 24 | |
26 | 25 | /** |
27 | | - * implements Special:Uncategorizedcategories |
| 26 | + * A special page that lists uncategorized categories |
| 27 | + * |
28 | 28 | * @ingroup SpecialPage |
29 | 29 | */ |
30 | 30 | class UncategorizedCategoriesPage extends UncategorizedPagesPage { |
Index: trunk/phase3/includes/specials/SpecialUnusedcategories.php |
— | — | @@ -1,5 +1,6 @@ |
2 | 2 | <?php |
3 | 3 | /** |
| 4 | + * Implements Special:Unusedcategories |
4 | 5 | * |
5 | 6 | * This program is free software; you can redistribute it and/or modify |
6 | 7 | * it under the terms of the GNU General Public License as published by |
— | — | @@ -15,9 +16,7 @@ |
16 | 17 | * with this program; if not, write to the Free Software Foundation, Inc., |
17 | 18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
18 | 19 | * http://www.gnu.org/copyleft/gpl.html |
19 | | - */ |
20 | | - |
21 | | -/** |
| 20 | + * |
22 | 21 | * @file |
23 | 22 | * @ingroup SpecialPage |
24 | 23 | */ |