* Fixed notice when accessing special page without read permission and whitelist...
[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 * @addtogroup SpecialPage
25 */
26
27 require_once( 'commandLine.inc' );
28
29 $dbr = wfGetDB( DB_SLAVE );
30 $dbr->bufferResults( false );
31 $result = $dbr->select( 'page',
32 array( 'page_namespace', 'page_title' ),
33 array(
34 'page_namespace' => NS_MAIN,
35 'page_is_redirect' => 0,
36 ),
37 'dumpSisterSites' );
38
39 while( $row = $dbr->fetchObject( $result ) ) {
40 $title = Title::makeTitle( $row->page_namespace, $row->page_title );
41 $url = $title->getFullUrl();
42 $text = $title->getPrefixedText();
43 echo "$url $text\n";
44 }
45
46 $dbr->freeResult( $result );
47
48