MediaWiki  1.29.2
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 
77 
78  // Check if this is a GeSHi lexer name for which there exists
79  // a compatible Pygments lexer with a different name.
80  if ( isset( $geshi2pygments[$lexer] ) ) {
81  $lexer = $geshi2pygments[$lexer];
82  if ( in_array( $lexer, $lexers ) ) {
83  return $lexer;
84  }
85  }
86 
87  return null;
88  }
89 
95  public static function onParserFirstCallInit( Parser &$parser ) {
96  foreach ( array( 'source', 'syntaxhighlight' ) as $tag ) {
97  $parser->setHook( $tag, array( 'SyntaxHighlight_GeSHi', 'parserHook' ) );
98  }
99  }
100 
110  public static function parserHook( $text, $args = array(), $parser ) {
111  global $wgUseTidy;
112 
113  // Replace strip markers (For e.g. {{#tag:syntaxhighlight|<nowiki>...}})
114  $out = $parser->mStripState->unstripNoWiki( $text );
115 
116  // Don't trim leading spaces away, just the linefeeds
117  $out = preg_replace( '/^\n+/', '', rtrim( $out ) );
118 
119  // Convert deprecated attributes
120  if ( isset( $args['enclose'] ) ) {
121  if ( $args['enclose'] === 'none' ) {
122  $args['inline'] = true;
123  }
124  unset( $args['enclose'] );
125  }
126 
127  $lexer = isset( $args['lang'] ) ? $args['lang'] : '';
128 
129  $result = self::highlight( $out, $lexer, $args );
130  if ( !$result->isGood() ) {
131  $parser->addTrackingCategory( 'syntaxhighlight-error-category' );
132  }
133  $out = $result->getValue();
134 
135  // HTML Tidy will convert tabs to spaces incorrectly (bug 30930).
136  // But the conversion from tab to space occurs while reading the input,
137  // before the conversion from &#9; to tab, so we can armor it that way.
138  if ( $wgUseTidy ) {
139  $out = str_replace( "\t", '&#9;', $out );
140  }
141 
142  // Allow certain HTML attributes
143  $htmlAttribs = Sanitizer::validateAttributes( $args, array( 'style', 'class', 'id', 'dir' ) );
144  if ( !isset( $htmlAttribs['class'] ) ) {
145  $htmlAttribs['class'] = self::HIGHLIGHT_CSS_CLASS;
146  } else {
147  $htmlAttribs['class'] .= ' ' . self::HIGHLIGHT_CSS_CLASS;
148  }
149  if ( !( isset( $htmlAttribs['dir'] ) && $htmlAttribs['dir'] === 'rtl' ) ) {
150  $htmlAttribs['dir'] = 'ltr';
151  }
152 
153  if ( isset( $args['inline'] ) ) {
154  // Enforce inlineness. Stray newlines may result in unexpected list and paragraph processing
155  // (also known as doBlockLevels()).
156  $out = str_replace( "\n", ' ', $out );
157  $out = Html::rawElement( 'code', $htmlAttribs, $out );
158 
159  } else {
160  // Not entirely sure what benefit this provides, but it was here already
161  $htmlAttribs['class'] .= ' ' . 'mw-content-' . $htmlAttribs['dir'];
162 
163  // Unwrap Pygments output to provide our own wrapper. We can't just always use the 'nowrap'
164  // option (pass 'inline'), since it disables other useful things like line highlighting.
165  // Tolerate absence of quotes for Html::element() and wgWellFormedXml=false.
166  $m = array();
167  if ( preg_match( '/^<div class="?mw-highlight"?>(.*)<\/div>$/s', trim( $out ), $m ) ) {
168  $out = trim( $m[1] );
169  } else {
170  throw new MWException( 'Unexpected output from Pygments encountered' );
171  }
172 
173  // Use 'nowiki' strip marker to prevent list processing (also known as doBlockLevels()).
174  // However, leave the wrapping <div/> outside to prevent <p/>-wrapping.
175  $marker = $parser->mUniqPrefix . '-syntaxhighlightinner-' .
176  sprintf( '%08X', $parser->mMarkerIndex++ ) . $parser::MARKER_SUFFIX;
177  $parser->mStripState->addNoWiki( $marker, $out );
178 
179  $out = Html::openElement( 'div', $htmlAttribs ) .
180  $marker .
181  Html::closeElement( 'div' );
182  }
183 
184  // Register CSS
185  $parser->getOutput()->addModuleStyles( 'ext.pygments' );
186 
187  return $out;
188  }
189 
205  public static function highlight( $code, $lang = null, $args = array() ) {
206  global $wgPygmentizePath;
207 
208  $status = new Status;
209 
210  $lexer = self::getLexer( $lang );
211  if ( $lexer === null && $lang !== null ) {
212  $status->warning( 'syntaxhighlight-error-unknown-language', $lang );
213  }
214 
215  $length = strlen( $code );
216  if ( strlen( $code ) > self::HIGHLIGHT_MAX_BYTES ) {
217  $status->warning( 'syntaxhighlight-error-exceeds-size-limit',
218  $length, self::HIGHLIGHT_MAX_BYTES );
219  $lexer = null;
220  }
221 
222  if ( wfShellExecDisabled() !== false ) {
223  $status->warning( 'syntaxhighlight-error-pygments-invocation-failure' );
224  wfWarn(
225  'MediaWiki determined that it cannot invoke Pygments. ' .
226  'As a result, SyntaxHighlight_GeSHi will not perform any syntax highlighting. ' .
227  'See the debug log for details: ' .
228  'https://www.mediawiki.org/wiki/Manual:$wgDebugLogFile'
229  );
230  $lexer = null;
231  }
232 
233  $inline = isset( $args['inline'] );
234 
235  if ( $lexer === null ) {
236  if ( $inline ) {
237  $status->value = htmlspecialchars( trim( $code ), ENT_NOQUOTES );
238  } else {
239  $pre = Html::element( 'pre', array(), $code );
240  $status->value = Html::rawElement(
241  'div',
242  array( 'class' => self::HIGHLIGHT_CSS_CLASS ),
243  $pre
244  );
245  }
246  return $status;
247  }
248 
249  $options = array(
250  'cssclass' => self::HIGHLIGHT_CSS_CLASS,
251  'encoding' => 'utf-8',
252  );
253 
254  // Line numbers
255  if ( isset( $args['line'] ) ) {
256  $options['linenos'] = 'inline';
257  }
258 
259  if ( $lexer === 'php' && strpos( $code, '<?php' ) === false ) {
260  $options['startinline'] = 1;
261  }
262 
263  // Highlight specific lines
264  if ( isset( $args['highlight'] ) ) {
265  $lines = self::parseHighlightLines( $args['highlight'] );
266  if ( count( $lines ) ) {
267  $options['hl_lines'] = implode( ' ', $lines );
268  }
269  }
270 
271  // Starting line number
272  if ( isset( $args['start'] ) && ctype_digit( $args['start'] ) ) {
273  $options['linenostart'] = (int)$args['start'];
274  }
275 
276  if ( $inline ) {
277  $options['nowrap'] = 1;
278  }
279 
281  $cacheKey = self::makeCacheKey( $code, $lexer, $options );
282  $output = $cache->get( $cacheKey );
283 
284  if ( $output === false ) {
285  $optionPairs = array();
286  foreach ( $options as $k => $v ) {
287  $optionPairs[] = "{$k}={$v}";
288  }
289  $builder = new ProcessBuilder();
290  $builder->setPrefix( $wgPygmentizePath );
291  $process = $builder
292  ->add( '-l' )->add( $lexer )
293  ->add( '-f' )->add( 'html' )
294  ->add( '-O' )->add( implode( ',', $optionPairs ) )
295  ->getProcess();
296 
297  $process->setInput( $code );
298 
299  /* Workaround for T151523 (buggy $process->getOutput()).
300  If/when this issue is fixed in HHVM or Symfony,
301  replace this with "$process->run(); $output = $process->getOutput();"
302  */
303  $output = '';
304  $process->run( function( $type, $capturedOutput ) use ( &$output ) {
305  $output .= $capturedOutput;
306  } );
307 
308  if ( !$process->isSuccessful() ) {
309  $status->warning( 'syntaxhighlight-error-pygments-invocation-failure' );
310  wfWarn( 'Failed to invoke Pygments: ' . $process->getErrorOutput() );
311  $status->value = self::highlight( $code, null, $args )->getValue();
312  return $status;
313  }
314 
315  $cache->set( $cacheKey, $output );
316  }
317 
318  if ( $inline ) {
319  $output = trim( $output );
320  }
321 
322  $status->value = $output;
323  return $status;
324 
325  }
326 
335  private static function makeCacheKey( $code, $lexer, $options ) {
336  $optionString = FormatJson::encode( $options, false, FormatJson::ALL_OK );
337  $hash = md5( "{$code}|{$lexer}|{$optionString}|" . self::CACHE_VERSION );
338  if ( function_exists( 'wfGlobalCacheKey' ) ) {
339  return wfGlobalCacheKey( 'highlight', $hash );
340  } else {
341  return 'highlight:' . $hash;
342  }
343  }
344 
354  protected static function parseHighlightLines( $lineSpec ) {
355  $lines = array();
356  $values = array_map( 'trim', explode( ',', $lineSpec ) );
357  foreach ( $values as $value ) {
358  if ( ctype_digit( $value ) ) {
359  $lines[] = (int)$value;
360  } elseif ( strpos( $value, '-' ) !== false ) {
361  list( $start, $end ) = array_map( 'trim', explode( '-', $value ) );
362  if ( self::validHighlightRange( $start, $end ) ) {
363  for ( $i = intval( $start ); $i <= $end; $i++ ) {
364  $lines[] = $i;
365  }
366  }
367  }
368  if ( count( $lines ) > self::HIGHLIGHT_MAX_LINES ) {
369  $lines = array_slice( $lines, 0, self::HIGHLIGHT_MAX_LINES );
370  break;
371  }
372  }
373  return $lines;
374  }
375 
382  protected static function validHighlightRange( $start, $end ) {
383  // Since we're taking this tiny range and producing a an
384  // array of every integer between them, it would be trivial
385  // to DoS the system by asking for a huge range.
386  // Impose an arbitrary limit on the number of lines in a
387  // given range to reduce the impact.
388  return
389  ctype_digit( $start ) &&
390  ctype_digit( $end ) &&
391  $start > 0 &&
392  $start < $end &&
393  $end - $start < self::HIGHLIGHT_MAX_LINES;
394  }
395 
405 
406  global $wgParser, $wgTextModelsToParse;
407 
408  if ( !$generateHtml ) {
409  // Nothing special for us to do, let MediaWiki handle this.
410  return true;
411  }
412 
413  // Determine the language
414  $extension = ExtensionRegistry::getInstance();
415  $models = $extension->getAttribute( 'SyntaxHighlightModels' );
416  $model = $content->getModel();
417  if ( !isset( $models[$model] ) ) {
418  // We don't care about this model, carry on.
419  return true;
420  }
421  $lexer = $models[$model];
422 
423  // Hope that $wgSyntaxHighlightModels does not contain silly types.
425  if ( !$text ) {
426  // Oops! Non-text content? Let MediaWiki handle this.
427  return true;
428  }
429 
430  // Parse using the standard parser to get links etc. into the database, HTML is replaced below.
431  // We could do this using $content->fillParserOutput(), but alas it is 'protected'.
432  if ( $content instanceof TextContent && in_array( $model, $wgTextModelsToParse ) ) {
433  $output = $wgParser->parse( $text, $title, $options, true, true, $revId );
434  }
435 
436  $status = self::highlight( $text, $lexer );
437  if ( !$status->isOK() ) {
438  return true;
439  }
440  $out = $status->getValue();
441 
442  $output->addModuleStyles( 'ext.pygments' );
443  $output->setText( '<div dir="ltr">' . $out . '</div>' );
444 
445  // Inform MediaWiki that we have parsed this page and it shouldn't mess with it.
446  return false;
447  }
448 
459  public static function onApiFormatHighlight( IContextSource $context, $text, $mime, $format ) {
460  if ( !isset( self::$mimeLexers[$mime] ) ) {
461  return true;
462  }
463 
464  $lexer = self::$mimeLexers[$mime];
465  $status = self::highlight( $text, $lexer );
466  if ( !$status->isOK() ) {
467  return true;
468  }
469 
470  $out = $status->getValue();
471  if ( preg_match( '/^<pre([^>]*)>/i', $out, $m ) ) {
472  $attrs = Sanitizer::decodeTagAttributes( $m[1] );
473  $attrs['class'] .= ' api-pretty-content';
474  $encodedAttrs = Sanitizer::safeEncodeTagAttributes( $attrs );
475  $out = '<pre' . $encodedAttrs. '>' . substr( $out, strlen( $m[0] ) );
476  }
478  $output->addModuleStyles( 'ext.pygments' );
479  $output->addHTML( '<div dir="ltr">' . $out . '</div>' );
480 
481  // Inform MediaWiki that we have parsed this page and it shouldn't mess with it.
482  return false;
483  }
484 
494  public static function onRejectParserCacheValue(
496  ) {
497  foreach ( $parserOutput->getModuleStyles() as $module ) {
498  if ( strpos( $module, 'ext.geshi.' ) === 0 ) {
499  $page->getTitle()->purgeSquid();
500  return false;
501  }
502  }
503  return true;
504  }
505 
513  if ( ! ExtensionRegistry::getInstance()->isLoaded( 'VisualEditor' ) ) {
514  return;
515  }
516 
517  $resourceLoader->register( 'ext.geshi.visualEditor', [
518  'class' => 'ResourceLoaderGeSHiVisualEditorModule',
519  'localBasePath' => __DIR__ . DIRECTORY_SEPARATOR . 'modules',
520  'remoteExtPath' => 'SyntaxHighlight_GeSHi/modules',
521  'scripts' => [
522  've-syntaxhighlight/ve.dm.MWSyntaxHighlightNode.js',
523  've-syntaxhighlight/ve.ce.MWSyntaxHighlightNode.js',
524  've-syntaxhighlight/ve.ui.MWSyntaxHighlightWindow.js',
525  've-syntaxhighlight/ve.ui.MWSyntaxHighlightDialog.js',
526  've-syntaxhighlight/ve.ui.MWSyntaxHighlightDialogTool.js',
527  've-syntaxhighlight/ve.ui.MWSyntaxHighlightInspector.js',
528  've-syntaxhighlight/ve.ui.MWSyntaxHighlightInspectorTool.js',
529  ],
530  'styles' => [
531  've-syntaxhighlight/ve.ce.MWSyntaxHighlightNode.css',
532  've-syntaxhighlight/ve.ui.MWSyntaxHighlightDialog.css',
533  've-syntaxhighlight/ve.ui.MWSyntaxHighlightInspector.css',
534  ],
535  'dependencies' => [
536  'ext.visualEditor.mwcore',
537  ],
538  'messages' => [
539  'syntaxhighlight-visualeditor-mwsyntaxhighlightinspector-code',
540  'syntaxhighlight-visualeditor-mwsyntaxhighlightinspector-language',
541  'syntaxhighlight-visualeditor-mwsyntaxhighlightinspector-none',
542  'syntaxhighlight-visualeditor-mwsyntaxhighlightinspector-showlines',
543  'syntaxhighlight-visualeditor-mwsyntaxhighlightinspector-title',
544  ],
545  'targets' => [ 'desktop', 'mobile' ],
546  ] );
547  }
548 
553  public static function prepare( $text, $lang ) {
554  wfDeprecated( __METHOD__ );
555  return new GeSHi( self::highlight( $text, $lang )->getValue() );
556  }
557 
564  public static function buildHeadItem( $geshi ) {
565  wfDeprecated( __METHOD__ );
566  $geshi->parse_code();
567  return '';
568  }
569 }
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:459
$status
return $status
Definition: SyntaxHighlight_GeSHi.class.php:312
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:382
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:494
$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:354
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:335
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
SyntaxHighlightGeSHiCompat::getGeSHiToPygmentsMap
static getGeSHiToPygmentsMap()
Definition: SyntaxHighlight_GeSHi.compat.php:110
$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:512
$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:367
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:403
prepare
static prepare( $text, $lang)
Backward-compatibility shim for extensions.
Definition: SyntaxHighlight_GeSHi.class.php:553
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:310
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.GeSHi.php:23
$args
if( $line===false) $args
Definition: cdb.php:63
buildHeadItem
static buildHeadItem( $geshi)
Backward-compatibility shim for extensions.
Definition: SyntaxHighlight_GeSHi.class.php:564
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:382
$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:331
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
$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:316
$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