Followup to r59869, add to MySQL section, and copy patch to SQLite directory
[lhc/web/wiklou.git] / maintenance / getText.php
1 <?php
2 /**
3 * Outputs page text to stdout, useful for command-line editing automation.
4 * Example: php getText.php "page title" | sed -e '...' | php edit.php "page title"
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 * http://www.gnu.org/copyleft/gpl.html
20 *
21 * @ingroup Maintenance
22 */
23
24 require_once( dirname(__FILE__) . '/Maintenance.php' );
25
26 class GetTextMaint extends Maintenance {
27 public function __construct() {
28 parent::__construct();
29 $this->mDescription = 'Outputs page text to stdout';
30 $this->addArg( 'title', 'Page title' );
31 }
32
33 public function execute() {
34 $this->db = wfGetDB( DB_MASTER );
35
36 $titleText = $this->getArg( 0 );
37 $title = Title::newFromText( $titleText );
38 if ( !$title ) {
39 $this->error( "$titleText is not a valid title\n", true );
40 }
41
42 $rev = Revision::newFromTitle( $title );
43 if ( !$rev ) {
44 $titleText = $title->getText();
45 $this->error( "Page $titleText does not exist\n", true );
46 }
47
48 $this->output( $rev->getText() );
49 }
50 }
51
52 $maintClass = "GetTextMaint";
53 require_once( DO_MAINTENANCE );