Standardised file description headers; second part
authorAlexandre Emsenhuber <ialex@users.mediawiki.org>
Sun, 15 Aug 2010 07:16:58 +0000 (07:16 +0000)
committerAlexandre Emsenhuber <ialex@users.mediawiki.org>
Sun, 15 Aug 2010 07:16:58 +0000 (07:16 +0000)
41 files changed:
includes/specials/SpecialNewimages.php
includes/specials/SpecialNewpages.php
includes/specials/SpecialPopularpages.php
includes/specials/SpecialPreferences.php
includes/specials/SpecialPrefixindex.php
includes/specials/SpecialProtectedpages.php
includes/specials/SpecialProtectedtitles.php
includes/specials/SpecialRandompage.php
includes/specials/SpecialRandomredirect.php
includes/specials/SpecialRecentchanges.php
includes/specials/SpecialRecentchangeslinked.php
includes/specials/SpecialResetpass.php
includes/specials/SpecialRevisionMove.php
includes/specials/SpecialRevisiondelete.php
includes/specials/SpecialSearch.php
includes/specials/SpecialSelenium.php
includes/specials/SpecialShortpages.php
includes/specials/SpecialSpecialpages.php
includes/specials/SpecialStatistics.php
includes/specials/SpecialTags.php
includes/specials/SpecialUncategorizedcategories.php
includes/specials/SpecialUncategorizedimages.php
includes/specials/SpecialUncategorizedpages.php
includes/specials/SpecialUncategorizedtemplates.php
includes/specials/SpecialUndelete.php
includes/specials/SpecialUnlockdb.php
includes/specials/SpecialUnusedcategories.php
includes/specials/SpecialUnusedimages.php
includes/specials/SpecialUnusedtemplates.php
includes/specials/SpecialUnwatchedpages.php
includes/specials/SpecialUpload.php
includes/specials/SpecialUserlogin.php
includes/specials/SpecialUserlogout.php
includes/specials/SpecialUserrights.php
includes/specials/SpecialVersion.php
includes/specials/SpecialWantedcategories.php
includes/specials/SpecialWantedfiles.php
includes/specials/SpecialWantedpages.php
includes/specials/SpecialWantedtemplates.php
includes/specials/SpecialWatchlist.php
includes/specials/SpecialWithoutinterwiki.php

index 91d7ee6..898f2e2 100644 (file)
@@ -1,5 +1,6 @@
 <?php
 /**
+ * Implements Special:Newimages
  *
  * 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
  * 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 SpecialPage
- * FIXME: this code is crap, should use Pager and Database::select().
  */
 
