From: Ævar Arnfjörð Bjarmason Date: Tue, 10 May 2005 08:28:33 +0000 (+0000) Subject: * Fixed some phpdoc errors, see http://wikipedia.sf.net/doc/errors.html X-Git-Tag: 1.5.0alpha2~233 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=229495c90e82b259ff4d8b81194b6944accee362;p=lhc%2Fweb%2Fwiklou.git * Fixed some phpdoc errors, see wikipedia.sf.net/doc/errors.html --- diff --git a/includes/DateFormatter.php b/includes/DateFormatter.php index 1a5e595b73..154e3cb582 100755 --- a/includes/DateFormatter.php +++ b/includes/DateFormatter.php @@ -34,6 +34,8 @@ define('DF_LAST', 8); /** * @todo preferences, OutputPage + * @package MediaWiki + * @subpackage Parser */ class DateFormatter { diff --git a/includes/LinkCache.php b/includes/LinkCache.php index c6b8b96fb3..5853f16f22 100644 --- a/includes/LinkCache.php +++ b/includes/LinkCache.php @@ -14,8 +14,8 @@ define ('LINKCACHE_BAD', 1); define ('LINKCACHE_IMAGE', 2); /** - * * @package MediaWiki + * @subpackage Cache */ class LinkCache { // Increment $mClassVer whenever old serialized versions of this class @@ -394,6 +394,9 @@ class LinkCache { /** * Class representing a list of titles * The execute() method checks them all for existence and adds them to a LinkCache object + + + * @package MediaWikki + * @subpackage Cache */ class LinkBatch { /** diff --git a/includes/PageHistory.php b/includes/PageHistory.php index 05f0b9d300..43db2a975c 100644 --- a/includes/PageHistory.php +++ b/includes/PageHistory.php @@ -6,13 +6,13 @@ * @package MediaWiki */ +include_once ( "SpecialValidate.php" ); + /** * @todo document * @package MediaWiki */ -include_once ( "SpecialValidate.php" ) ; - class PageHistory { var $mArticle, $mTitle, $mSkin; var $lastdate; diff --git a/includes/SpecialExport.php b/includes/SpecialExport.php index 722c1191e6..1d517ca762 100644 --- a/includes/SpecialExport.php +++ b/includes/SpecialExport.php @@ -73,6 +73,10 @@ define( 'MW_EXPORT_CURRENT', 1 ); define( 'MW_EXPORT_BUFFER', 0 ); define( 'MW_EXPORT_STREAM', 1 ); +/** + * @package MediaWiki + * @subpackage SpecialPage + */ class WikiExporter { var $pageCallback = null; var $revCallback = null; diff --git a/maintenance/convertUtf8.php b/maintenance/convertUtf8.php index d8ed9dea0f..8e9c5cc804 100644 --- a/maintenance/convertUtf8.php +++ b/maintenance/convertUtf8.php @@ -19,6 +19,11 @@ die("This file is not complete; it's checked in so I don't forget it."); * 6. Go through the list, fixing up old revisions. Remove pages from the * convertlist. */ + +/** + * @package MediaWiki + * @subpackage Maintenance + */ class UtfUpdater { /** Constructor, set the database */ function UtfUpdater() { @@ -171,4 +176,4 @@ class UtfUpdater { } } -?> \ No newline at end of file +?> diff --git a/maintenance/dumpHTML.inc b/maintenance/dumpHTML.inc index 9f42a7482b..caf2763a35 100644 --- a/maintenance/dumpHTML.inc +++ b/maintenance/dumpHTML.inc @@ -1,4 +1,8 @@