Index: trunk/phase3/maintenance/dumpLinks.php |
— | — | @@ -26,7 +26,7 @@ |
27 | 27 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
28 | 28 | * http://www.gnu.org/copyleft/gpl.html |
29 | 29 | * |
30 | | - * @ingroup Mainatenance |
| 30 | + * @ingroup Maintenance |
31 | 31 | */ |
32 | 32 | |
33 | 33 | require_once( dirname( __FILE__ ) . '/Maintenance.php' ); |
Index: trunk/phase3/maintenance/importSiteScripts.php |
— | — | @@ -1,8 +1,11 @@ |
2 | 2 | <?php |
3 | 3 | /** |
4 | | - * Maintenance script to import all scripts in the MediaWiki namespace from a |
| 4 | + * Maintenance script to import all scripts in the MediaWiki namespace from a |
5 | 5 | * local site. |
| 6 | + * @file |
| 7 | + * @ingroup Maintenance |
6 | 8 | */ |
| 9 | + |
7 | 10 | require_once( dirname( __FILE__ ) . '/Maintenance.php' ); |
8 | 11 | |
9 | 12 | class ImportSiteScripts extends Maintenance { |
Index: trunk/phase3/maintenance/proxy_check.php |
— | — | @@ -3,6 +3,7 @@ |
4 | 4 | * Command line script to check for an open proxy at a specified location |
5 | 5 | * |
6 | 6 | * @file |
| 7 | + * @ingroup Maintenance |
7 | 8 | */ |
8 | 9 | |
9 | 10 | if( php_sapi_name() != 'cli' ) { |
Index: trunk/phase3/maintenance/refreshImageMetadata.php |
— | — | @@ -24,7 +24,7 @@ |
25 | 25 | * |
26 | 26 | * @file |
27 | 27 | * @author Brian Wolff |
28 | | - * @ingroup maintenance |
| 28 | + * @ingroup Maintenance |
29 | 29 | */ |
30 | 30 | |
31 | 31 | require_once( dirname( __FILE__ ) . '/Maintenance.php' ); |
Index: trunk/phase3/maintenance/formatInstallDoc.php |
— | — | @@ -1,4 +1,7 @@ |
2 | 2 | <?php |
| 3 | +/** |
| 4 | + * @ingroup Maintenance |
| 5 | + */ |
3 | 6 | |
4 | 7 | require_once( dirname( __FILE__ ) .'/Maintenance.php' ); |
5 | 8 | |
Index: trunk/phase3/maintenance/parse.php |
— | — | @@ -27,7 +27,7 @@ |
28 | 28 | * </p>$ |
29 | 29 | * @endcode |
30 | 30 | * |
31 | | - * @inGroup Maintenance |
| 31 | + * @ingroup Maintenance |
32 | 32 | * @author Antoine Musso <hashar at free dot fr> |
33 | 33 | * @license GNU General Public License 2.0 or later |
34 | 34 | */ |
Index: trunk/phase3/maintenance/Maintenance.php |
— | — | @@ -20,6 +20,11 @@ |
21 | 21 | * @defgroup Maintenance Maintenance |
22 | 22 | */ |
23 | 23 | |
| 24 | +/** |
| 25 | + * @defgroup MaintenanceArchive Maintenance archives |
| 26 | + * @ingroup Maintenance |
| 27 | + */ |
| 28 | + |
24 | 29 | // Define this so scripts can easily find doMaintenance.php |
25 | 30 | define( 'RUN_MAINTENANCE_IF_MAIN', dirname( __FILE__ ) . '/doMaintenance.php' ); |
26 | 31 | define( 'DO_MAINTENANCE', RUN_MAINTENANCE_IF_MAIN ); // original name, harmless |
Index: trunk/phase3/maintenance/language/generateCollationData.php |
— | — | @@ -1,4 +1,8 @@ |
2 | 2 | <?php |
| 3 | +/** |
| 4 | + * @ingroup Maintenance |
| 5 | + * @file |
| 6 | + */ |
3 | 7 | |
4 | 8 | require_once( dirname( __FILE__ ) .'/../Maintenance.php' ); |
5 | 9 | |
Index: trunk/phase3/maintenance/purgeStaleMemcachedText.php |
— | — | @@ -1,4 +1,8 @@ |
2 | 2 | <?php |
| 3 | +/** |
| 4 | + * @ingroup Maintenance Memcached |
| 5 | + * @file |
| 6 | + */ |
3 | 7 | |
4 | 8 | require_once( dirname( __FILE__ ) . '/commandLine.inc' ); |
5 | 9 | |
Index: trunk/phase3/maintenance/rebuildImages.php |
— | — | @@ -27,7 +27,7 @@ |
28 | 28 | * |
29 | 29 | * @file |
30 | 30 | * @author Brion Vibber <brion at pobox.com> |
31 | | - * @ingroup maintenance |
| 31 | + * @ingroup Maintenance |
32 | 32 | */ |
33 | 33 | |
34 | 34 | require_once( dirname( __FILE__ ) . '/Maintenance.php' ); |
Index: trunk/phase3/maintenance/purgeParserCache.php |
— | — | @@ -1,4 +1,8 @@ |
2 | 2 | <?php |
| 3 | +/** |
| 4 | + * @ingroup Maintenance |
| 5 | + * @file |
| 6 | + */ |
3 | 7 | |
4 | 8 | require( dirname( __FILE__ ) . '/Maintenance.php' ); |
5 | 9 | |
Index: trunk/phase3/maintenance/locking/LockServerDaemon.php |
— | — | @@ -1,5 +1,10 @@ |
2 | 2 | <?php |
3 | 3 | /** |
| 4 | + * @file |
| 5 | + * @ingroup LockManager Maintenance |
| 6 | + */ |
| 7 | + |
| 8 | +/** |
4 | 9 | * This code should not require MediaWiki setup or PHP files. |
5 | 10 | */ |
6 | 11 | if ( php_sapi_name() !== 'cli' ) { |