Whitespace changes
[mediawiki.git] / maintenance / dumpSisterSites.php
blob9e8f6377b062d81a60a79708aaf8c9d804695775
1 <?php
2 /**
3 * Quickie page name dump script for SisterSites usage.
4 * http://www.eekim.com/cgi-bin/wiki.pl?SisterSites
6 * Copyright (C) 2006 Brion Vibber <brion@pobox.com>
7 * http://www.mediawiki.org/
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.
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.
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
24 * @ingroup Maintenance
27 require_once( dirname(__FILE__) . '/Maintenance.php' );
29 class DumpSisterSites extends Maintenance {
30 public function __construct() {
31 parent::__construct();
32 $this->mDescription = "Quickie page name dump script for SisterSites usage";
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,
43 __METHOD__ );
45 while( $row = $dbr->fetchObject( $result ) ) {
46 $title = Title::makeTitle( $row->page_namespace, $row->page_title );
47 $url = $title->getFullUrl();
48 $text = $title->getPrefixedText();
49 $this->output( "$url $text\n" );
51 $dbr->freeResult( $result );
55 $maintClass = "DumpSisterSites";
56 require_once( DO_MAINTENANCE );