Merge "Use our fork of less.php" into REL1_31
[lhc/web/wiklou.git] / maintenance / formatInstallDoc.php
1 <?php
2 /**
3 * Format RELEASE-NOTE file to wiki text or HTML markup.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 * @ingroup Maintenance
22 */
23
24 require_once __DIR__ . '/Maintenance.php';
25
26 /**
27 * Maintenance script that formats RELEASE-NOTE file to wiki text or HTML markup.
28 *
29 * @ingroup Maintenance
30 */
31 class MaintenanceFormatInstallDoc extends Maintenance {
32 function __construct() {
33 parent::__construct();
34 $this->addArg( 'path', 'The file name to format', false );
35 $this->addOption( 'outfile', 'The output file name', false, true );
36 $this->addOption( 'html', 'Use HTML output format. By default, wikitext is used.' );
37 }
38
39 function execute() {
40 if ( $this->hasArg( 0 ) ) {
41 $fileName = $this->getArg( 0 );
42 $inFile = fopen( $fileName, 'r' );
43 if ( !$inFile ) {
44 $this->fatalError( "Unable to open input file \"$fileName\"" );
45 }
46 } else {
47 $inFile = STDIN;
48 }
49
50 if ( $this->hasOption( 'outfile' ) ) {
51 $fileName = $this->getOption( 'outfile' );
52 $outFile = fopen( $fileName, 'w' );
53 if ( !$outFile ) {
54 $this->fatalError( "Unable to open output file \"$fileName\"" );
55 }
56 } else {
57 $outFile = STDOUT;
58 }
59
60 $inText = stream_get_contents( $inFile );
61 $outText = InstallDocFormatter::format( $inText );
62
63 if ( $this->hasOption( 'html' ) ) {
64 global $wgParser;
65 $opt = new ParserOptions;
66 $title = Title::newFromText( 'Text file' );
67 $out = $wgParser->parse( $outText, $title, $opt );
68 $outText = "<html><body>\n" . $out->getText() . "\n</body></html>\n";
69 }
70
71 fwrite( $outFile, $outText );
72 }
73 }
74
75 $maintClass = MaintenanceFormatInstallDoc::class;
76 require_once RUN_MAINTENANCE_IF_MAIN;