MediaWiki  1.29.2
BlockLevelPass.php
Go to the documentation of this file.
1 <?php
2 
26  private $DTopen = false;
27  private $inPre = false;
28  private $lastSection = '';
29  private $linestart;
30  private $text;
31 
32  # State constants for the definition list colon extraction
33  const COLON_STATE_TEXT = 0;
34  const COLON_STATE_TAG = 1;
41  const COLON_STATE_LC = 8;
42 
50  public static function doBlockLevels( $text, $lineStart ) {
51  $pass = new self( $text, $lineStart );
52  return $pass->execute();
53  }
54 
58  private function __construct( $text, $lineStart ) {
59  $this->text = $text;
60  $this->lineStart = $lineStart;
61  }
62 
68  private function closeParagraph() {
69  $result = '';
70  if ( $this->lastSection !== '' ) {
71  $result = '</' . $this->lastSection . ">\n";
72  }
73  $this->inPre = false;
74  $this->lastSection = '';
75  return $result;
76  }
77 
87  private function getCommon( $st1, $st2 ) {
88  $shorter = min( strlen( $st1 ), strlen( $st2 ) );
89 
90  for ( $i = 0; $i < $shorter; ++$i ) {
91  if ( $st1[$i] !== $st2[$i] ) {
92  break;
93  }
94  }
95  return $i;
96  }
97 
105  private function openList( $char ) {
106  $result = $this->closeParagraph();
107 
108  if ( '*' === $char ) {
109  $result .= "<ul><li>";
110  } elseif ( '#' === $char ) {
111  $result .= "<ol><li>";
112  } elseif ( ':' === $char ) {
113  $result .= "<dl><dd>";
114  } elseif ( ';' === $char ) {
115  $result .= "<dl><dt>";
116  $this->DTopen = true;
117  } else {
118  $result = '<!-- ERR 1 -->';
119  }
120 
121  return $result;
122  }
123 
130  private function nextItem( $char ) {
131  if ( '*' === $char || '#' === $char ) {
132  return "</li>\n<li>";
133  } elseif ( ':' === $char || ';' === $char ) {
134  $close = "</dd>\n";
135  if ( $this->DTopen ) {
136  $close = "</dt>\n";
137  }
138  if ( ';' === $char ) {
139  $this->DTopen = true;
140  return $close . '<dt>';
141  } else {
142  $this->DTopen = false;
143  return $close . '<dd>';
144  }
145  }
146  return '<!-- ERR 2 -->';
147  }
148 
155  private function closeList( $char ) {
156  if ( '*' === $char ) {
157  $text = "</li></ul>";
158  } elseif ( '#' === $char ) {
159  $text = "</li></ol>";
160  } elseif ( ':' === $char ) {
161  if ( $this->DTopen ) {
162  $this->DTopen = false;
163  $text = "</dt></dl>";
164  } else {
165  $text = "</dd></dl>";
166  }
167  } else {
168  return '<!-- ERR 3 -->';
169  }
170  return $text;
171  }
172 
177  private function execute() {
178  $text = $this->text;
179  # Parsing through the text line by line. The main thing
180  # happening here is handling of block-level elements p, pre,
181  # and making lists from lines starting with * # : etc.
182  $textLines = StringUtils::explode( "\n", $text );
183 
184  $lastPrefix = $output = '';
185  $this->DTopen = $inBlockElem = false;
186  $prefixLength = 0;
187  $pendingPTag = false;
188  $inBlockquote = false;
189 
190  foreach ( $textLines as $inputLine ) {
191  # Fix up $lineStart
192  if ( !$this->lineStart ) {
193  $output .= $inputLine;
194  $this->lineStart = true;
195  continue;
196  }
197  # * = ul
198  # # = ol
199  # ; = dt
200  # : = dd
201 
202  $lastPrefixLength = strlen( $lastPrefix );
203  $preCloseMatch = preg_match( '/<\\/pre/i', $inputLine );
204  $preOpenMatch = preg_match( '/<pre/i', $inputLine );
205  # If not in a <pre> element, scan for and figure out what prefixes are there.
206  if ( !$this->inPre ) {
207  # Multiple prefixes may abut each other for nested lists.
208  $prefixLength = strspn( $inputLine, '*#:;' );
209  $prefix = substr( $inputLine, 0, $prefixLength );
210 
211  # eh?
212  # ; and : are both from definition-lists, so they're equivalent
213  # for the purposes of determining whether or not we need to open/close
214  # elements.
215  $prefix2 = str_replace( ';', ':', $prefix );
216  $t = substr( $inputLine, $prefixLength );
217  $this->inPre = (bool)$preOpenMatch;
218  } else {
219  # Don't interpret any other prefixes in preformatted text
220  $prefixLength = 0;
221  $prefix = $prefix2 = '';
222  $t = $inputLine;
223  }
224 
225  # List generation
226  if ( $prefixLength && $lastPrefix === $prefix2 ) {
227  # Same as the last item, so no need to deal with nesting or opening stuff
228  $output .= $this->nextItem( substr( $prefix, -1 ) );
229  $pendingPTag = false;
230 
231  if ( substr( $prefix, -1 ) === ';' ) {
232  # The one nasty exception: definition lists work like this:
233  # ; title : definition text
234  # So we check for : in the remainder text to split up the
235  # title and definition, without b0rking links.
236  $term = $t2 = '';
237  if ( $this->findColonNoLinks( $t, $term, $t2 ) !== false ) {
238  $t = $t2;
239  $output .= $term . $this->nextItem( ':' );
240  }
241  }
242  } elseif ( $prefixLength || $lastPrefixLength ) {
243  # We need to open or close prefixes, or both.
244 
245  # Either open or close a level...
246  $commonPrefixLength = $this->getCommon( $prefix, $lastPrefix );
247  $pendingPTag = false;
248 
249  # Close all the prefixes which aren't shared.
250  while ( $commonPrefixLength < $lastPrefixLength ) {
251  $output .= $this->closeList( $lastPrefix[$lastPrefixLength - 1] );
252  --$lastPrefixLength;
253  }
254 
255  # Continue the current prefix if appropriate.
256  if ( $prefixLength <= $commonPrefixLength && $commonPrefixLength > 0 ) {
257  $output .= $this->nextItem( $prefix[$commonPrefixLength - 1] );
258  }
259 
260  # Open prefixes where appropriate.
261  if ( $lastPrefix && $prefixLength > $commonPrefixLength ) {
262  $output .= "\n";
263  }
264  while ( $prefixLength > $commonPrefixLength ) {
265  $char = substr( $prefix, $commonPrefixLength, 1 );
266  $output .= $this->openList( $char );
267 
268  if ( ';' === $char ) {
269  # @todo FIXME: This is dupe of code above
270  if ( $this->findColonNoLinks( $t, $term, $t2 ) !== false ) {
271  $t = $t2;
272  $output .= $term . $this->nextItem( ':' );
273  }
274  }
275  ++$commonPrefixLength;
276  }
277  if ( !$prefixLength && $lastPrefix ) {
278  $output .= "\n";
279  }
280  $lastPrefix = $prefix2;
281  }
282 
283  # If we have no prefixes, go to paragraph mode.
284  if ( 0 == $prefixLength ) {
285  # No prefix (not in list)--go to paragraph mode
286  # @todo consider using a stack for nestable elements like span, table and div
287  $openMatch = preg_match(
288  '/(?:<table|<h1|<h2|<h3|<h4|<h5|<h6|<pre|<tr|'
289  . '<p|<ul|<ol|<dl|<li|<\\/tr|<\\/td|<\\/th)/iS',
290  $t
291  );
292  $closeMatch = preg_match(
293  '/(?:<\\/table|<\\/h1|<\\/h2|<\\/h3|<\\/h4|<\\/h5|<\\/h6|'
294  . '<td|<th|<\\/?blockquote|<\\/?div|<hr|<\\/pre|<\\/p|<\\/mw:|'
295  . Parser::MARKER_PREFIX
296  . '-pre|<\\/li|<\\/ul|<\\/ol|<\\/dl|<\\/?center)/iS',
297  $t
298  );
299 
300  if ( $openMatch || $closeMatch ) {
301  $pendingPTag = false;
302  # @todo T7718: paragraph closed
303  $output .= $this->closeParagraph();
304  if ( $preOpenMatch && !$preCloseMatch ) {
305  $this->inPre = true;
306  }
307  $bqOffset = 0;
308  while ( preg_match( '/<(\\/?)blockquote[\s>]/i', $t,
309  $bqMatch, PREG_OFFSET_CAPTURE, $bqOffset )
310  ) {
311  $inBlockquote = !$bqMatch[1][0]; // is this a close tag?
312  $bqOffset = $bqMatch[0][1] + strlen( $bqMatch[0][0] );
313  }
314  $inBlockElem = !$closeMatch;
315  } elseif ( !$inBlockElem && !$this->inPre ) {
316  if ( ' ' == substr( $t, 0, 1 )
317  && ( $this->lastSection === 'pre' || trim( $t ) != '' )
318  && !$inBlockquote
319  ) {
320  # pre
321  if ( $this->lastSection !== 'pre' ) {
322  $pendingPTag = false;
323  $output .= $this->closeParagraph() . '<pre>';
324  $this->lastSection = 'pre';
325  }
326  $t = substr( $t, 1 );
327  } else {
328  # paragraph
329  if ( trim( $t ) === '' ) {
330  if ( $pendingPTag ) {
331  $output .= $pendingPTag . '<br />';
332  $pendingPTag = false;
333  $this->lastSection = 'p';
334  } else {
335  if ( $this->lastSection !== 'p' ) {
336  $output .= $this->closeParagraph();
337  $this->lastSection = '';
338  $pendingPTag = '<p>';
339  } else {
340  $pendingPTag = '</p><p>';
341  }
342  }
343  } else {
344  if ( $pendingPTag ) {
345  $output .= $pendingPTag;
346  $pendingPTag = false;
347  $this->lastSection = 'p';
348  } elseif ( $this->lastSection !== 'p' ) {
349  $output .= $this->closeParagraph() . '<p>';
350  $this->lastSection = 'p';
351  }
352  }
353  }
354  }
355  }
356  # somewhere above we forget to get out of pre block (T2785)
357  if ( $preCloseMatch && $this->inPre ) {
358  $this->inPre = false;
359  }
360  if ( $pendingPTag === false ) {
361  $output .= $t;
362  if ( $prefixLength === 0 ) {
363  $output .= "\n";
364  }
365  }
366  }
367  while ( $prefixLength ) {
368  $output .= $this->closeList( $prefix2[$prefixLength - 1] );
369  --$prefixLength;
370  if ( !$prefixLength ) {
371  $output .= "\n";
372  }
373  }
374  if ( $this->lastSection !== '' ) {
375  $output .= '</' . $this->lastSection . '>';
376  $this->lastSection = '';
377  }
378 
379  return $output;
380  }
381 
392  private function findColonNoLinks( $str, &$before, &$after ) {
393  if ( !preg_match( '/:|<|-\{/', $str, $m, PREG_OFFSET_CAPTURE ) ) {
394  # Nothing to find!
395  return false;
396  }
397 
398  if ( $m[0][0] === ':' ) {
399  # Easy; no tag nesting to worry about
400  $colonPos = $m[0][1];
401  $before = substr( $str, 0, $colonPos );
402  $after = substr( $str, $colonPos + 1 );
403  return $colonPos;
404  }
405 
406  # Ugly state machine to walk through avoiding tags.
407  $state = self::COLON_STATE_TEXT;
408  $ltLevel = 0;
409  $lcLevel = 0;
410  $len = strlen( $str );
411  for ( $i = $m[0][1]; $i < $len; $i++ ) {
412  $c = $str[$i];
413 
414  switch ( $state ) {
416  switch ( $c ) {
417  case "<":
418  # Could be either a <start> tag or an </end> tag
420  break;
421  case ":":
422  if ( $ltLevel === 0 ) {
423  # We found it!
424  $before = substr( $str, 0, $i );
425  $after = substr( $str, $i + 1 );
426  return $i;
427  }
428  # Embedded in a tag; don't break it.
429  break;
430  default:
431  # Skip ahead looking for something interesting
432  if ( !preg_match( '/:|<|-\{/', $str, $m, PREG_OFFSET_CAPTURE, $i ) ) {
433  # Nothing else interesting
434  return false;
435  }
436  if ( $m[0][0] === '-{' ) {
437  $state = self::COLON_STATE_LC;
438  $lcLevel++;
439  $i = $m[0][1] + 1;
440  } else {
441  # Skip ahead to next interesting character.
442  $i = $m[0][1] - 1;
443  }
444  break;
445  }
446  break;
448  # In language converter markup -{ ... }-
449  if ( !preg_match( '/-\{|\}-/', $str, $m, PREG_OFFSET_CAPTURE, $i ) ) {
450  # Nothing else interesting to find; abort!
451  # We're nested in language converter markup, but there
452  # are no close tags left. Abort!
453  break 2;
454  } elseif ( $m[0][0] === '-{' ) {
455  $i = $m[0][1] + 1;
456  $lcLevel++;
457  } elseif ( $m[0][0] === '}-' ) {
458  $i = $m[0][1] + 1;
459  $lcLevel--;
460  if ( $lcLevel === 0 ) {
461  $state = self::COLON_STATE_TEXT;
462  }
463  }
464  break;
466  # In a <tag>
467  switch ( $c ) {
468  case ">":
469  $ltLevel++;
470  $state = self::COLON_STATE_TEXT;
471  break;
472  case "/":
473  # Slash may be followed by >?
475  break;
476  default:
477  # ignore
478  }
479  break;
481  switch ( $c ) {
482  case "/":
484  break;
485  case "!":
486  $state = self::COLON_STATE_COMMENT;
487  break;
488  case ">":
489  # Illegal early close? This shouldn't happen D:
490  $state = self::COLON_STATE_TEXT;
491  break;
492  default:
493  $state = self::COLON_STATE_TAG;
494  }
495  break;
497  # In a </tag>
498  if ( $c === ">" ) {
499  if ( $ltLevel > 0 ) {
500  $ltLevel--;
501  } else {
502  # ignore the excess close tag, but keep looking for
503  # colons. (This matches Parsoid behavior.)
504  wfDebug( __METHOD__ . ": Invalid input; too many close tags\n" );
505  }
506  $state = self::COLON_STATE_TEXT;
507  }
508  break;
510  if ( $c === ">" ) {
511  # Yes, a self-closed tag <blah/>
512  $state = self::COLON_STATE_TEXT;
513  } else {
514  # Probably we're jumping the gun, and this is an attribute
515  $state = self::COLON_STATE_TAG;
516  }
517  break;
519  if ( $c === "-" ) {
521  }
522  break;
524  if ( $c === "-" ) {
526  } else {
527  $state = self::COLON_STATE_COMMENT;
528  }
529  break;
531  if ( $c === ">" ) {
532  $state = self::COLON_STATE_TEXT;
533  } else {
534  $state = self::COLON_STATE_COMMENT;
535  }
536  break;
537  default:
538  throw new MWException( "State machine error in " . __METHOD__ );
539  }
540  }
541  if ( $ltLevel > 0 || $lcLevel > 0 ) {
542  wfDebug(
543  __METHOD__ . ": Invalid input; not enough close tags " .
544  "(level $ltLevel/$lcLevel, state $state)\n"
545  );
546  return false;
547  }
548  return false;
549  }
550 }
BlockLevelPass\$lastSection
$lastSection
Definition: BlockLevelPass.php:28
BlockLevelPass
Definition: BlockLevelPass.php:25
BlockLevelPass\COLON_STATE_COMMENT
const COLON_STATE_COMMENT
Definition: BlockLevelPass.php:38
BlockLevelPass\closeParagraph
closeParagraph()
If a pre or p is open, return the corresponding close tag and update the state.
Definition: BlockLevelPass.php:68
text
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add text
Definition: design.txt:12
BlockLevelPass\openList
openList( $char)
Open the list item element identified by the prefix character.
Definition: BlockLevelPass.php:105
$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
BlockLevelPass\COLON_STATE_CLOSETAG
const COLON_STATE_CLOSETAG
Definition: BlockLevelPass.php:36
BlockLevelPass\getCommon
getCommon( $st1, $st2)
getCommon() returns the length of the longest common substring of both arguments, starting at the beg...
Definition: BlockLevelPass.php:87
$term
external whereas SearchGetNearMatch runs after $term
Definition: hooks.txt:2759
BlockLevelPass\$linestart
$linestart
Definition: BlockLevelPass.php:29
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
BlockLevelPass\execute
execute()
Execute the pass.
Definition: BlockLevelPass.php:177
MWException
MediaWiki exception.
Definition: MWException.php:26
BlockLevelPass\$DTopen
$DTopen
Definition: BlockLevelPass.php:26
BlockLevelPass\doBlockLevels
static doBlockLevels( $text, $lineStart)
Make lists from lines starting with ':', '*', '#', etc.
Definition: BlockLevelPass.php:50
StringUtils\explode
static explode( $separator, $subject)
Workalike for explode() with limited memory usage.
Definition: StringUtils.php:335
BlockLevelPass\closeList
closeList( $char)
Close the current list item identified by the prefix character.
Definition: BlockLevelPass.php:155
$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
BlockLevelPass\$inPre
$inPre
Definition: BlockLevelPass.php:27
wfDebug
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
Definition: GlobalFunctions.php:999
BlockLevelPass\$text
$text
Definition: BlockLevelPass.php:30
BlockLevelPass\COLON_STATE_TAGSLASH
const COLON_STATE_TAGSLASH
Definition: BlockLevelPass.php:37
BlockLevelPass\COLON_STATE_TAG
const COLON_STATE_TAG
Definition: BlockLevelPass.php:34
BlockLevelPass\__construct
__construct( $text, $lineStart)
Private constructor.
Definition: BlockLevelPass.php:58
BlockLevelPass\COLON_STATE_LC
const COLON_STATE_LC
Definition: BlockLevelPass.php:41
BlockLevelPass\findColonNoLinks
findColonNoLinks( $str, &$before, &$after)
Split up a string on ':', ignoring any occurrences inside tags to prevent illegal overlapping.
Definition: BlockLevelPass.php:392
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
BlockLevelPass\COLON_STATE_TAGSTART
const COLON_STATE_TAGSTART
Definition: BlockLevelPass.php:35
$t
$t
Definition: testCompression.php:67
BlockLevelPass\COLON_STATE_TEXT
const COLON_STATE_TEXT
Definition: BlockLevelPass.php:33
BlockLevelPass\COLON_STATE_COMMENTDASH
const COLON_STATE_COMMENTDASH
Definition: BlockLevelPass.php:39
BlockLevelPass\COLON_STATE_COMMENTDASHDASH
const COLON_STATE_COMMENTDASHDASH
Definition: BlockLevelPass.php:40
BlockLevelPass\nextItem
nextItem( $char)
Close the current list item and open the next one.
Definition: BlockLevelPass.php:130