50e121e604a5dfd6f30cab9ca14d49910ae9fe89
[lhc/web/wiklou.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 * @package MediaWiki
25 * @subpackage SpecialPage
26 */
27
28 require_once( 'commandLine.inc' );
29
30 $dbr = wfGetDB( DB_SLAVE );
31 $dbr->bufferResults( false );
32 $result = $dbr->select( 'page',
33 array( 'page_namespace', 'page_title' ),
34 array(
35 'page_namespace' => NS_MAIN,
36 'page_is_redirect' => 0,
37 ),
38 'dumpSisterSites' );
39
40 while( $row = $dbr->fetchObject( $result ) ) {
41 $title = Title::makeTitle( $row->page_namespace, $row->page_title );
42 $url = $title->getFullUrl();
43 $text = $title->getPrefixedText();
44 echo "$url $text\n";
45 }
46
47 $dbr->freeResult( $result );
48
49 ?>