* Fixed some phpdoc errors, see http://wikipedia.sf.net/doc/errors.html
authorÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Tue, 10 May 2005 08:28:33 +0000 (08:28 +0000)
committerÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Tue, 10 May 2005 08:28:33 +0000 (08:28 +0000)
includes/DateFormatter.php
includes/LinkCache.php
includes/PageHistory.php
includes/SpecialExport.php
maintenance/convertUtf8.php
maintenance/dumpHTML.inc

index 1a5e595..154e3cb 100755 (executable)
@@ -34,6 +34,8 @@ define('DF_LAST', 8);
 
 /**
  * @todo preferences, OutputPage
+ * @package MediaWiki
+ * @subpackage Parser
  */
 class DateFormatter
 {
index c6b8b96..5853f16 100644 (file)
@@ -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 {
        /** 
index 05f0b9d..43db2a9 100644 (file)
@@ -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;
index 722c119..1d517ca 100644 (file)
@@ -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;
index d8ed9de..8e9c5cc 100644 (file)
@@ -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
+?>
index 9f42a74..caf2763 100644 (file)
@@ -1,4 +1,8 @@
 <?php
+/**
+ * @package MediaWiki
+ * @subpackage Maintenance
+ */
 
 define( 'REPORTING_INTERVAL', 10 );