]> scripts.mit.edu Git - autoinstalls/mediawiki.git/blob - maintenance/dumpSisterSites.php
MediaWiki 1.17.0
[autoinstalls/mediawiki.git] / maintenance / dumpSisterSites.php
1 <?php
2 /**
3  * Quickie page name dump script for SisterSites usage.
4  * http://www.eekim.com/cgi-bin/wiki.pl?SisterSites
5  *
6  * Copyright (C) 2006 Brion Vibber <brion@pobox.com>
7  * http://www.mediawiki.org/
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  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22  * http://www.gnu.org/copyleft/gpl.html
23  *
24  * @ingroup Maintenance
25  */
26
27 require_once( dirname( __FILE__ ) . '/Maintenance.php' );
28
29 class DumpSisterSites extends Maintenance {
30         public function __construct() {
31                 parent::__construct();
32                 $this->mDescription = "Quickie page name dump script for SisterSites usage";
33         }
34
35         public function execute() {
36                 $dbr = wfGetDB( DB_SLAVE );
37                 $dbr->bufferResults( false );
38                 $result = $dbr->select( 'page',
39                         array( 'page_namespace', 'page_title' ),
40                         array( 'page_namespace'   => NS_MAIN,
41                                    'page_is_redirect' => 0,
42                         ),
43                         __METHOD__ );
44
45                 foreach ( $result as $row ) {
46                         $title = Title::makeTitle( $row->page_namespace, $row->page_title );
47                         $url = $title->getFullUrl();
48                         $text = $title->getPrefixedText();
49                         $this->output( "$url $text\n" );
50                 }
51         }
52 }
53
54 $maintClass = "DumpSisterSites";
55 require_once( RUN_MAINTENANCE_IF_MAIN );