Index: trunk/phase3/maintenance/checkSyntax.php |
— | — | @@ -17,6 +17,7 @@ |
18 | 18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
19 | 19 | * http://www.gnu.org/copyleft/gpl.html |
20 | 20 | * |
| 21 | + * @file |
21 | 22 | * @ingroup Maintenance |
22 | 23 | */ |
23 | 24 | |
Index: trunk/phase3/maintenance/checkAutoLoader.php |
— | — | @@ -17,6 +17,7 @@ |
18 | 18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
19 | 19 | * http://www.gnu.org/copyleft/gpl.html |
20 | 20 | * |
| 21 | + * @file |
21 | 22 | * @ingroup Maintenance |
22 | 23 | */ |
23 | 24 | |
Index: trunk/phase3/maintenance/attachLatest.php |
— | — | @@ -3,7 +3,7 @@ |
4 | 4 | * quick hackjob to fix damages imports on wikisource |
5 | 5 | * page records have page_latest wrong |
6 | 6 | * |
7 | | - * Copyright (C) 2005 Brion Vibber <brion@pobox.com> |
| 7 | + * Copyright © 2005 Brion Vibber <brion@pobox.com> |
8 | 8 | * http://www.mediawiki.org/ |
9 | 9 | * |
10 | 10 | * This program is free software; you can redistribute it and/or modify |
— | — | @@ -21,6 +21,7 @@ |
22 | 22 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
23 | 23 | * http://www.gnu.org/copyleft/gpl.html |
24 | 24 | * |
| 25 | + * @file |
25 | 26 | * @ingroup Maintenance |
26 | 27 | */ |
27 | 28 | |
Index: trunk/phase3/maintenance/backup.inc |
— | — | @@ -1,6 +1,8 @@ |
2 | 2 | <?php |
3 | 3 | /** |
4 | | - * Copyright (C) 2005 Brion Vibber <brion@pobox.com> |
| 4 | + * Base classes for database dumpers |
| 5 | + * |
| 6 | + * Copyright © 2005 Brion Vibber <brion@pobox.com> |
5 | 7 | * http://www.mediawiki.org/ |
6 | 8 | * |
7 | 9 | * This program is free software; you can redistribute it and/or modify |
Index: trunk/phase3/maintenance/cleanupWatchlist.php |
— | — | @@ -1,5 +1,5 @@ |
2 | 2 | <?php |
3 | | -/* |
| 3 | +/** |
4 | 4 | * Script to remove broken, unparseable titles in the Watchlist. |
5 | 5 | * |
6 | 6 | * Usage: php cleanupWatchlist.php [--fix] |
— | — | @@ -24,6 +24,7 @@ |
25 | 25 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
26 | 26 | * http://www.gnu.org/copyleft/gpl.html |
27 | 27 | * |
| 28 | + * @file |
28 | 29 | * @author Brion Vibber <brion at pobox.com> |
29 | 30 | * @ingroup Maintenance |
30 | 31 | */ |
Index: trunk/phase3/maintenance/7zip.inc |
— | — | @@ -1,5 +1,12 @@ |
2 | 2 | <?php |
3 | 3 | /** |
| 4 | + * 7z stream wrapper |
| 5 | + * |
| 6 | + * @file |
| 7 | + * @ingroup Maintenance |
| 8 | + */ |
| 9 | + |
| 10 | +/** |
4 | 11 | * Stream wrapper around 7za filter program. |
5 | 12 | * Required since we can't pass an open file resource to XMLReader->open() |
6 | 13 | * which is used for the text prefetch. |
Index: trunk/phase3/maintenance/cleanupTitles.php |
— | — | @@ -1,12 +1,12 @@ |
2 | 2 | <?php |
3 | | -/* |
| 3 | +/** |
4 | 4 | * Script to clean up broken, unparseable titles. |
5 | 5 | * |
6 | 6 | * Usage: php cleanupTitles.php [--fix] |
7 | 7 | * Options: |
8 | 8 | * --fix Actually clean up titles; otherwise just checks for them |
9 | 9 | * |
10 | | - * Copyright (C) 2005 Brion Vibber <brion@pobox.com> |
| 10 | + * Copyright © 2005 Brion Vibber <brion@pobox.com> |
11 | 11 | * http://www.mediawiki.org/ |
12 | 12 | * |
13 | 13 | * This program is free software; you can redistribute it and/or modify |
— | — | @@ -24,6 +24,7 @@ |
25 | 25 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
26 | 26 | * http://www.gnu.org/copyleft/gpl.html |
27 | 27 | * |
| 28 | + * @file |
28 | 29 | * @author Brion Vibber <brion at pobox.com> |
29 | 30 | * @ingroup Maintenance |
30 | 31 | */ |
Index: trunk/phase3/maintenance/checkImages.php |
— | — | @@ -17,6 +17,7 @@ |
18 | 18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
19 | 19 | * http://www.gnu.org/copyleft/gpl.html |
20 | 20 | * |
| 21 | + * @file |
21 | 22 | * @ingroup Maintenance |
22 | 23 | */ |
23 | 24 | require_once( dirname( __FILE__ ) . '/Maintenance.php' ); |
Index: trunk/phase3/maintenance/cleanupImages.php |
— | — | @@ -1,5 +1,5 @@ |
2 | 2 | <?php |
3 | | -/* |
| 3 | +/** |
4 | 4 | * Script to clean up broken, unparseable upload filenames. |
5 | 5 | * |
6 | 6 | * Usage: php cleanupImages.php [--fix] |
— | — | @@ -24,6 +24,7 @@ |
25 | 25 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
26 | 26 | * http://www.gnu.org/copyleft/gpl.html |
27 | 27 | * |
| 28 | + * @file |
28 | 29 | * @author Brion Vibber <brion at pobox.com> |
29 | 30 | * @ingroup Maintenance |
30 | 31 | */ |
Index: trunk/phase3/maintenance/cleanupTable.inc |
— | — | @@ -17,6 +17,7 @@ |
18 | 18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
19 | 19 | * http://www.gnu.org/copyleft/gpl.html |
20 | 20 | * |
| 21 | + * @file |
21 | 22 | * @ingroup Maintenance |
22 | 23 | */ |
23 | 24 | |
Index: trunk/phase3/maintenance/benchmarkPurge.php |
— | — | @@ -17,6 +17,7 @@ |
18 | 18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
19 | 19 | * http://www.gnu.org/copyleft/gpl.html |
20 | 20 | * |
| 21 | + * @file |
21 | 22 | * @ingroup Maintenance |
22 | 23 | */ |
23 | 24 | |
Index: trunk/phase3/maintenance/checkUsernames.php |
— | — | @@ -19,6 +19,7 @@ |
20 | 20 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
21 | 21 | * http://www.gnu.org/copyleft/gpl.html |
22 | 22 | * |
| 23 | + * @file |
23 | 24 | * @ingroup Maintenance |
24 | 25 | */ |
25 | 26 | |
Index: trunk/phase3/maintenance/cleanupSpam.php |
— | — | @@ -17,6 +17,7 @@ |
18 | 18 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
19 | 19 | * http://www.gnu.org/copyleft/gpl.html |
20 | 20 | * |
| 21 | + * @file |
21 | 22 | * @ingroup Maintenance |
22 | 23 | */ |
23 | 24 | |
Index: trunk/phase3/maintenance/cleanupCaps.php |
— | — | @@ -1,12 +1,12 @@ |
2 | 2 | <?php |
3 | | -/* |
| 3 | +/** |
4 | 4 | * Script to clean up broken page links when somebody turns on $wgCapitalLinks. |
5 | 5 | * |
6 | 6 | * Usage: php cleanupCaps.php [--dry-run] |
7 | 7 | * Options: |
8 | 8 | * --dry-run don't actually try moving them |
9 | 9 | * |
10 | | - * Copyright (C) 2005 Brion Vibber <brion@pobox.com> |
| 10 | + * Copyright © 2005 Brion Vibber <brion@pobox.com> |
11 | 11 | * http://www.mediawiki.org/ |
12 | 12 | * |
13 | 13 | * This program is free software; you can redistribute it and/or modify |
— | — | @@ -24,8 +24,9 @@ |
25 | 25 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
26 | 26 | * http://www.gnu.org/copyleft/gpl.html |
27 | 27 | * |
| 28 | + * @file |
28 | 29 | * @author Brion Vibber <brion at pobox.com> |
29 | | - * @ingroup maintenance |
| 30 | + * @ingroup Maintenance |
30 | 31 | */ |
31 | 32 | |
32 | 33 | require_once( dirname( __FILE__ ) . '/cleanupTable.inc' ); |
Index: trunk/phase3/maintenance/backupPrefetch.inc |
— | — | @@ -1,4 +1,10 @@ |
2 | 2 | <?php |
| 3 | +/** |
| 4 | + * Helper class for the --prefetch option of dumpTextPass.php |
| 5 | + * |
| 6 | + * @file |
| 7 | + * @ingrouo Maintenance |
| 8 | + */ |
3 | 9 | |
4 | 10 | // Some smart guy removed XMLReader's global constants from PHP 5.1 |
5 | 11 | // and replaced them with class constants. Breaking source compatibility |