MediaWiki  1.29.1
SyntaxHighlight_GeSHi.class.php
Go to the documentation of this file.
1 <?php
19 use Symfony\Component\Process\ProcessBuilder;
20 
21 // @codingStandardsIgnoreStart
22 class SyntaxHighlight_GeSHi {
23 // @codingStandardsIgnoreEnd
24 
26  const HIGHLIGHT_MAX_LINES = 1000;
27 
29  const HIGHLIGHT_MAX_BYTES = 102400;
30 
32  const HIGHLIGHT_CSS_CLASS = 'mw-highlight';
33 
35  const CACHE_VERSION = 2;
36 
38  private static $mimeLexers = array(
39  'text/javascript' => 'javascript',
40  'application/json' => 'javascript',
41  'text/xml' => 'xml',
42  );
43 
44  public static function onSetup() {
45  global $wgPygmentizePath;
46 
47  // If $wgPygmentizePath is unset, use the bundled copy.
48  if ( $wgPygmentizePath === false ) {
49  $wgPygmentizePath = __DIR__ . '/pygments/pygmentize';
50  }
51  }
52 
59  private static function getLexer( $lang ) {
60  static $lexers = null;
61 
62  if ( $lang === null ) {
63  return null;
64  }
65 
66  if ( !$lexers ) {
67  $lexers = require __DIR__ . '/SyntaxHighlight_GeSHi.lexers.php';
68  }
69 
70  $lexer = strtolower( $lang );
71 
72  if ( in_array( $lexer, $lexers ) ) {
73  return $lexer;
74  }
75 
76  // Check if this is a GeSHi lexer name for which there exists
77  // a compatible Pygments lexer with a different name.
78  if ( isset( GeSHi::$compatibleLexers[$lexer] ) ) {
79  $lexer = GeSHi::$compatibleLexers[$lexer];
80  if ( in_array( $lexer, $lexers ) ) {
81  return $lexer;
82  }
83  }
84 
85  return null;
86  }
87 
93  public static function onParserFirstCallInit( Parser &$parser ) {
94  foreach ( array( 'source', 'syntaxhighlight' ) as $tag ) {
95  $parser->setHook( $tag, array( 'SyntaxHighlight_GeSHi', 'parserHook' ) );
96  }
97  }
98 
108  public static function parserHook( $text, $args = array(), $parser ) {
109  global $wgUseTidy;
110 
111  // Replace strip markers (For e.g. {{#tag:syntaxhighlight|<nowiki>...}})
112  $out = $parser->mStripState->unstripNoWiki( $text );
113 
114  // Don't trim leading spaces away, just the linefeeds
115  $out = preg_replace( '/^\n+/', '', rtrim( $out ) );
116 
117  // Convert deprecated attributes
118  if ( isset( $args['enclose'] ) ) {
119  if ( $args['enclose'] === 'none' ) {
120  $args['inline'] = true;
121  }
122  unset( $args['enclose'] );
123  }
124 
125  $lexer = isset( $args['lang'] ) ? $args['lang'] : '';
126 
127  $result = self::highlight( $out, $lexer, $args );
128  if ( !$result->isGood() ) {
129  $parser->addTrackingCategory( 'syntaxhighlight-error-category' );
130  }
131  $out = $result->getValue();
132 
133  // HTML Tidy will convert tabs to spaces incorrectly (bug 30930).
134  // But the conversion from tab to space occurs while reading the input,
135  // before the conversion from &#9; to tab, so we can armor it that way.
136  if ( $wgUseTidy ) {
137  $out = str_replace( "\t", '&#9;', $out );
138  }
139 
140  // Allow certain HTML attributes
141  $htmlAttribs = Sanitizer::validateAttributes( $args, array( 'style', 'class', 'id', 'dir' ) );
142  if ( !isset( $htmlAttribs['class'] ) ) {
143  $htmlAttribs['class'] = self::HIGHLIGHT_CSS_CLASS;
144  } else {
145  $htmlAttribs['class'] .= ' ' . self::HIGHLIGHT_CSS_CLASS;
146  }
147  if ( !( isset( $htmlAttribs['dir'] ) && $htmlAttribs['dir'] === 'rtl' ) ) {
148  $htmlAttribs['dir'] = 'ltr';
149  }
150 
151  if ( isset( $args['inline'] ) ) {
152  // Enforce inlineness. Stray newlines may result in unexpected list and paragraph processing
153  // (also known as doBlockLevels()).
154  $out = str_replace( "\n", ' ', $out );
155  $out = Html::rawElement( 'code', $htmlAttribs, $out );
156 
157  } else {
158  // Not entirely sure what benefit this provides, but it was here already
159  $htmlAttribs['class'] .= ' ' . 'mw-content-' . $htmlAttribs['dir'];
160 
161  // Unwrap Pygments output to provide our own wrapper. We can't just always use the 'nowrap'
162  // option (pass 'inline'), since it disables other useful things like line highlighting.
163  // Tolerate absence of quotes for Html::element() and wgWellFormedXml=false.
164  $m = array();
165  if ( preg_match( '/^<div class="?mw-highlight"?>(.*)<\/div>$/s', trim( $out ), $m ) ) {
166  $out = trim( $m[1] );
167  } else {
168  throw new MWException( 'Unexpected output from Pygments encountered' );
169  }
170 
171  // Use 'nowiki' strip marker to prevent list processing (also known as doBlockLevels()).
172  // However, leave the wrapping <div/> outside to prevent <p/>-wrapping.
173  $marker = $parser->mUniqPrefix . '-syntaxhighlightinner-' .
174  sprintf( '%08X', $parser->mMarkerIndex++ ) . $parser::MARKER_SUFFIX;
175  $parser->mStripState->addNoWiki( $marker, $out );
176 
177  $out = Html::openElement( 'div', $htmlAttribs ) .
178  $marker .
179  Html::closeElement( 'div' );
180  }
181 
182  // Register CSS
183  $parser->getOutput()->addModuleStyles( 'ext.pygments' );
184 
185  return $out;
186  }
187 
203  public static function highlight( $code, $lang = null, $args = array() ) {
204  global $wgPygmentizePath;
205 
206  $status = new Status;
207 
208  $lexer = self::getLexer( $lang );
209  if ( $lexer === null && $lang !== null ) {
210  $status->warning( 'syntaxhighlight-error-unknown-language', $lang );
211  }
212 
213  $length = strlen( $code );
214  if ( strlen( $code ) > self::HIGHLIGHT_MAX_BYTES ) {
215  $status->warning( 'syntaxhighlight-error-exceeds-size-limit',
216  $length, self::HIGHLIGHT_MAX_BYTES );
217  $lexer = null;
218  }
219 
220  if ( wfShellExecDisabled() !== false ) {
221  $status->warning( 'syntaxhighlight-error-pygments-invocation-failure' );
222  wfWarn(
223  'MediaWiki determined that it cannot invoke Pygments. ' .
224  'As a result, SyntaxHighlight_GeSHi will not perform any syntax highlighting. ' .
225  'See the debug log for details: ' .
226  'https://www.mediawiki.org/wiki/Manual:$wgDebugLogFile'
227  );
228  $lexer = null;
229  }
230 
231  $inline = isset( $args['inline'] );
232 
233  if ( $lexer === null ) {
234  if ( $inline ) {
235  $status->value = htmlspecialchars( trim( $code ), ENT_NOQUOTES );
236  } else {
237  $pre = Html::element( 'pre', array(), $code );
238  $status->value = Html::rawElement(
239  'div',
240  array( 'class' => self::HIGHLIGHT_CSS_CLASS ),
241  $pre
242  );
243  }
244  return $status;
245  }
246 
247  $options = array(
248  'cssclass' => self::HIGHLIGHT_CSS_CLASS,
249  'encoding' => 'utf-8',
250  );
251 
252  // Line numbers
253  if ( isset( $args['line'] ) ) {
254  $options['linenos'] = 'inline';
255  }
256 
257  if ( $lexer === 'php' && strpos( $code, '<?php' ) === false ) {
258  $options['startinline'] = 1;
259  }
260 
261  // Highlight specific lines
262  if ( isset( $args['highlight'] ) ) {
263  $lines = self::parseHighlightLines( $args['highlight'] );
264  if ( count( $lines ) ) {
265  $options['hl_lines'] = implode( ' ', $lines );
266  }
267  }
268 
269  // Starting line number
270  if ( isset( $args['start'] ) && ctype_digit( $args['start'] ) ) {
271  $options['linenostart'] = (int)$args['start'];
272  }
273 
274  if ( $inline ) {
275  $options['nowrap'] = 1;
276  }
277 
279  $cacheKey = self::makeCacheKey( $code, $lexer, $options );
280  $output = $cache->get( $cacheKey );
281 
282  if ( $output === false ) {
283  $optionPairs = array();
284  foreach ( $options as $k => $v ) {
285  $optionPairs[] = "{$k}={$v}";
286  }
287  $builder = new ProcessBuilder();
288  $builder->setPrefix( $wgPygmentizePath );
289  $process = $builder
290  ->add( '-l' )->add( $lexer )
291  ->add( '-f' )->add( 'html' )
292  ->add( '-O' )->add( implode( ',', $optionPairs ) )
293  ->getProcess();
294 
295  $process->setInput( $code );
296 
297  /* Workaround for T151523 (buggy $process->getOutput()).
298  If/when this issue is fixed in HHVM or Symfony,
299  replace this with "$process->run(); $output = $process->getOutput();"
300  */
301  $output = '';
302  $process->run( function( $type, $capturedOutput ) use ( &$output ) {
303  $output .= $capturedOutput;
304  } );
305 
306  if ( !$process->isSuccessful() ) {
307  $status->warning( 'syntaxhighlight-error-pygments-invocation-failure' );
308  wfWarn( 'Failed to invoke Pygments: ' . $process->getErrorOutput() );
309  $status->value = self::highlight( $code, null, $args )->getValue();
310  return $status;
311  }
312 
313  $cache->set( $cacheKey, $output );
314  }
315 
316  if ( $inline ) {
317  $output = trim( $output );
318  }
319 
320  $status->value = $output;
321  return $status;
322 
323  }
324 
333  private static function makeCacheKey( $code, $lexer, $options ) {
334  $optionString = FormatJson::encode( $options, false, FormatJson::ALL_OK );
335  $hash = md5( "{$code}|{$lexer}|{$optionString}|" . self::CACHE_VERSION );
336  if ( function_exists( 'wfGlobalCacheKey' ) ) {
337  return wfGlobalCacheKey( 'highlight', $hash );
338  } else {
339  return 'highlight:' . $hash;
340  }
341  }
342 
352  protected static function parseHighlightLines( $lineSpec ) {
353  $lines = array();
354  $values = array_map( 'trim', explode( ',', $lineSpec ) );
355  foreach ( $values as $value ) {
356  if ( ctype_digit( $value ) ) {
357  $lines[] = (int)$value;
358  } elseif ( strpos( $value, '-' ) !== false ) {
359  list( $start, $end ) = array_map( 'trim', explode( '-', $value ) );
360  if ( self::validHighlightRange( $start, $end ) ) {
361  for ( $i = intval( $start ); $i <= $end; $i++ ) {
362  $lines[] = $i;
363  }
364  }
365  }
366  if ( count( $lines ) > self::HIGHLIGHT_MAX_LINES ) {
367  $lines = array_slice( $lines, 0, self::HIGHLIGHT_MAX_LINES );
368  break;
369  }
370  }
371  return $lines;
372  }
373 
380  protected static function validHighlightRange( $start, $end ) {
381  // Since we're taking this tiny range and producing a an
382  // array of every integer between them, it would be trivial
383  // to DoS the system by asking for a huge range.
384  // Impose an arbitrary limit on the number of lines in a
385  // given range to reduce the impact.
386  return
387  ctype_digit( $start ) &&
388  ctype_digit( $end ) &&
389  $start > 0 &&
390  $start < $end &&
391  $end - $start < self::HIGHLIGHT_MAX_LINES;
392  }
393 
403 
404  global $wgParser, $wgTextModelsToParse;
405 
406  if ( !$generateHtml ) {
407  // Nothing special for us to do, let MediaWiki handle this.
408  return true;
409  }
410 
411  // Determine the language
412  $extension = ExtensionRegistry::getInstance();
413  $models = $extension->getAttribute( 'SyntaxHighlightModels' );
414  $model = $content->getModel();
415  if ( !isset( $models[$model] ) ) {
416  // We don't care about this model, carry on.
417  return true;
418  }
419  $lexer = $models[$model];
420 
421  // Hope that $wgSyntaxHighlightModels does not contain silly types.
423  if ( !$text ) {
424  // Oops! Non-text content? Let MediaWiki handle this.
425  return true;
426  }
427 
428  // Parse using the standard parser to get links etc. into the database, HTML is replaced below.
429  // We could do this using $content->fillParserOutput(), but alas it is 'protected'.
430  if ( $content instanceof TextContent && in_array( $model, $wgTextModelsToParse ) ) {
431  $output = $wgParser->parse( $text, $title, $options, true, true, $revId );
432  }
433 
434  $status = self::highlight( $text, $lexer );
435  if ( !$status->isOK() ) {
436  return true;
437  }
438  $out = $status->getValue();
439 
440  $output->addModuleStyles( 'ext.pygments' );
441  $output->setText( '<div dir="ltr">' . $out . '</div>' );
442 
443  // Inform MediaWiki that we have parsed this page and it shouldn't mess with it.
444  return false;
445  }
446 
457  public static function onApiFormatHighlight( IContextSource $context, $text, $mime, $format ) {
458  if ( !isset( self::$mimeLexers[$mime] ) ) {
459  return true;
460  }
461 
462  $lexer = self::$mimeLexers[$mime];
463  $status = self::highlight( $text, $lexer );
464  if ( !$status->isOK() ) {
465  return true;
466  }
467 
468  $out = $status->getValue();
469  if ( preg_match( '/^<pre([^>]*)>/i', $out, $m ) ) {
470  $attrs = Sanitizer::decodeTagAttributes( $m[1] );
471  $attrs['class'] .= ' api-pretty-content';
472  $encodedAttrs = Sanitizer::safeEncodeTagAttributes( $attrs );
473  $out = '<pre' . $encodedAttrs. '>' . substr( $out, strlen( $m[0] ) );
474  }
476  $output->addModuleStyles( 'ext.pygments' );
477  $output->addHTML( '<div dir="ltr">' . $out . '</div>' );
478 
479  // Inform MediaWiki that we have parsed this page and it shouldn't mess with it.
480  return false;
481  }
482 
492  public static function onRejectParserCacheValue(
494  ) {
495  foreach ( $parserOutput->getModuleStyles() as $module ) {
496  if ( strpos( $module, 'ext.geshi.' ) === 0 ) {
497  $page->getTitle()->purgeSquid();
498  return false;
499  }
500  }
501  return true;
502  }
503 
511  if ( ! ExtensionRegistry::getInstance()->isLoaded( 'VisualEditor' ) ) {
512  return;
513  }
514 
515  $resourceLoader->register( 'ext.geshi.visualEditor', [
516  'class' => 'ResourceLoaderGeSHiVisualEditorModule',
517  'localBasePath' => __DIR__ . DIRECTORY_SEPARATOR . 'modules',
518  'remoteExtPath' => 'SyntaxHighlight_GeSHi/modules',
519  'scripts' => [
520  've-syntaxhighlight/ve.dm.MWSyntaxHighlightNode.js',
521  've-syntaxhighlight/ve.ce.MWSyntaxHighlightNode.js',
522  've-syntaxhighlight/ve.ui.MWSyntaxHighlightWindow.js',
523  've-syntaxhighlight/ve.ui.MWSyntaxHighlightDialog.js',
524  've-syntaxhighlight/ve.ui.MWSyntaxHighlightDialogTool.js',
525  've-syntaxhighlight/ve.ui.MWSyntaxHighlightInspector.js',
526  've-syntaxhighlight/ve.ui.MWSyntaxHighlightInspectorTool.js',
527  ],
528  'styles' => [
529  've-syntaxhighlight/ve.ce.MWSyntaxHighlightNode.css',
530  've-syntaxhighlight/ve.ui.MWSyntaxHighlightDialog.css',
531  've-syntaxhighlight/ve.ui.MWSyntaxHighlightInspector.css',
532  ],
533  'dependencies' => [
534  'ext.visualEditor.mwcore',
535  ],
536  'messages' => [
537  'syntaxhighlight-visualeditor-mwsyntaxhighlightinspector-code',
538  'syntaxhighlight-visualeditor-mwsyntaxhighlightinspector-language',
539  'syntaxhighlight-visualeditor-mwsyntaxhighlightinspector-none',
540  'syntaxhighlight-visualeditor-mwsyntaxhighlightinspector-showlines',
541  'syntaxhighlight-visualeditor-mwsyntaxhighlightinspector-title',
542  ],
543  'targets' => [ 'desktop', 'mobile' ],
544  ] );
545  }
546 
551  public static function prepare( $text, $lang ) {
552  wfDeprecated( __METHOD__ );
553  return new GeSHi( self::highlight( $text, $lang )->getValue() );
554  }
555 
562  public static function buildHeadItem( $geshi ) {
563  wfDeprecated( __METHOD__ );
564  $geshi->parse_code();
565  return '';
566  }
567 }
ParserOptions
Set options of the Parser.
Definition: ParserOptions.php:33
$context
error also a ContextSource you ll probably need to make sure the header is varied on and they can depend only on the ResourceLoaderContext $context
Definition: hooks.txt:2612
onApiFormatHighlight
static onApiFormatHighlight(IContextSource $context, $text, $mime, $format)
Hook to provide syntax highlighting for API pretty-printed output.
Definition: SyntaxHighlight_GeSHi.class.php:457
$status
return $status
Definition: SyntaxHighlight_GeSHi.class.php:310
ParserOutput
Definition: ParserOutput.php:24
$wgParser
$wgParser
Definition: Setup.php:796
$lang
if(!isset( $args[0])) $lang
Definition: testCompression.php:33
captcha-old.count
count
Definition: captcha-old.py:225
$result
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED! Use $magicWords in a file listed in $wgExtensionMessagesFiles instead. Use this to define synonyms of magic words depending of the language & $magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED! Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead. Use to define aliases of special pages names depending of the language & $specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Array with elements of the form "language:title" in the order that they will be output. & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
Definition: hooks.txt:1954
validHighlightRange
static validHighlightRange( $start, $end)
Validate a provided input range.
Definition: SyntaxHighlight_GeSHi.class.php:380
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
onRejectParserCacheValue
static onRejectParserCacheValue(ParserOutput $parserOutput, $page, ParserOptions $popts)
Reject parser cache values that are for GeSHi since those ResourceLoader modules no longer exist.
Definition: SyntaxHighlight_GeSHi.class.php:492
$generateHtml
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist and Watchlist you will want to construct new ChangesListBooleanFilter or ChangesListStringOptionsFilter objects When constructing you specify which group they belong to You can reuse existing or create your you must register them with $special registerFilterGroup removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context the output can only depend on parameters provided to this hook not on global state $generateHtml
Definition: hooks.txt:1049
$type
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached my talk my contributions etc etc otherwise the built in rate limiting checks are if enabled allows for interception of redirect as a string mapping parameter names to values & $type
Definition: hooks.txt:2536
parseHighlightLines
static parseHighlightLines( $lineSpec)
Take an input specifying a list of lines to highlight, returning a raw list of matching line numbers.
Definition: SyntaxHighlight_GeSHi.class.php:352
FormatJson\ALL_OK
const ALL_OK
Skip escaping as many characters as reasonably possible.
Definition: FormatJson.php:55
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
Status
Generic operation result class Has warning/error list, boolean status and arbitrary value.
Definition: Status.php:40
Html\closeElement
static closeElement( $element)
Returns "</$element>".
Definition: Html.php:309
ExtensionRegistry\getInstance
static getInstance()
Definition: ExtensionRegistry.php:80
FormatJson\encode
static encode( $value, $pretty=false, $escaping=0)
Returns the JSON representation of a value.
Definition: FormatJson.php:127
makeCacheKey
static makeCacheKey( $code, $lexer, $options)
Construct a cache key for the results of a Pygments invocation.
Definition: SyntaxHighlight_GeSHi.class.php:333
MWException
MediaWiki exception.
Definition: MWException.php:26
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:934
wfGlobalCacheKey
wfGlobalCacheKey()
Make a cache key with database-agnostic prefix.
Definition: GlobalFunctions.php:2998
wfDeprecated
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
Definition: GlobalFunctions.php:1128
$content
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist and Watchlist you will want to construct new ChangesListBooleanFilter or ChangesListStringOptionsFilter objects When constructing you specify which group they belong to You can reuse existing or create your you must register them with $special registerFilterGroup removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content $content
Definition: hooks.txt:1049
wfShellExecDisabled
wfShellExecDisabled()
Check if wfShellExec() is effectively disabled via php.ini config.
Definition: GlobalFunctions.php:2262
$page
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached $page
Definition: hooks.txt:2536
$tag
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist and Watchlist you will want to construct new ChangesListBooleanFilter or ChangesListStringOptionsFilter objects When constructing you specify which group they belong to You can reuse existing or create your you must register them with $special registerFilterGroup removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books $tag
Definition: hooks.txt:1028
ContextSource\getOutput
getOutput()
Get the OutputPage object.
Definition: ContextSource.php:123
$lines
$lines
Definition: router.php:67
$parser
do that in ParserLimitReportFormat instead $parser
Definition: hooks.txt:2536
$output
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist and Watchlist you will want to construct new ChangesListBooleanFilter or ChangesListStringOptionsFilter objects When constructing you specify which group they belong to You can reuse existing or create your you must register them with $special registerFilterGroup removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context the output can only depend on parameters provided to this hook not on global state indicating whether full HTML should be generated If generation of HTML may be but other information should still be present in the ParserOutput object & $output
Definition: hooks.txt:1049
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:93
list
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
Definition: deferred.txt:11
onResourceLoaderRegisterModules
static onResourceLoaderRegisterModules(&$resourceLoader)
Conditionally register resource loader modules that depends on the VisualEditor MediaWiki extension.
Definition: SyntaxHighlight_GeSHi.class.php:510
$mime
if( $ext=='php'|| $ext=='php5') $mime
Definition: router.php:65
$value
$value
Definition: styleTest.css.php:45
onParserFirstCallInit
static onParserFirstCallInit(Parser &$parser)
Register parser hook.
Definition: SyntaxHighlight_GeSHi.class.php:363
onContentGetParserOutput
static onContentGetParserOutput(Content $content, Title $title, $revId, ParserOptions $options, $generateHtml, ParserOutput &$output)
Hook into Content::getParserOutput to provide syntax highlighting for script content.
Definition: SyntaxHighlight_GeSHi.class.php:401
prepare
static prepare( $text, $lang)
Backward-compatibility shim for extensions.
Definition: SyntaxHighlight_GeSHi.class.php:551
TextContent
Content object implementation for representing flat text.
Definition: TextContent.php:35
$resourceLoader
error also a ContextSource you ll probably need to make sure the header is varied on and they can depend only on the ResourceLoaderContext such as when responding to a resource loader request or generating HTML output & $resourceLoader
Definition: hooks.txt:2612
IContextSource
Interface for objects which can provide a MediaWiki context on request.
Definition: IContextSource.php:55
$mimeLexers
static array $mimeLexers
Mapping of MIME-types to lexer names.
Definition: SyntaxHighlight_GeSHi.class.php:308
Content
Base interface for content objects.
Definition: Content.php:34
GeSHi
This program is free software; you can redistribute it and/or modify it under the terms of the GNU Ge...
Definition: SyntaxHighlight_GeSHi.compat.php:25
$args
if( $line===false) $args
Definition: cdb.php:63
buildHeadItem
static buildHeadItem( $geshi)
Backward-compatibility shim for extensions.
Definition: SyntaxHighlight_GeSHi.class.php:562
Title
Represents a title within MediaWiki.
Definition: Title.php:39
ContentHandler\getContentText
static getContentText(Content $content=null)
Convenience function for getting flat text from a Content object.
Definition: ContentHandler.php:79
$cache
$cache
Definition: mcc.php:33
ObjectCache\getMainWANInstance
static getMainWANInstance()
Get the main WAN cache object.
Definition: ObjectCache.php:370
parserHook
static parserHook( $text, $args=array(), $parser)
Parser hook.
Definition: SyntaxHighlight_GeSHi.class.php:378
$code
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable & $code
Definition: hooks.txt:783
as
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
Html\openElement
static openElement( $element, $attribs=[])
Identical to rawElement(), but has no third parameter and omits the end tag (and the self-closing '/'...
Definition: Html.php:251
Html\rawElement
static rawElement( $element, $attribs=[], $contents='')
Returns an HTML element in a string.
Definition: Html.php:209
$revId
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist and Watchlist you will want to construct new ChangesListBooleanFilter or ChangesListStringOptionsFilter objects When constructing you specify which group they belong to You can reuse existing or create your you must register them with $special registerFilterGroup removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context $revId
Definition: hooks.txt:1049
wfWarn
wfWarn( $msg, $callerOffset=1, $level=E_USER_NOTICE)
Send a warning either to the debug log or in a PHP error depending on $wgDevelopmentWarnings.
Definition: GlobalFunctions.php:1142
getLexer
static getLexer( $lang)
Get the Pygments lexer name for a particular language.
Definition: SyntaxHighlight_GeSHi.class.php:329
Html\element
static element( $element, $attribs=[], $contents='')
Identical to rawElement(), but HTML-escapes $contents (like Xml::element()).
Definition: Html.php:231
$pre
return true to allow those checks to and false if checking is done remove or add to the links of a group of changes in EnhancedChangesList Hook subscribers can return false to omit this line from recentchanges use this to change the tables headers temp or archived zone change it to an object instance and return false override the list derivative used the name of the old file when set the default code will be skipped $pre
Definition: hooks.txt:1459
$options
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist and Watchlist you will want to construct new ChangesListBooleanFilter or ChangesListStringOptionsFilter objects When constructing you specify which group they belong to You can reuse existing or create your you must register them with $special registerFilterGroup removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context $options
Definition: hooks.txt:1049
GeSHi::$compatibleLexers
static array $compatibleLexers
A mapping of GeSHi lexer names to compatible Pygments lexers.
Definition: SyntaxHighlight_GeSHi.compat.php:27
$parserOutput
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist and Watchlist you will want to construct new ChangesListBooleanFilter or ChangesListStringOptionsFilter objects When constructing you specify which group they belong to You can reuse existing or create your you must register them with $special registerFilterGroup removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context $parserOutput
Definition: hooks.txt:1049
array
the array() calling protocol came about after MediaWiki 1.4rc1.
onSetup
static onSetup()
Definition: SyntaxHighlight_GeSHi.class.php:314
$out
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out
Definition: hooks.txt:783