+/**
+ * @todo FIXME: this code is crap, should use Pager and Database::select().
+ */
 function wfSpecialNewimages( $par, $specialPage ) {
        global $wgUser, $wgOut, $wgLang, $wgRequest, $wgMiserMode;
 
index 6c261fd..0b73939 100644 (file)
@@ -1,5 +1,6 @@
 <?php
 /**
+ * Implements Special:Newpages
  *
  * 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
  * 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 SpecialPage
  */
 
 /**
- * implements Special:Newpages
+ * A special page that list newly created pages
+ *
  * @ingroup SpecialPage
  */
 class SpecialNewpages extends IncludableSpecialPage {
index 0e8c62d..375cefd 100644 (file)
@@ -1,5 +1,6 @@
 <?php
 /**
+ * Implements Special:PopularPages
  *
  * 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
  * 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 SpecialPage
  */
 
 /**
- * implements Special:Popularpages
+ * A special page that list most viewed pages
+ *
  * @ingroup SpecialPage
  */
 class PopularPagesPage extends QueryPage {
index 720d516..3db1107 100644 (file)
@@ -1,5 +1,6 @@
 <?php
 /**
+ * Implements Special:Preferences
  *
  * 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
  * 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 SpecialPage
  */
 
+/**
+ * A special page that allows users to change their preferences
+ *
+ * @ingroup SpecialPage
+ */
 class SpecialPreferences extends SpecialPage {
        function __construct() {
                parent::__construct( 'Preferences' );
index d5f014e..874d755 100644 (file)
@@ -1,5 +1,6 @@
 <?php
 /**
+ * Implements Special:Prefixindex
  *
  * 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
  * 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 SpecialPage
  */
 
 /**
- * implements Special:Prefixindex
+ * Implements Special:Prefixindex
+ *
  * @ingroup SpecialPage
  */
 class SpecialPrefixindex extends SpecialAllpages {
index 304af71..7c6999b 100644 (file)
@@ -1,5 +1,6 @@
 <?php
 /**
+ * Implements Special:Protectedpages
  *
  * 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
  * 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 SpecialPage
  */
 
 /**
- * @todo document
+ * A special page that lists protected pages
+ *
  * @ingroup SpecialPage
  */
 class ProtectedPagesForm {
index 67f0a7e..2fab586 100644 (file)
@@ -1,5 +1,6 @@
 <?php
 /**
+ * Implements Special:Protectedtitles
  *
  * 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
  * 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 SpecialPage
  */
 
 /**
- * @todo document
+ * A special page that list protected titles from creation
+ *
  * @ingroup SpecialPage
  */
 class ProtectedTitlesForm {
index 132db89..6299f38 100644 (file)
@@ -1,5 +1,6 @@
 <?php
 /**
+ * Implements Special:Randompage
  *
  * 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
  * 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 SpecialPage
+ * @author Rob Church <robchur@gmail.com>, Ilmari Karonen
  */
 
 /**
  * Special page to direct the user to a random page
  *
  * @ingroup SpecialPage
- * @author Rob Church <robchur@gmail.com>, Ilmari Karonen
- * @license GNU General Public Licence 2.0 or later
  */
 class RandomPage extends SpecialPage {
        private $namespaces;  // namespaces to select pages from
index fe2629d..88c81b3 100644 (file)
@@ -1,5 +1,6 @@
 <?php
 /**
+ * Implements Special:Randomredirect
  *
  * 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
  * 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 SpecialPage
+ * @author Rob Church <robchur@gmail.com>, Ilmari Karonen
  */
 
 /**
  * Special page to direct the user to a random redirect page (minus the second redirect)
  *
  * @ingroup SpecialPage
- * @author Rob Church <robchur@gmail.com>, Ilmari Karonen
- * @license GNU General Public Licence 2.0 or later
  */
 class SpecialRandomredirect extends RandomPage {
        function __construct(){
index 4103b98..9dad4a0 100644 (file)
@@ -1,5 +1,6 @@
 <?php
 /**
+ * Implements Special:Recentchanges
  *
  * 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
  * 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 SpecialPage
  */
 
 /**
- * Implements Special:Recentchanges
+ * A special page that lists last changes made to the wiki
+ *
  * @ingroup SpecialPage
  */
 class SpecialRecentChanges extends IncludableSpecialPage {
index 3ccd914..d29cf07 100644 (file)
@@ -1,5 +1,6 @@
 <?php
 /**
+ * Implements Special:Recentchangeslinked
  *
  * 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
  * 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 SpecialPage
  */
 
 /**
  * This is to display changes made to all articles linked in an article.
+ *
  * @ingroup SpecialPage
  */
 class SpecialRecentchangeslinked extends SpecialRecentchanges {
index de832d2..cf0761f 100644 (file)
@@ -1,5 +1,6 @@
 <?php
 /**
+ * Implements Special:Resetpass
  *
  * 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
  * 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 SpecialPage
  */
 
 /**
  * Let users recover their password.
+ *
  * @ingroup SpecialPage
  */
 class SpecialResetpass extends SpecialPage {
index c0062c6..b3b7d6c 100644 (file)
@@ -1,5 +1,6 @@
 <?php
 /**
+ * Implements Special:RevisionMove
  *
  * 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
@@ -15,6 +16,9 @@
  * 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 SpecialPage
  */
 
 /**
  * **** NOTE: This feature is EXPERIMENTAL.  ****
  * **** Do not use on any productive system. ****
  *
- * @file
  * @ingroup SpecialPage
- */
-
-/* TODO In case page_deleted gets introduced some day, use it.
- *      Currently it is possible with RevisionMove to make the latest revision
- *      of a page a RevisionDeleted one. When that happens, the user is presented
- *      an empty page with no error message whatsoever (in case he is not permitted
- *      to view deleted edits).
+ * @todo In case page_deleted gets introduced some day, use it.
+ *       Currently it is possible with RevisionMove to make the latest revision
+ *       of a page a RevisionDeleted one. When that happens, the user is presented
+ *       an empty page with no error message whatsoever (in case he is not permitted
+ *       to view deleted edits).
 */
-
 class SpecialRevisionMove extends UnlistedSpecialPage {
        # common objects
        var $mOldTitle; # Title object.
index cad4a0b..0a7b642 100644 (file)
@@ -1,5 +1,6 @@
 <?php
 /**
+ * Implements Special:Revisiondelete
  *
  * 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
  * 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 SpecialPage
  */
 
 /**
  * Special page allowing users with the appropriate permissions to view
  * and hide revisions. Log items can also be hidden.
  *
- * @file
  * @ingroup SpecialPage
  */
-
 class SpecialRevisionDelete extends UnlistedSpecialPage {
        /** Skin object */
        var $skin;
index 12a70f9..690c6b5 100644 (file)
@@ -1,6 +1,8 @@
 <?php
 /**
- * Copyright (C) 2004 Brion Vibber <brion@pobox.com>
+ * Implements Special:Search
+ *
+ * Copyright © 2004 Brion Vibber <brion@pobox.com>
  *
  * 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
  * 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
- */
-
-/**
- * Run text & title search and display the output
+ *
  * @file
  * @ingroup SpecialPage
  */
index 9b11fd5..4a7a0d1 100644 (file)
@@ -1,9 +1,15 @@
 <?php
-
 /**
- * TODO: remove this feature
+ * Implements Special:Selenium
+ *
+ * @file
+ * @ingroup SpecialPage
+ * @todo Remove this feature
  */
 
+/**
+ * @ingroup SpecialPage
+ */
 class SpecialSelenium extends SpecialPage {
        function __construct() {
                parent::__construct( 'Selenium', 'selenium', false );
index acbdbf4..c1aa9fc 100644 (file)
@@ -1,5 +1,6 @@
 <?php
 /**
+ * Implements Special:Shortpages
  *
  * 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
@@ -15,9 +16,7 @@
  * 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 SpecialPage
  */
@@ -25,6 +24,7 @@
 /**
  * SpecialShortpages extends QueryPage. It is used to return the shortest
  * pages in the database.
+ *
  * @ingroup SpecialPage
  */
 class ShortPagesPage extends QueryPage {
index 25134bd..42ccbb0 100644 (file)
@@ -1,5 +1,6 @@
 <?php
 /**
+ * Implements Special:Specialpages
  *
  * 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
  * 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 SpecialPage
  */
+
 /**
- * @file
+ * A special page that lists special pages
+ *
  * @ingroup SpecialPage
  */
 class SpecialSpecialpages extends UnlistedSpecialPage {
index 7438f2d..1d06d89 100644 (file)
@@ -1,5 +1,6 @@
 <?php
 /**
+ * Implements Special:Statistics
  *
  * 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
  * 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 SpecialPage
  */
 
 /**
  * Special page lists various statistics, including the contents of
  * `site_stats`, plus page view details if enabled
  *
- * @file
  * @ingroup SpecialPage
  */
-
-/**
- * Some statistics about the wiki
- */
 class SpecialStatistics extends SpecialPage {
        
        private $views, $edits, $good, $images, $total, $users,
index 658ae5c..eee1664 100644 (file)
@@ -1,5 +1,6 @@
 <?php
 /**
+ * Implements Special:Tags
  *
  * 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
  * 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 SpecialPage
  */
 
 if (!defined('MEDIAWIKI'))
        die;
 
+/**
+ * A special page that lists tags for edits
+ *
+ * @ingroup SpecialPage
+ */
 class SpecialTags extends SpecialPage {
 
        function __construct() {
index 36a2de4..bea916b 100644 (file)
@@ -1,5 +1,6 @@
 <?php
 /**
+ * Implements Special:Uncategorizedcategories
  *
  * 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
  * 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 SpecialPage
  */
 
 /**
- * implements Special:Uncategorizedcategories
+ * A special page that lists uncategorized categories
+ *
  * @ingroup SpecialPage
  */
 class UncategorizedCategoriesPage extends UncategorizedPagesPage {
index 042bd84..c425403 100644 (file)
@@ -1,5 +1,6 @@
 <?php
 /**
+ * Implements Special:Uncategorizedimages
  *
  * 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
  * 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
- */
-
-/**
- * Special page lists images which haven't been categorised
  *
  * @file
  * @ingroup SpecialPage
@@ -26,6 +23,8 @@
  */
 
 /**
+ * Special page lists images which haven't been categorised
+ *
  * @ingroup SpecialPage
  */
 class UncategorizedImagesPage extends ImageQueryPage {
index af149e2..c7fef5d 100644 (file)
@@ -1,5 +1,6 @@
 <?php
 /**
+ * Implements Special:Uncategorizedpages
  *
  * 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
  * 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 SpecialPage
  */
 
 /**
  * A special page looking for page without any category.
+ *
  * @ingroup SpecialPage
  */
 class UncategorizedPagesPage extends PageQueryPage {
index a27616e..aa4e979 100644 (file)
@@ -1,5 +1,6 @@
 <?php
 /**
+ * Implements Special:Uncategorizedtemplates
  *
  * 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
  * 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 SpecialPage
+ * @author Rob Church <robchur@gmail.com>
  */
 
 /**
@@ -27,7 +27,6 @@
  * template namespace
  *
  * @ingroup SpecialPage
- * @author Rob Church <robchur@gmail.com>
  */
 class UncategorizedTemplatesPage extends UncategorizedPagesPage {
 
index e9d01bb..e6b2602 100644 (file)
@@ -1,5 +1,6 @@
 <?php
 /**
+ * Implements Special:Undelete
  *
  * 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
  * 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 SpecialPage
  */
 
 /**
  * Used to show archived pages and eventually restore them.
+ *
  * @ingroup SpecialPage
  */
 class PageArchive {
index 201c1fa..c71b554 100644 (file)
@@ -1,5 +1,6 @@
 <?php
 /**
+ * Implements Special:Unlockdb
  *
  * 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
@@ -15,6 +16,9 @@
  * 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 SpecialPage
  */
 
 /**
index 866ce4b..a20efe0 100644 (file)
@@ -1,5 +1,6 @@
 <?php
 /**
+ * Implements Special:Unusedcategories
  *
  * 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
@@ -15,9 +16,7 @@
  * 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 SpecialPage
  */
index 932e82e..88600e5 100644 (file)
@@ -1,5 +1,6 @@
 <?php
 /**
+ * Implements Special:Unusedimages
  *
  * 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
  * 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 SpecialPage
  */
 
 /**
- * implements Special:Unusedimages
+ * A special page that lists unused images
+ *
  * @ingroup SpecialPage
  */
 class UnusedimagesPage extends ImageQueryPage {
index c3a9908..68bf95a 100644 (file)
@@ -1,5 +1,8 @@
 <?php
 /**
+ * Implements Special:Unusedtemplates
+ *
+ * Copyright © 2006 Rob Church
  *
  * 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
  * 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 SpecialPage
+ * @author Rob Church <robchur@gmail.com>
  */
 
 /**
- * implements Special:Unusedtemplates
- * @author Rob Church <robchur@gmail.com>
- * @copyright © 2006 Rob Church
- * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
+ * A special page that lists unused templates
+ *
  * @ingroup SpecialPage
  */
 class UnusedtemplatesPage extends QueryPage {
index 71bdee8..ecd62cb 100644 (file)
@@ -1,5 +1,8 @@
 <?php
 /**
+ * Implements Special:Unwatchedpages
+ *
+ * Copyright © 2005 Ævar Arnfjörð Bjarmason
  *
  * 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
  * 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 SpecialPage
+ * @author Ævar Arnfjörð Bjarmason <avarab@gmail.com>
  */
 
 /**
  * A special page that displays a list of pages that are not on anyones watchlist.
- * Implements Special:Unwatchedpages
  *
  * @ingroup SpecialPage
- * @author Ævar Arnfjörð Bjarmason <avarab@gmail.com>
- * @copyright Copyright © 2005, Ævar Arnfjörð Bjarmason
- * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
  */
 class UnwatchedpagesPage extends QueryPage {
 
index a4aa086..4fce3c6 100644 (file)
@@ -1,5 +1,6 @@
 <?php
 /**
+ * Implements Special:Upload
  *
  * 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
  * 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 SpecialPage
+ * @ingroup Upload
  */
 
 /**
- * @file
+ * Form for handling uploads and special page.
+ *
  * @ingroup SpecialPage
  * @ingroup Upload
- *
- * Form for handling uploads and special page.
  */
-
 class SpecialUpload extends SpecialPage {
        /**
         * Constructor : initialise object
index 042d05b..6a5799e 100644 (file)
@@ -1,5 +1,6 @@
 <?php
 /**
+ * Implements Special:Userlogin
  *
  * 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
@@ -15,9 +16,7 @@
  * 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 SpecialPage
  */
@@ -36,7 +35,8 @@ function wfSpecialUserlogin( $par = '' ) {
 }
 
 /**
- * implements Special:Login
+ * Implements Special:Login
+ *
  * @ingroup SpecialPage
  */
 class LoginForm {
index b6b38cd..39b5b28 100644 (file)
@@ -1,5 +1,6 @@
 <?php
 /**
+ * Implements Special:Upload
  *
  * 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
  * 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 SpecialPage
  */
 
 /**
  * Implements Special:Userlogout
+ *
  * @ingroup SpecialPage
  */
 class SpecialUserlogout extends UnlistedSpecialPage {
index 95dcb64..c12c600 100644 (file)
@@ -1,5 +1,6 @@
 <?php
 /**
+ * Implements Special:Userrights
  *
  * 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
  * 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
- */
-
-/**
- * Special page to allow managing user group membership
  *
  * @file
  * @ingroup SpecialPage
  */
 
 /**
- * A class to manage user levels rights.
+ * Special page to allow managing user group membership
+ *
  * @ingroup SpecialPage
  */
 class UserrightsPage extends SpecialPage {
index 13db183..147a09e 100644 (file)
@@ -1,6 +1,9 @@
 <?php
-
 /**
+ * Implements Special:Version
+ *
+ * Copyright © 2005 Ævar Arnfjörð Bjarmason
+ *
  * 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
  * 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 SpecialPage
  */
 
 /**
  * Give information about the version of MediaWiki, PHP, the DB and extensions
  *
  * @ingroup SpecialPage
- *
- * @author Ævar Arnfjörð Bjarmason <avarab@gmail.com>
- * @copyright Copyright © 2005, Ævar Arnfjörð Bjarmason
- * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
  */
 class SpecialVersion extends SpecialPage {
        
index a7a21cc..b588dbf 100644 (file)
@@ -1,5 +1,8 @@
 <?php
 /**
+ * Implements Special:Wantedcategories
+ *
+ * Copyright © 2005 Ævar Arnfjörð Bjarmason
  *
  * 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
  * 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 SpecialPage
  */
 
 /**
  * A querypage to list the most wanted categories - implements Special:Wantedcategories
  *
- * @file
  * @ingroup SpecialPage
- *
- * @author Ævar Arnfjörð Bjarmason <avarab@gmail.com>
- * @copyright Copyright © 2005, Ævar Arnfjörð Bjarmason
- * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
  */
 class WantedCategoriesPage extends WantedQueryPage {
 
index 493bcbb..28e82a8 100644 (file)
@@ -1,5 +1,8 @@
 <?php
 /**
+ * Implements Special:Wantedfiles
+ *
+ * Copyright © 2008 Soxred93
  *
  * 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
  * 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 SpecialPage
+ * @author Soxred93 <soxred93@gmail.com>
  */
 
 /**
- * Querypage that lists the most wanted files - implements Special:Wantedfiles
+ * Querypage that lists the most wanted files
  *
- * @file
  * @ingroup SpecialPage
- *
- * @author Soxred93 <soxred93@gmail.com>
- * @copyright Copyright © 2008, Soxred93
- * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
  */
 class WantedFilesPage extends WantedQueryPage {
 
index 0fd9bb8..fb988b7 100644 (file)
@@ -1,5 +1,6 @@
 <?php
 /**
+ * Implements Special:Wantedpages
  *
  * 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
  * 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 SpecialPage
  */
 
 /**
- * @file
- * implements Special:Wantedpages
+ * A special page that lists most linked pages that does not exist
+ *
  * @ingroup SpecialPage
  */
 class WantedPagesPage extends WantedQueryPage {
index ade1690..ae43c23 100644 (file)
@@ -1,5 +1,10 @@
 <?php
 /**
+ * Implements Special:Wantedtemplates
+ *
+ * Copyright © 2008, Danny B.
+ * Based on SpecialWantedcategories.php by Ævar Arnfjörð Bjarmason <avarab@gmail.com>
+ * makeWlhLink() taken from SpecialMostlinkedtemplates by Rob Church <robchur@gmail.com>
  *
  * 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
  * 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 SpecialPage
+ * @author Danny B.
  */
 
 /**
- * A querypage to list the most wanted templates - implements Special:Wantedtemplates
- * based on SpecialWantedcategories.php by Ævar Arnfjörð Bjarmason <avarab@gmail.com>
- * makeWlhLink() taken from SpecialMostlinkedtemplates by Rob Church <robchur@gmail.com>
+ * A querypage to list the most wanted templates
  *
- * @file
  * @ingroup SpecialPage
- *
- * @author Danny B.
- * @copyright Copyright © 2008, Danny B.
- * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
  */
 class WantedTemplatesPage extends WantedQueryPage {
 
index ec230a2..d0eda25 100644 (file)
@@ -1,7 +1,6 @@
 <?php
 /**
- * @file
- * @ingroup SpecialPage Watchlist
+ * Implements Special:Watchlist
  *
  * 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
@@ -17,6 +16,9 @@
  * 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 SpecialPage Watchlist
  */
 
 /**
index 0414ef8..6e163f2 100644 (file)
@@ -1,5 +1,6 @@
 <?php
 /**
+ * Implements Special:Withoutinterwiki
  *
  * 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
  * 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 SpecialPage
+ * @author Rob Church <robchur@gmail.com>
  */
 
 /**
  * Special page lists pages without language links
  *
- * @file
  * @ingroup SpecialPage
- * @author Rob Church <robchur@gmail.com>
  */
 class WithoutInterwikiPage extends PageQueryPage {
        private $prefix = '';