Adding cache related stuff to a new 'Cache' subpackage
authorÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Tue, 12 Apr 2005 01:29:21 +0000 (01:29 +0000)
committerÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Tue, 12 Apr 2005 01:29:21 +0000 (01:29 +0000)
includes/BlockCache.php
includes/CacheManager.php
includes/LinkCache.php
includes/MessageCache.php
includes/MessageCacheHints.php
includes/ObjectCache.php
includes/Parser.php
includes/ParserCache.php
includes/Sanitizer.php

index ee8e2b8..c64adc1 100644 (file)
@@ -2,6 +2,7 @@
 /**
  * Contain the blockcache class
  * @package MediaWiki
+ * @package Cache
  */
 
 /**
index ebcc7a9..0360ab8 100644 (file)
@@ -2,6 +2,7 @@
 /**
  * Contain the CacheManager class
  * @package MediaWiki
+ * @subpackage Cache
  */
 
 /**
index 4a57909..c6b8b96 100644 (file)
@@ -2,6 +2,7 @@
 /**
  * Cache for article titles (prefixed DB keys) and ids linked from one source
  * @package MediaWiki
+ * @subpackage Cache
  */
 
 /**
index 7a0616c..6433658 100755 (executable)
@@ -2,6 +2,7 @@
 /**
  *
  * @package MediaWiki
+ * @subpackage Cache
  */
 
 /** */
index 76a5e6c..70b720f 100644 (file)
@@ -1,6 +1,7 @@
 <?
 /**
  * @package MediaWiki
+ * @subpackage Cache
  */ 
 
 /** 
index 245bb38..e4f45ee 100644 (file)
@@ -1,4 +1,8 @@
 <?php
+/**
+ * @package MediaWiki
+ * @subpackage Cache
+ */
 
 if (!defined('MEDIAWIKI')) die( "Not a valid entry point");
 
index 1d49620..e517d57 100644 (file)
@@ -3,6 +3,7 @@
  * File for Parser and related classes
  *
  * @package MediaWiki
+ * @subpackage Parser
  */
 
 /** */
index 4447869..b156ccc 100644 (file)
@@ -2,6 +2,7 @@
 /**
  *
  * @package MediaWiki
+ * @subpackage Cache
  */
 
 /**
index 576bd44..9078af9 100644 (file)
@@ -22,6 +22,7 @@
  * http://www.gnu.org/copyleft/gpl.html
  *
  * @package MediaWiki
+ * @subpackage Parser
  */
 
 class Sanitizer {