3 * Copyright (C) 2005 Brion Vibber <brion@pobox.com>
4 * http://www.mediawiki.org/
6 * Quick demo hack to generate a plaintext link dump,
7 * per the proposed wiki link database standard:
8 * http://www.usemod.com/cgi-bin/mb.pl?LinkDatabase
10 * Includes all (live and broken) intra-wiki links.
11 * Does not include interwiki or URL links.
12 * Dumps ASCII text to stdout; command-line.
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License along
25 * with this program; if not, write to the Free Software Foundation, Inc.,
26 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
27 * http://www.gnu.org/copyleft/gpl.html
29 * @ingroup Maintenance
32 require_once( dirname( __FILE__
) . '/Maintenance.php' );
34 class DumpLinks
extends Maintenance
{
35 public function __construct() {
36 parent
::__construct();
37 $this->mDescription
= "Quick demo hack to generate a plaintext link dump";
40 public function execute() {
41 $dbr = wfGetDB( DB_SLAVE
);
42 $result = $dbr->select( array( 'pagelinks', 'page' ),
49 array( 'page_id=pl_from' ),
51 array( 'ORDER BY' => 'page_id' ) );
54 foreach ( $result as $row ) {
55 if ( $lastPage != $row->page_id
) {
56 if ( isset( $lastPage ) ) {
57 $this->output( "\n" );
59 $page = Title
::makeTitle( $row->page_namespace
, $row->page_title
);
60 $this->output( $page->getPrefixedUrl() );
61 $lastPage = $row->page_id
;
63 $link = Title
::makeTitle( $row->pl_namespace
, $row->pl_title
);
64 $this->output( " " . $link->getPrefixedUrl() );
66 if ( isset( $lastPage ) )
67 $this->output( "\n" );
71 $maintClass = "DumpLinks";
72 require_once( RUN_MAINTENANCE_IF_MAIN
);