Index: trunk/phase3/opensearch_desc.php |
— | — | @@ -2,6 +2,8 @@ |
3 | 3 | |
4 | 4 | /** |
5 | 5 | * Generate an OpenSearch description file |
| 6 | + * |
| 7 | + * @file |
6 | 8 | */ |
7 | 9 | |
8 | 10 | require_once( dirname(__FILE__) . '/includes/WebStart.php' ); |
Index: trunk/phase3/install-utils.inc |
— | — | @@ -1,5 +1,12 @@ |
2 | 2 | <?php |
3 | 3 | |
| 4 | +/** |
| 5 | + * This file contains functions used by the install script (config/index.php) |
| 6 | + * and maintenance scripts. It is not loaded in normal web requests. |
| 7 | + * |
| 8 | + * @file |
| 9 | + */ |
| 10 | + |
4 | 11 | function install_version_checks() { |
5 | 12 | # We dare not turn output buffer _off_ since this will break completely |
6 | 13 | # if PHP is globally configured to run through a gzip filter. |
Index: trunk/phase3/img_auth.php |
— | — | @@ -5,11 +5,13 @@ |
6 | 6 | * |
7 | 7 | * To use this: |
8 | 8 | * |
9 | | - * Set $wgUploadDirectory to a non-public directory (not web accessible) |
10 | | - * Set $wgUploadPath to point to this file |
| 9 | + * - Set $wgUploadDirectory to a non-public directory (not web accessible) |
| 10 | + * - Set $wgUploadPath to point to this file |
11 | 11 | * |
12 | 12 | * Your server needs to support PATH_INFO; CGI-based configurations |
13 | 13 | * usually don't. |
| 14 | + * |
| 15 | + * @file |
14 | 16 | */ |
15 | 17 | |
16 | 18 | define( 'MW_NO_OUTPUT_COMPRESSION', 1 ); |
Index: trunk/phase3/redirect.php |
— | — | @@ -1,4 +1,12 @@ |
2 | 2 | <?php |
| 3 | + |
| 4 | +/** |
| 5 | + * Script that redirects to the article passed in the "wpDropdown" parameter. |
| 6 | + * This is used by the nostalgia skin for the special pages drop-down |
| 7 | + * |
| 8 | + * @file |
| 9 | + */ |
| 10 | + |
3 | 11 | require_once( './includes/WebStart.php' ); |
4 | 12 | global $wgArticlePath; |
5 | 13 | |
Index: trunk/phase3/api.php |
— | — | @@ -1,25 +1,27 @@ |
2 | 2 | <?php |
3 | 3 | |
4 | | -/* |
5 | | -* API for MediaWiki 1.8+ |
6 | | -* |
7 | | -* Copyright (C) 2006 Yuri Astrakhan <Firstname><Lastname>@gmail.com |
8 | | -* |
9 | | -* This program is free software; you can redistribute it and/or modify |
10 | | -* it under the terms of the GNU General Public License as published by |
11 | | -* the Free Software Foundation; either version 2 of the License, or |
12 | | -* (at your option) any later version. |
13 | | -* |
14 | | -* This program is distributed in the hope that it will be useful, |
15 | | -* but WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | | -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
17 | | -* GNU General Public License for more details. |
18 | | -* |
19 | | -* You should have received a copy of the GNU General Public License along |
20 | | -* with this program; if not, write to the Free Software Foundation, Inc., |
21 | | -* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
22 | | -* http://www.gnu.org/copyleft/gpl.html |
23 | | -*/ |
| 4 | +/** |
| 5 | + * API for MediaWiki 1.8+ |
| 6 | + * |
| 7 | + * Copyright (C) 2006 Yuri Astrakhan <Firstname><Lastname>@gmail.com |
| 8 | + * |
| 9 | + * This program is free software; you can redistribute it and/or modify |
| 10 | + * it under the terms of the GNU General Public License as published by |
| 11 | + * the Free Software Foundation; either version 2 of the License, or |
| 12 | + * (at your option) any later version. |
| 13 | + * |
| 14 | + * This program is distributed in the hope that it will be useful, |
| 15 | + * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | + * GNU General Public License for more details. |
| 18 | + * |
| 19 | + * You should have received a copy of the GNU General Public License along |
| 20 | + * with this program; if not, write to the Free Software Foundation, Inc., |
| 21 | + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
| 22 | + * http://www.gnu.org/copyleft/gpl.html |
| 23 | + * |
| 24 | + * @file |
| 25 | + */ |
24 | 26 | |
25 | 27 | /** |
26 | 28 | * This file is the entry point for all API queries. It begins by checking |