76 foreach ( $this->parserOutput->getSections()
as $heading ) {
77 $heading = $heading[
'line' ];
81 $heading = preg_replace(
'/<\/?span>/',
'', $heading );
83 $heading = preg_replace( [
'/[/',
'/]/' ], [
'[',
']' ], $heading );
84 $heading = preg_replace(
'/<sup>\s*\[\s*\d+\s*\]\s*<\/sup>/is',
'', $heading );
91 if ( !in_array( $heading, $ignoredHeadings ) ) {
92 $headings[] = $heading;
106 $lines = explode(
"\n", $message );
118 static $ignoredHeadings = null;
119 if ( $ignoredHeadings === null ) {
120 $ignoredHeadings = [];
124 $source =
wfMessage(
'cirrussearch-ignored-headings' )->inContentLanguage();
126 if ( !
$source->isDisabled() ) {
128 $ignoredHeadings =
$lines;
131 return $ignoredHeadings;
138 if ( !is_null( $this->allText ) ) {
141 $this->parserOutput->setEditSectionTokens(
false );
142 $this->parserOutput->setTOCEnabled(
false );
143 $text = $this->parserOutput->getText();
144 if ( strlen( $text ) == 0 ) {
155 $text = str_replace(
'<br',
"\n<br", $text );
157 $formatter =
new HtmlFormatter( $text );
160 $formatter->remove( $this->excludedElementSelectors );
161 $formatter->filterContent();
166 $formatter->remove( $this->auxiliaryElementSelectors );
167 $auxiliaryElements = $formatter->filterContent();
169 foreach ( $auxiliaryElements
as $auxiliaryElement ) {
182 if ( !preg_match(
'/<h[123456]>/', $text,
$matches, PREG_OFFSET_CAPTURE ) ) {
187 $text = substr( $text, 0,
$matches[ 0 ][ 1 ] );
194 $formatter =
new HtmlFormatter( $text );
195 $formatter->remove( $this->excludedElementSelectors );
196 $formatter->remove( $this->auxiliaryElementSelectors );
197 $formatter->filterContent();
241 return $this->parserOutput->getProperty(
'defaultsort' );
ParserOutput $parserOutput
string[] $auxiliaryElementSelectors
selectors to elements that are considered auxiliary to article text for search
getAuxiliaryText()
Get auxiliary text.
getMainText()
Get main text.
getOpeningText()
Get opening text.
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
headings()
Get headings on the page.
Class allowing to explore structure of parsed wikitext.
static stripAllTags($text)
Take a fragment of (potentially invalid) HTML and return a version with any tags removed, encoded as plain text.
extractHeadingBeforeFirstHeading($text)
Get text before first heading.
static parseSettingsInMessage($message)
Parse a message content into an array.
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock()-offset Set to overwrite offset parameter in $wgRequest set to ''to unsetoffset-wrap String Wrap the message in html(usually something like"<
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
string[] $excludedElementSelectors
selectors to elements that are excluded entirely from search
extractWikitextParts()
Extract parts of the text - opening, main and auxiliary.
getIgnoredHeadings()
Get list of heading to ignore.
__construct(ParserOutput $parserOutput)
WikiTextStructure constructor.
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
getDefaultSort()
Get the defaultsort property.