2004-02-18 02:15:00 +00:00
|
|
|
<?php
|
2004-03-16 06:18:37 +00:00
|
|
|
# Copyright (C) 2003 Brion Vibber <brion@pobox.com>
|
|
|
|
|
# http://www.mediawiki.org/
|
|
|
|
|
#
|
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
# (at your option) any later version.
|
|
|
|
|
#
|
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
#
|
|
|
|
|
# You should have received a copy of the GNU General Public License along
|
|
|
|
|
# with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
|
# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
# http://www.gnu.org/copyleft/gpl.html
|
2003-09-15 00:01:11 +00:00
|
|
|
|
|
|
|
|
function wfSpecialExport( $page = "" ) {
|
2004-03-20 08:56:05 +00:00
|
|
|
global $wgOut, $wgLang, $wgRequest;
|
2003-09-15 00:01:11 +00:00
|
|
|
|
2004-03-20 08:56:05 +00:00
|
|
|
if( $wgRequest->getVal( 'action' ) == 'submit') {
|
|
|
|
|
$page = $wgRequest->getText( 'pages' );
|
|
|
|
|
$curonly = $wgRequest->getCheck( 'curonly' );
|
2003-09-15 00:01:11 +00:00
|
|
|
} else {
|
2004-03-20 08:56:05 +00:00
|
|
|
# Pre-check the 'current version only' box in the UI
|
2003-09-15 00:01:11 +00:00
|
|
|
$curonly = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if( $page != "" ) {
|
|
|
|
|
header( "Content-type: application/xml; charset=utf-8" );
|
|
|
|
|
$pages = explode( "\n", $page );
|
|
|
|
|
$xml = pages2xml( $pages, $curonly );
|
|
|
|
|
echo $xml;
|
2003-12-10 15:05:08 +00:00
|
|
|
wfAbruptExit();
|
2003-09-15 00:01:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$wgOut->addWikiText( wfMsg( "exporttext" ) );
|
2004-03-06 01:49:16 +00:00
|
|
|
$titleObj = Title::makeTitle( NS_SPECIAL, "Export" );
|
2004-03-07 07:26:56 +00:00
|
|
|
$action = $titleObj->escapeLocalURL();
|
2003-09-15 00:01:11 +00:00
|
|
|
$wgOut->addHTML( "
|
|
|
|
|
<form method='post' action=\"$action\">
|
|
|
|
|
<input type='hidden' name='action' value='submit' />
|
|
|
|
|
<textarea name='pages' cols='40' rows='10'></textarea><br />
|
2004-04-09 08:27:00 +00:00
|
|
|
<label><input type='checkbox' name='curonly' value='true' checked='checked' />
|
2003-09-15 00:01:11 +00:00
|
|
|
" . wfMsg( "exportcuronly" ) . "</label><br />
|
|
|
|
|
<input type='submit' />
|
|
|
|
|
</form>
|
|
|
|
|
" );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function pages2xml( $pages, $curonly = false ) {
|
|
|
|
|
global $wgLanguageCode, $wgInputEncoding, $wgLang;
|
2003-12-01 21:29:59 +00:00
|
|
|
$xml = "<" . "?xml version=\"1.0\" encoding=\"UTF-8\" ?" . ">\n" .
|
|
|
|
|
"<mediawiki version=\"0.1\" xml:lang=\"$wgLanguageCode\">\n";
|
2003-09-15 00:01:11 +00:00
|
|
|
foreach( $pages as $page ) {
|
|
|
|
|
$xml .= page2xml( $page, $curonly );
|
|
|
|
|
}
|
|
|
|
|
$xml .= "</mediawiki>\n";
|
|
|
|
|
if($wgInputEncoding != "utf-8")
|
|
|
|
|
$xml = $wgLang->iconv( $wgInputEncoding, "utf-8", $xml );
|
|
|
|
|
return $xml;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function page2xml( $page, $curonly, $full = false ) {
|
2004-04-28 17:38:48 +00:00
|
|
|
global $wgLang;
|
2004-07-18 08:48:43 +00:00
|
|
|
$fname = 'page2xml';
|
|
|
|
|
|
2003-09-15 00:01:11 +00:00
|
|
|
$title = Title::NewFromText( $page );
|
2003-11-25 19:27:54 +00:00
|
|
|
if( !$title ) return "";
|
2004-07-18 08:48:43 +00:00
|
|
|
|
|
|
|
|
$dbr =& wfGetDB( DB_SLAVE );
|
|
|
|
|
$s = $dbr->selectRow( 'cur', array( 'cur_id as id','cur_timestamp as timestamp','cur_user as user',
|
|
|
|
|
'cur_user_text as user_text', 'cur_restrictions as restrictions','cur_comment as comment',
|
|
|
|
|
'cur_text as text' ), $title->curCond(), $fname );
|
|
|
|
|
if( $s !== false ) {
|
2003-09-15 00:01:11 +00:00
|
|
|
$tl = htmlspecialchars( $title->getPrefixedText() );
|
|
|
|
|
$xml = " <page>\n";
|
|
|
|
|
$xml .= " <title>$tl</title>\n";
|
|
|
|
|
if( $full ) {
|
|
|
|
|
$xml .= " <id>$s->id</id>\n";
|
|
|
|
|
}
|
|
|
|
|
if( $s->restrictions ) {
|
|
|
|
|
$xml .= " <restrictions>$s->restrictions</restrictions>\n";
|
|
|
|
|
}
|
|
|
|
|
if( !$curonly ) {
|
2004-07-18 08:48:43 +00:00
|
|
|
$res = $dbr->select( 'old', array( 'old_id as id','old_timestamp as timestamp',
|
|
|
|
|
'old_user as user', 'old_user_text as user_text', 'old_comment as comment',
|
|
|
|
|
'old_text as text', 'old_flags as flags' ), $title->curCond(),
|
|
|
|
|
array( 'ORDER BY' => 'old_timestamp' ), $fname
|
|
|
|
|
);
|
2003-09-15 00:01:11 +00:00
|
|
|
|
2004-07-18 08:48:43 +00:00
|
|
|
while( $s2 = $dbr->fetchObject( $res ) ) {
|
2003-11-25 19:35:21 +00:00
|
|
|
$xml .= revision2xml( $s2, $full, false );
|
2003-09-15 00:01:11 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
$xml .= revision2xml( $s, $full, true );
|
|
|
|
|
$xml .= " </page>\n";
|
|
|
|
|
return $xml;
|
|
|
|
|
} else {
|
|
|
|
|
return "";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function revision2xml( $s, $full, $cur ) {
|
|
|
|
|
$ts = wfTimestamp2ISO8601( $s->timestamp );
|
|
|
|
|
$xml = " <revision>\n";
|
|
|
|
|
if($full && !$cur)
|
|
|
|
|
$xml .= " <id>$s->id</id>\n";
|
|
|
|
|
$xml .= " <timestamp>$ts</timestamp>\n";
|
|
|
|
|
if($s->user) {
|
|
|
|
|
$u = "<username>" . htmlspecialchars( $s->user_text ) . "</username>";
|
|
|
|
|
if($full)
|
|
|
|
|
$u .= "<id>$s->user</id>";
|
|
|
|
|
} else {
|
|
|
|
|
$u = "<ip>" . htmlspecialchars( $s->user_text ) . "</ip>";
|
|
|
|
|
}
|
|
|
|
|
$xml .= " <contributor>$u</contributor>\n";
|
2004-03-20 08:56:05 +00:00
|
|
|
if( !empty( $s->minor ) ) {
|
2003-09-15 00:01:11 +00:00
|
|
|
$xml .= " <minor/>\n";
|
|
|
|
|
}
|
|
|
|
|
if($s->comment != "") {
|
|
|
|
|
$c = htmlspecialchars( $s->comment );
|
|
|
|
|
$xml .= " <comment>$c</comment>\n";
|
|
|
|
|
}
|
2004-01-03 12:32:32 +00:00
|
|
|
$t = htmlspecialchars( Article::getRevisionText( $s, "" ) );
|
2003-09-15 00:01:11 +00:00
|
|
|
$xml .= " <text>$t</text>\n";
|
|
|
|
|
$xml .= " </revision>\n";
|
|
|
|
|
return $xml;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function wfTimestamp2ISO8601( $ts ) {
|
|
|
|
|
#2003-08-05T18:30:02Z
|
|
|
|
|
return preg_replace( '/^(....)(..)(..)(..)(..)(..)$/', '$1-$2-$3T$4:$5:$6Z', $ts );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
?>
|