2006-09-23 15:57:16 +00:00
|
|
|
<?php
|
2010-02-23 12:30:23 +00:00
|
|
|
/**
|
2010-12-22 20:52:06 +00:00
|
|
|
*
|
2006-09-23 15:57:16 +00:00
|
|
|
*
|
2010-08-07 19:59:42 +00:00
|
|
|
* Created on Sep 19, 2006
|
|
|
|
|
*
|
2012-07-15 20:13:02 +00:00
|
|
|
* Copyright © 2006 Yuri Astrakhan "<Firstname><Lastname>@gmail.com"
|
2006-09-23 15:57:16 +00:00
|
|
|
*
|
|
|
|
|
* 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.,
|
2010-06-21 13:13:32 +00:00
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2006-09-23 15:57:16 +00:00
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
2010-08-07 19:59:42 +00:00
|
|
|
*
|
|
|
|
|
* @file
|
2006-09-23 15:57:16 +00:00
|
|
|
*/
|
|
|
|
|
|
2007-04-20 08:55:14 +00:00
|
|
|
/**
|
2007-05-20 10:08:40 +00:00
|
|
|
* This is the abstract base class for API formatters.
|
2008-04-14 07:45:50 +00:00
|
|
|
*
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
* @ingroup API
|
2007-04-20 08:55:14 +00:00
|
|
|
*/
|
2006-09-23 15:57:16 +00:00
|
|
|
abstract class ApiFormatBase extends ApiBase {
|
2014-09-17 19:43:31 +00:00
|
|
|
private $mIsHtml, $mFormat, $mUnescapeAmps, $mHelp;
|
|
|
|
|
private $mBuffer, $mDisabled = false;
|
2006-09-23 15:57:16 +00:00
|
|
|
|
|
|
|
|
/**
|
2009-02-13 14:13:03 +00:00
|
|
|
* If $format ends with 'fm', pretty-print the output in HTML.
|
2014-04-15 18:12:09 +00:00
|
|
|
* @param ApiMain $main
|
2013-03-11 17:15:01 +00:00
|
|
|
* @param string $format Format name
|
2009-02-13 14:13:03 +00:00
|
|
|
*/
|
2014-03-25 17:22:11 +00:00
|
|
|
public function __construct( ApiMain $main, $format ) {
|
2010-02-23 12:30:23 +00:00
|
|
|
parent::__construct( $main, $format );
|
2006-09-23 15:57:16 +00:00
|
|
|
|
2013-11-14 12:40:22 +00:00
|
|
|
$this->mIsHtml = ( substr( $format, -2, 2 ) === 'fm' ); // ends with 'fm'
|
2010-02-23 12:30:23 +00:00
|
|
|
if ( $this->mIsHtml ) {
|
2013-11-14 12:40:22 +00:00
|
|
|
$this->mFormat = substr( $format, 0, -2 ); // remove ending 'fm'
|
2010-02-23 12:30:23 +00:00
|
|
|
} else {
|
2006-09-23 15:57:16 +00:00
|
|
|
$this->mFormat = $format;
|
2010-02-23 12:30:23 +00:00
|
|
|
}
|
2010-01-11 15:55:52 +00:00
|
|
|
$this->mFormat = strtoupper( $this->mFormat );
|
2006-09-23 15:57:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2014-07-24 14:04:48 +00:00
|
|
|
* Overriding class returns the MIME type that should be sent to the client.
|
2014-09-17 19:43:31 +00:00
|
|
|
*
|
|
|
|
|
* When getIsHtml() returns true, the return value here is used for syntax
|
|
|
|
|
* highlighting but the client sees text/html.
|
|
|
|
|
*
|
2006-09-23 15:57:16 +00:00
|
|
|
* @return string
|
|
|
|
|
*/
|
2013-01-26 19:00:09 +00:00
|
|
|
abstract public function getMimeType();
|
2006-09-23 15:57:16 +00:00
|
|
|
|
2007-05-20 10:08:40 +00:00
|
|
|
/**
|
2009-02-13 14:13:03 +00:00
|
|
|
* Whether this formatter needs raw data such as _element tags
|
|
|
|
|
* @return bool
|
2007-05-20 10:08:40 +00:00
|
|
|
*/
|
2006-09-27 05:13:48 +00:00
|
|
|
public function getNeedsRawData() {
|
2006-09-25 04:12:07 +00:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2008-11-14 00:30:34 +00:00
|
|
|
/**
|
|
|
|
|
* Get the internal format name
|
2009-02-13 14:13:03 +00:00
|
|
|
* @return string
|
2008-11-14 00:30:34 +00:00
|
|
|
*/
|
|
|
|
|
public function getFormat() {
|
|
|
|
|
return $this->mFormat;
|
|
|
|
|
}
|
|
|
|
|
|
2006-09-23 15:57:16 +00:00
|
|
|
/**
|
2009-02-13 14:13:03 +00:00
|
|
|
* Returns true when the HTML pretty-printer should be used.
|
2008-04-14 07:45:50 +00:00
|
|
|
* The default implementation assumes that formats ending with 'fm'
|
|
|
|
|
* should be formatted in HTML.
|
2009-02-13 14:13:03 +00:00
|
|
|
* @return bool
|
2006-09-23 15:57:16 +00:00
|
|
|
*/
|
2006-09-27 05:13:48 +00:00
|
|
|
public function getIsHtml() {
|
2006-09-23 15:57:16 +00:00
|
|
|
return $this->mIsHtml;
|
|
|
|
|
}
|
2010-02-12 06:44:16 +00:00
|
|
|
|
2009-04-28 11:42:14 +00:00
|
|
|
/**
|
2014-09-17 19:43:31 +00:00
|
|
|
* Disable the formatter.
|
|
|
|
|
*
|
|
|
|
|
* This causes calls to initPrinter() and closePrinter() to be ignored.
|
2010-06-03 09:53:28 +00:00
|
|
|
*/
|
|
|
|
|
public function disable() {
|
|
|
|
|
$this->mDisabled = true;
|
|
|
|
|
}
|
2010-07-23 07:33:40 +00:00
|
|
|
|
2014-09-17 19:43:31 +00:00
|
|
|
/**
|
|
|
|
|
* Whether the printer is disabled
|
|
|
|
|
* @return bool
|
|
|
|
|
*/
|
2010-06-03 09:53:28 +00:00
|
|
|
public function isDisabled() {
|
|
|
|
|
return $this->mDisabled;
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-27 15:11:17 +00:00
|
|
|
/**
|
2014-09-17 19:43:31 +00:00
|
|
|
* Whether this formatter can handle printing API errors.
|
|
|
|
|
*
|
|
|
|
|
* If this returns false, then on API errors the default printer will be
|
|
|
|
|
* instantiated.
|
2014-03-27 15:11:17 +00:00
|
|
|
* @since 1.23
|
|
|
|
|
* @return bool
|
|
|
|
|
*/
|
|
|
|
|
public function canPrintErrors() {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2006-09-23 15:57:16 +00:00
|
|
|
/**
|
2014-09-17 19:43:31 +00:00
|
|
|
* Initialize the printer function and prepare the output headers.
|
API: HTMLize and internationalize the help, add Special:ApiHelp
The existing API help, formatted as basically a plain-text document
embedded in XML and with a little bolding and a few links
syntax-highlighted in after the fact, works ok for experienced programmers
but isn't at all newbie-friendly. Further, all the help is hard-coded in
English, which isn't very friendly to non-English speakers.
So let's rewrite it. The help text is now obtained from i18n messages
and output in HTML, with the default display consisting of help for a
single module with links to help for other modules. This, of course,
necessitates deprecating many of the existing help-related methods and
hooks and replacing them with new ones, but backwards compatibility is
maintained for almost everything.
At the same time, action=paraminfo also needs to support the
'description' and other help-related fields being output in wikitext or
HTML, and I11cb063d (to access all modules via the 'modules' parameter
instead of having 'modules', 'formatmodules', 'querymodules', and so on)
is folded in.
And we also add Special:ApiHelp. When directly accessed, it simply
redirects to api.php with appropriate parameters. But it's also
transcludable to allow up-to-date API help text to be included within
the on-wiki documentation.
Note this patch doesn't actually add i18n messages for any API modules
besides ApiMain and ApiHelp. That will come in a followup patch, but for
the moment the backwards-compatibility code handles them nicely.
While we're messing with the documentation, we may as well add the
"internal" flag requested in bug 62905 (although the 'includeinternal'
parameter it also requests doesn't make much sense anymore) and a
"deprecated" flag that's needed by several modules now.
Bug: 30936
Bug: 38126
Bug: 42343
Bug: 45641
Bug: 62905
Bug: 63211
Change-Id: Ib14c00df06d85c2f6364d83b2b10ce34c7f513cc
2014-09-16 17:54:01 +00:00
|
|
|
* @param bool $unused Always false since 1.25
|
2006-09-23 15:57:16 +00:00
|
|
|
*/
|
2014-10-14 00:57:32 +00:00
|
|
|
function initPrinter( $unused = false ) {
|
2010-06-03 09:53:28 +00:00
|
|
|
if ( $this->mDisabled ) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2014-09-17 19:43:31 +00:00
|
|
|
|
|
|
|
|
$mime = $this->getIsHtml() ? 'text/html' : $this->getMimeType();
|
2006-10-18 06:32:40 +00:00
|
|
|
|
2006-10-16 00:08:03 +00:00
|
|
|
// Some printers (ex. Feed) do their own header settings,
|
|
|
|
|
// in which case $mime will be set to null
|
2014-09-17 19:43:31 +00:00
|
|
|
if ( $mime === null ) {
|
2006-10-18 06:32:40 +00:00
|
|
|
return; // skip any initialization
|
2010-02-23 12:30:23 +00:00
|
|
|
}
|
2011-06-05 19:51:31 +00:00
|
|
|
|
2011-06-05 20:29:47 +00:00
|
|
|
$this->getMain()->getRequest()->response()->header( "Content-Type: $mime; charset=utf-8" );
|
2006-10-18 06:32:40 +00:00
|
|
|
|
2012-08-17 19:20:47 +00:00
|
|
|
//Set X-Frame-Options API results (bug 39180)
|
2014-01-24 02:51:11 +00:00
|
|
|
$apiFrameOptions = $this->getConfig()->get( 'ApiFrameOptions' );
|
|
|
|
|
if ( $apiFrameOptions ) {
|
|
|
|
|
$this->getMain()->getRequest()->response()->header( "X-Frame-Options: $apiFrameOptions" );
|
2012-08-17 19:20:47 +00:00
|
|
|
}
|
2006-09-23 15:57:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2014-09-17 19:43:31 +00:00
|
|
|
* Finish printing and output buffered data.
|
2006-09-23 15:57:16 +00:00
|
|
|
*/
|
2006-09-27 05:13:48 +00:00
|
|
|
public function closePrinter() {
|
2010-06-03 09:53:28 +00:00
|
|
|
if ( $this->mDisabled ) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2006-10-18 06:32:40 +00:00
|
|
|
|
2014-09-17 19:43:31 +00:00
|
|
|
$mime = $this->getMimeType();
|
|
|
|
|
if ( $this->getIsHtml() && $mime !== null ) {
|
|
|
|
|
$format = $this->getFormat();
|
|
|
|
|
$result = $this->getBuffer();
|
|
|
|
|
|
|
|
|
|
$context = new DerivativeContext( $this->getMain() );
|
|
|
|
|
$context->setUser( new User ); // anon to avoid caching issues
|
|
|
|
|
$context->setSkin( SkinFactory::getDefaultInstance()->makeSkin( 'apioutput' ) );
|
|
|
|
|
$out = new OutputPage( $context );
|
|
|
|
|
$out->addModules( 'mediawiki.apipretty' );
|
|
|
|
|
$out->setPageTitle( $context->msg( 'api-format-title' ) );
|
|
|
|
|
$context->setOutput( $out );
|
|
|
|
|
|
|
|
|
|
$header = $context->msg( 'api-format-prettyprint-header' )
|
|
|
|
|
->params( $format, strtolower( $format ) )
|
|
|
|
|
->parseAsBlock();
|
|
|
|
|
$out->addHTML(
|
|
|
|
|
Html::rawElement( 'div', array( 'class' => 'api-pretty-header' ),
|
|
|
|
|
ApiHelp::fixHelpLinks( $header )
|
|
|
|
|
)
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
if ( wfRunHooks( 'ApiFormatHighlight', array( $context, $result, $mime, $format ) ) ) {
|
|
|
|
|
$out->addHTML(
|
|
|
|
|
Html::element( 'pre', array( 'class' => 'api-pretty-content' ), $result )
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$out->output();
|
|
|
|
|
} else {
|
|
|
|
|
// For non-HTML output, clear all errors that might have been
|
|
|
|
|
// displayed if display_errors=On
|
|
|
|
|
ob_clean();
|
|
|
|
|
|
|
|
|
|
echo $this->getBuffer();
|
2006-09-23 15:57:16 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2007-05-20 10:08:40 +00:00
|
|
|
/**
|
2014-09-17 19:43:31 +00:00
|
|
|
* Append text to the output buffer.
|
2014-04-15 18:12:09 +00:00
|
|
|
* @param string $text
|
2007-05-20 10:08:40 +00:00
|
|
|
*/
|
2010-01-11 15:55:52 +00:00
|
|
|
public function printText( $text ) {
|
2014-09-17 19:43:31 +00:00
|
|
|
$this->mBuffer .= $text;
|
2006-09-23 15:57:16 +00:00
|
|
|
}
|
2010-02-12 06:44:16 +00:00
|
|
|
|
2009-08-28 21:18:39 +00:00
|
|
|
/**
|
|
|
|
|
* Get the contents of the buffer.
|
2014-08-23 20:34:25 +00:00
|
|
|
* @return string
|
2009-08-28 21:18:39 +00:00
|
|
|
*/
|
|
|
|
|
public function getBuffer() {
|
|
|
|
|
return $this->mBuffer;
|
|
|
|
|
}
|
2011-10-27 00:46:17 +00:00
|
|
|
|
2014-09-17 19:43:31 +00:00
|
|
|
public function getExamplesMessages() {
|
|
|
|
|
return array(
|
|
|
|
|
'action=query&meta=siteinfo&siprop=namespaces&format=' . $this->getModuleName()
|
|
|
|
|
=> array( 'apihelp-format-example-generic', $this->getFormat() )
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getHelpUrls() {
|
|
|
|
|
return 'https://www.mediawiki.org/wiki/API:Data_formats';
|
|
|
|
|
}
|
|
|
|
|
|
2009-08-28 21:18:39 +00:00
|
|
|
/**
|
2014-09-17 19:43:31 +00:00
|
|
|
* To avoid code duplication with the deprecation of dbg, dump, txt, wddx,
|
|
|
|
|
* and yaml, this method is added to do the necessary work. It should be
|
|
|
|
|
* removed when those deprecated formats are removed.
|
2009-08-28 21:18:39 +00:00
|
|
|
*/
|
2014-09-17 19:43:31 +00:00
|
|
|
protected function markDeprecated() {
|
|
|
|
|
$fm = $this->getIsHtml() ? 'fm' : '';
|
|
|
|
|
$name = $this->getModuleName();
|
|
|
|
|
$this->logFeatureUsage( "format=$name" );
|
|
|
|
|
$this->setWarning( "format=$name has been deprecated. Please use format=json$fm instead." );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/************************************************************************//**
|
|
|
|
|
* @name Deprecated
|
|
|
|
|
* @{
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Specify whether or not sequences like &quot; should be unescaped
|
|
|
|
|
* to " . This should only be set to true for the help message
|
|
|
|
|
* when rendered in the default (xmlfm) format. This is a temporary
|
|
|
|
|
* special-case fix that should be removed once the help has been
|
|
|
|
|
* reworked to use a fully HTML interface.
|
|
|
|
|
*
|
|
|
|
|
* @deprecated since 1.25
|
|
|
|
|
* @param bool $b Whether or not ampersands should be escaped.
|
|
|
|
|
*/
|
|
|
|
|
public function setUnescapeAmps( $b ) {
|
|
|
|
|
wfDeprecated( __METHOD__, '1.25' );
|
|
|
|
|
$this->mUnescapeAmps = $b;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Whether this formatter can format the help message in a nice way.
|
|
|
|
|
* By default, this returns the same as getIsHtml().
|
|
|
|
|
* When action=help is set explicitly, the help will always be shown
|
|
|
|
|
* @deprecated since 1.25
|
|
|
|
|
* @return bool
|
|
|
|
|
*/
|
|
|
|
|
public function getWantsHelp() {
|
|
|
|
|
wfDeprecated( __METHOD__, '1.25' );
|
|
|
|
|
return $this->getIsHtml();
|
2009-08-28 21:18:39 +00:00
|
|
|
}
|
2006-09-23 15:57:16 +00:00
|
|
|
|
2007-12-01 17:37:08 +00:00
|
|
|
/**
|
2013-01-16 19:31:37 +00:00
|
|
|
* Sets whether the pretty-printer should format *bold*
|
API: HTMLize and internationalize the help, add Special:ApiHelp
The existing API help, formatted as basically a plain-text document
embedded in XML and with a little bolding and a few links
syntax-highlighted in after the fact, works ok for experienced programmers
but isn't at all newbie-friendly. Further, all the help is hard-coded in
English, which isn't very friendly to non-English speakers.
So let's rewrite it. The help text is now obtained from i18n messages
and output in HTML, with the default display consisting of help for a
single module with links to help for other modules. This, of course,
necessitates deprecating many of the existing help-related methods and
hooks and replacing them with new ones, but backwards compatibility is
maintained for almost everything.
At the same time, action=paraminfo also needs to support the
'description' and other help-related fields being output in wikitext or
HTML, and I11cb063d (to access all modules via the 'modules' parameter
instead of having 'modules', 'formatmodules', 'querymodules', and so on)
is folded in.
And we also add Special:ApiHelp. When directly accessed, it simply
redirects to api.php with appropriate parameters. But it's also
transcludable to allow up-to-date API help text to be included within
the on-wiki documentation.
Note this patch doesn't actually add i18n messages for any API modules
besides ApiMain and ApiHelp. That will come in a followup patch, but for
the moment the backwards-compatibility code handles them nicely.
While we're messing with the documentation, we may as well add the
"internal" flag requested in bug 62905 (although the 'includeinternal'
parameter it also requests doesn't make much sense anymore) and a
"deprecated" flag that's needed by several modules now.
Bug: 30936
Bug: 38126
Bug: 42343
Bug: 45641
Bug: 62905
Bug: 63211
Change-Id: Ib14c00df06d85c2f6364d83b2b10ce34c7f513cc
2014-09-16 17:54:01 +00:00
|
|
|
* @deprecated since 1.25
|
2014-04-15 18:12:09 +00:00
|
|
|
* @param bool $help
|
2009-02-13 14:13:03 +00:00
|
|
|
*/
|
2007-12-01 17:37:08 +00:00
|
|
|
public function setHelp( $help = true ) {
|
API: HTMLize and internationalize the help, add Special:ApiHelp
The existing API help, formatted as basically a plain-text document
embedded in XML and with a little bolding and a few links
syntax-highlighted in after the fact, works ok for experienced programmers
but isn't at all newbie-friendly. Further, all the help is hard-coded in
English, which isn't very friendly to non-English speakers.
So let's rewrite it. The help text is now obtained from i18n messages
and output in HTML, with the default display consisting of help for a
single module with links to help for other modules. This, of course,
necessitates deprecating many of the existing help-related methods and
hooks and replacing them with new ones, but backwards compatibility is
maintained for almost everything.
At the same time, action=paraminfo also needs to support the
'description' and other help-related fields being output in wikitext or
HTML, and I11cb063d (to access all modules via the 'modules' parameter
instead of having 'modules', 'formatmodules', 'querymodules', and so on)
is folded in.
And we also add Special:ApiHelp. When directly accessed, it simply
redirects to api.php with appropriate parameters. But it's also
transcludable to allow up-to-date API help text to be included within
the on-wiki documentation.
Note this patch doesn't actually add i18n messages for any API modules
besides ApiMain and ApiHelp. That will come in a followup patch, but for
the moment the backwards-compatibility code handles them nicely.
While we're messing with the documentation, we may as well add the
"internal" flag requested in bug 62905 (although the 'includeinternal'
parameter it also requests doesn't make much sense anymore) and a
"deprecated" flag that's needed by several modules now.
Bug: 30936
Bug: 38126
Bug: 42343
Bug: 45641
Bug: 62905
Bug: 63211
Change-Id: Ib14c00df06d85c2f6364d83b2b10ce34c7f513cc
2014-09-16 17:54:01 +00:00
|
|
|
wfDeprecated( __METHOD__, '1.25' );
|
2010-11-04 00:55:30 +00:00
|
|
|
$this->mHelp = $help;
|
2007-12-01 17:37:08 +00:00
|
|
|
}
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2006-09-23 15:57:16 +00:00
|
|
|
/**
|
2010-02-23 12:30:23 +00:00
|
|
|
* Pretty-print various elements in HTML format, such as xml tags and
|
|
|
|
|
* URLs. This method also escapes characters like <
|
2014-09-17 19:43:31 +00:00
|
|
|
* @deprecated since 1.25
|
2014-04-15 18:12:09 +00:00
|
|
|
* @param string $text
|
2010-02-23 12:30:23 +00:00
|
|
|
* @return string
|
|
|
|
|
*/
|
2010-01-11 15:55:52 +00:00
|
|
|
protected function formatHTML( $text ) {
|
2014-09-17 19:43:31 +00:00
|
|
|
wfDeprecated( __METHOD__, '1.25' );
|
|
|
|
|
|
2007-09-13 19:06:54 +00:00
|
|
|
// Escape everything first for full coverage
|
2010-01-11 15:55:52 +00:00
|
|
|
$text = htmlspecialchars( $text );
|
2014-05-16 16:49:36 +00:00
|
|
|
|
|
|
|
|
if ( $this->mFormat === 'XML' || $this->mFormat === 'WDDX' ) {
|
|
|
|
|
// encode all comments or tags as safe blue strings
|
|
|
|
|
$text = str_replace( '<', '<span style="color:blue;"><', $text );
|
|
|
|
|
$text = str_replace( '>', '></span>', $text );
|
|
|
|
|
}
|
2014-02-14 21:48:53 +00:00
|
|
|
|
2006-09-23 15:57:16 +00:00
|
|
|
// identify requests to api.php
|
2014-02-14 21:48:53 +00:00
|
|
|
$text = preg_replace( '#^(\s*)(api\.php\?[^ <\n\t]+)$#m', '\1<a href="\2">\2</a>', $text );
|
2010-01-11 15:55:52 +00:00
|
|
|
if ( $this->mHelp ) {
|
2014-03-13 17:55:40 +00:00
|
|
|
// make lines inside * bold
|
|
|
|
|
$text = preg_replace( '#^(\s*)(\*[^<>\n]+\*)(\s*)$#m', '$1<b>$2</b>$3', $text );
|
2007-12-01 17:37:08 +00:00
|
|
|
}
|
2014-02-14 21:48:53 +00:00
|
|
|
|
|
|
|
|
// Armor links (bug 61362)
|
|
|
|
|
$masked = array();
|
|
|
|
|
$text = preg_replace_callback( '#<a .*?</a>#', function ( $matches ) use ( &$masked ) {
|
|
|
|
|
$sha = sha1( $matches[0] );
|
|
|
|
|
$masked[$sha] = $matches[0];
|
|
|
|
|
return "<$sha>";
|
|
|
|
|
}, $text );
|
|
|
|
|
|
2013-01-16 19:31:37 +00:00
|
|
|
// identify URLs
|
|
|
|
|
$protos = wfUrlProtocolsWithoutProtRel();
|
|
|
|
|
// This regex hacks around bug 13218 (" included in the URL)
|
2013-11-16 19:09:17 +00:00
|
|
|
$text = preg_replace(
|
|
|
|
|
"#(((?i)$protos).*?)(")?([ \\'\"<>\n]|<|>|")#",
|
|
|
|
|
'<a href="\\1">\\1</a>\\3\\4',
|
|
|
|
|
$text
|
|
|
|
|
);
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2014-02-14 21:48:53 +00:00
|
|
|
// Unarmor links
|
|
|
|
|
$text = preg_replace_callback( '#<([0-9a-f]{40})>#', function ( $matches ) use ( &$masked ) {
|
|
|
|
|
$sha = $matches[1];
|
|
|
|
|
return isset( $masked[$sha] ) ? $masked[$sha] : $matches[0];
|
|
|
|
|
}, $text );
|
|
|
|
|
|
2010-02-23 12:30:23 +00:00
|
|
|
/**
|
|
|
|
|
* Temporary fix for bad links in help messages. As a special case,
|
2007-09-19 14:51:02 +00:00
|
|
|
* XML-escaped metachars are de-escaped one level in the help message
|
2010-02-23 12:30:23 +00:00
|
|
|
* for legibility. Should be removed once we have completed a fully-HTML
|
|
|
|
|
* version of the help message.
|
|
|
|
|
*/
|
|
|
|
|
if ( $this->mUnescapeAmps ) {
|
2007-09-19 14:51:02 +00:00
|
|
|
$text = preg_replace( '/&(amp|quot|lt|gt);/', '&\1;', $text );
|
2010-02-23 12:30:23 +00:00
|
|
|
}
|
2006-09-26 06:37:26 +00:00
|
|
|
|
2006-09-23 15:57:16 +00:00
|
|
|
return $text;
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-17 19:43:31 +00:00
|
|
|
/**
|
|
|
|
|
* @see ApiBase::getDescription
|
|
|
|
|
* @deprecated since 1.25
|
|
|
|
|
*/
|
2008-01-28 19:05:26 +00:00
|
|
|
public function getDescription() {
|
2006-11-03 06:53:47 +00:00
|
|
|
return $this->getIsHtml() ? ' (pretty-print in HTML)' : '';
|
|
|
|
|
}
|
2014-08-08 10:00:22 +00:00
|
|
|
|
|
|
|
|
/**
|
2014-09-17 19:43:31 +00:00
|
|
|
* Set the flag to buffer the result instead of printing it.
|
|
|
|
|
* @deprecated since 1.25, output is always buffered
|
|
|
|
|
* @param bool $value
|
2014-08-08 10:00:22 +00:00
|
|
|
*/
|
2014-09-17 19:43:31 +00:00
|
|
|
public function setBufferResult( $value ) {
|
2014-08-08 10:00:22 +00:00
|
|
|
}
|
2014-09-17 19:43:31 +00:00
|
|
|
|
|
|
|
|
/**@}*/
|
2006-09-23 15:57:16 +00:00
|
|
|
}
|
2014-09-17 19:43:31 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* For really cool vim folding this needs to be at the end:
|
|
|
|
|
* vim: foldmarker=@{,@} foldmethod=marker
|
|
|
|
|
*/
|