Go to the documentation of this file.
14 'wgAllowUserJs' =>
false,
15 'wgDefaultLanguageVariant' =>
false,
16 'wgMetaNamespace' =>
'Project',
28 foreach ( range( 1, 255 )
as $num ) {
30 if ( strpos(
"#[]{}<>|", $chr ) !==
false || preg_match(
"/[\\x00-\\x1f\\x7f]/", $chr ) ) {
32 (
bool)preg_match(
"/[$titlechars]/", $chr ),
33 "chr($num) = $chr is not a valid titlechar"
37 (
bool)preg_match(
"/[$titlechars]/", $chr ),
38 "chr($num) = $chr is a valid titlechar"
55 [
'Talk:Foo:Sandbox' ],
56 [
'File:Example.svg' ],
57 [
'File_talk:Example.svg' ],
58 [
'Foo/.../Sandbox' ],
63 [
'Category:' . str_repeat(
'x', 248 ) ],
64 [ str_repeat(
'x', 252 ) ],
66 [
'localtestiw: #anchor' ],
68 [
'localtestiw:foo' ],
69 [
'localtestiw: foo # anchor' ],
70 [
'localtestiw: Talk: Sandbox # anchor' ],
72 [
'remotetestiw: Talk: # anchor' ],
73 [
'remotetestiw: #bar' ],
74 [
'remotetestiw: Talk:' ],
75 [
'remotetestiw: Talk: Foo' ],
76 [
'localtestiw:remotetestiw:' ],
77 [
'localtestiw:remotetestiw:foo' ]
83 [
'',
'title-invalid-empty' ],
84 [
':',
'title-invalid-empty' ],
85 [
'__ __',
'title-invalid-empty' ],
86 [
' __ ',
'title-invalid-empty' ],
88 [
'A [ B',
'title-invalid-characters' ],
89 [
'A ] B',
'title-invalid-characters' ],
90 [
'A { B',
'title-invalid-characters' ],
91 [
'A } B',
'title-invalid-characters' ],
92 [
'A < B',
'title-invalid-characters' ],
93 [
'A > B',
'title-invalid-characters' ],
94 [
'A | B',
'title-invalid-characters' ],
95 [
"A \t B",
'title-invalid-characters' ],
96 [
"A \n B",
'title-invalid-characters' ],
98 [
'A%20B',
'title-invalid-characters' ],
99 [
'A%23B',
'title-invalid-characters' ],
100 [
'A%2523B',
'title-invalid-characters' ],
108 [
'Talk:File:Example.svg',
'title-invalid-talk-namespace' ],
110 [
'.',
'title-invalid-relative' ],
111 [
'..',
'title-invalid-relative' ],
112 [
'./Sandbox',
'title-invalid-relative' ],
113 [
'../Sandbox',
'title-invalid-relative' ],
114 [
'Foo/./Sandbox',
'title-invalid-relative' ],
115 [
'Foo/../Sandbox',
'title-invalid-relative' ],
116 [
'Sandbox/.',
'title-invalid-relative' ],
117 [
'Sandbox/..',
'title-invalid-relative' ],
119 [
'A ~~~ Name',
'title-invalid-magic-tilde' ],
120 [
'A ~~~~ Signature',
'title-invalid-magic-tilde' ],
121 [
'A ~~~~~ Timestamp',
'title-invalid-magic-tilde' ],
123 [ str_repeat(
'x', 256 ),
'title-invalid-too-long' ],
125 [
'Talk:',
'title-invalid-empty' ],
126 [
'Talk:#',
'title-invalid-empty' ],
127 [
'Category: ',
'title-invalid-empty' ],
128 [
'Category: #bar',
'title-invalid-empty' ],
130 [
'localtestiw: Talk: # anchor',
'title-invalid-empty' ],
131 [
'localtestiw: Talk:',
'title-invalid-empty' ]
137 'wgLocalInterwikis' => [
'localtestiw' ],
139 'InterwikiLoadPrefix' => [
140 function ( $prefix, &$data ) {
141 if ( $prefix ===
'localtestiw' ) {
142 $data = [
'iw_url' =>
'localtestiw' ];
143 } elseif ( $prefix ===
'remotetestiw' ) {
144 $data = [
'iw_url' =>
'remotetestiw' ];
181 $this->assertTrue(
false,
"Invalid: $text" );
183 $this->assertEquals( $expectedErrorMessage, $ex->
getErrorMessage(),
"Invalid: $text" );
190 ' %!"$&\'()*,\\-.\\/0-9:;=?@A-Z\\\\^_`a-z~\\x80-\\xFF+',
191 ' %!"$&\'()*,\\-./0-9:;=?@A-Z\\\\\\^_`a-z~+\\u0080-\\uFFFF',
195 'QWERTYf-\\x7F+\\u0080-\\uFFFF',
198 'QWERTY\\x66-\\xFD+',
199 'QWERTYf-\\x7F+\\u0080-\\uFFFF',
207 'QWERTYf-\\x7F+\\u0080-\\uFFFF',
210 'QWERTY\\x66-\\x80+\\x23',
211 'QWERTYf-\\x7F+#\\u0080-\\uFFFF',
214 'QWERTY\\x66-\\x80+\\xD3',
215 'QWERTYf-\\x7F+\\u0080-\\uFFFF',
219 '\\\\\\u0080-\\uFFFF',
223 '\\-\\u0080-\\uFFFF',
227 'QWERTY\\-\\u0080-\\uFFFF',
235 'A-\\x7F\\u0080-\\uFFFF',
238 '\\x66-\\x77QWERTY\\x88-\\x91FXZ',
239 'f-wQWERTYFXZ\\u0080-\\uFFFF',
242 '\\x66-\\x99QWERTY\\xAA-\\xEEFXZ',
243 'f-\\x7FQWERTYFXZ\\u0080-\\uFFFF',
262 $fixed =
$title->fixSpecialName();
263 $stuff = explode(
'/', $fixed->getDBkey(), 2 );
264 if (
count( $stuff ) == 2 ) {
272 "T33100 regression check: Title->fixSpecialName() should preserve parameter"
278 [
'Special:Version', null ],
279 [
'Special:Version/',
'' ],
280 [
'Special:Version/param',
'param' ],
298 $errors =
$title->isValidMoveOperation( $nt,
false );
299 if ( $expected ===
true ) {
300 $this->assertTrue( $errors );
303 foreach ( (
array)$expected
as $error ) {
304 $this->assertContains( $error, $errors );
312 [
'Some page',
'',
'badtitletext' ],
313 [
'Test',
'Test',
'selfmove' ],
314 [
'Special:FooBar',
'Test',
'immobile-source-namespace' ],
315 [
'Test',
'Special:FooBar',
'immobile-target-namespace' ],
316 [
'MediaWiki:Common.js',
'Help:Some wikitext page',
'bad-target-model' ],
317 [
'Page',
'File:Test.jpg',
'nonfile-cannot-move-to-file' ],
319 [
'File:Test.jpg',
'Page',
'imagenocrossnamespace' ],
339 if ( is_string( $whitelistRegexp ) ) {
340 $whitelistRegexp = [ $whitelistRegexp ];
345 'wgGroupPermissions' => [
'*' => [
'read' =>
false ] ],
346 'wgWhitelistRead' => [
'some random non sense title' ],
347 'wgWhitelistReadRegexp' => $whitelistRegexp,
357 if ( is_bool( $expected ) ) {
358 # Forge the assertion message depending on the assertion expectation
359 $allowableness = $expected
360 ?
" should be allowed"
361 :
" should NOT be allowed";
365 "User action '$action' on [[$source]] $allowableness."
369 foreach ( (
array)$expected
as $error ) {
370 $this->assertContains( $error, $errors );
384 [
'/.*/',
'Main_Page',
'read', $ALLOWED ],
385 [
'/.*/',
'Main_Page',
'edit', $DISALLOWED ],
388 [
'/^Main_Page$/',
'Main_Page',
'read', $DISALLOWED ],
390 [
'/^Main/',
'Main_Page',
'read', $ALLOWED ],
391 [
'/^Main.*/',
'Main_Page',
'read', $ALLOWED ],
393 [
'/Mic\sCheck/',
'Mic Check',
'read', $ALLOWED ],
396 [
'/Unicode Test . Yes/',
'Unicode Test Ñ Yes',
'read', $DISALLOWED ],
398 [
'/Unicode Test . Yes/u',
'Unicode Test Ñ Yes',
'read', $ALLOWED ],
400 [
'/MiC ChEcK/',
'mic check',
'read', $DISALLOWED ],
401 [
'/MiC ChEcK/i',
'mic check',
'read', $ALLOWED ],
404 [
"@^UsEr.*@i",
'User is banned',
'read', $ALLOWED ],
405 [
"@^UsEr.*@i",
'User:John Doe',
'read', $ALLOWED ],
408 [
'/^Special:NewPages$/',
'Special:NewPages',
'read', $ALLOWED ],
409 [
null,
'Special:Newpages',
'read', $DISALLOWED ],
416 foreach ( $errors
as $error ) {
428 $lang, $variant, $msg =
''
432 'wgDefaultLanguageVariant' => $variant,
433 'wgAllowUserJs' =>
true,
440 "Test must be passed a valid title text, you gave '$titleText'"
442 $this->assertEquals( $expected,
443 $title->getPageViewLanguage()->getCode(),
452 # - content language (expected in most cases)
453 # - wgLang (on some specific pages)
454 # - wgDefaultLanguageVariant
457 [
'fr',
'Help:I_need_somebody',
'fr',
'fr',
false ],
458 [
'es',
'Help:I_need_somebody',
'es',
'zh-tw',
false ],
459 [
'zh',
'Help:I_need_somebody',
'zh',
'zh-tw',
false ],
461 [
'es',
'Help:I_need_somebody',
'es',
'zh-tw',
'zh-cn' ],
462 [
'es',
'MediaWiki:About',
'es',
'zh-tw',
'zh-cn' ],
463 [
'es',
'MediaWiki:About/',
'es',
'zh-tw',
'zh-cn' ],
464 [
'de',
'MediaWiki:About/de',
'es',
'zh-tw',
'zh-cn' ],
465 [
'en',
'MediaWiki:Common.js',
'es',
'zh-tw',
'zh-cn' ],
466 [
'en',
'MediaWiki:Common.css',
'es',
'zh-tw',
'zh-cn' ],
467 [
'en',
'User:JohnDoe/Common.js',
'es',
'zh-tw',
'zh-cn' ],
468 [
'en',
'User:JohnDoe/Monobook.css',
'es',
'zh-tw',
'zh-cn' ],
470 [
'zh-cn',
'Help:I_need_somebody',
'zh',
'zh-tw',
'zh-cn' ],
471 [
'zh',
'MediaWiki:About',
'zh',
'zh-tw',
'zh-cn' ],
472 [
'zh',
'MediaWiki:About/',
'zh',
'zh-tw',
'zh-cn' ],
473 [
'de',
'MediaWiki:About/de',
'zh',
'zh-tw',
'zh-cn' ],
474 [
'zh-cn',
'MediaWiki:About/zh-cn',
'zh',
'zh-tw',
'zh-cn' ],
475 [
'zh-tw',
'MediaWiki:About/zh-tw',
'zh',
'zh-tw',
'zh-cn' ],
476 [
'en',
'MediaWiki:Common.js',
'zh',
'zh-tw',
'zh-cn' ],
477 [
'en',
'MediaWiki:Common.css',
'zh',
'zh-tw',
'zh-cn' ],
478 [
'en',
'User:JohnDoe/Common.js',
'zh',
'zh-tw',
'zh-cn' ],
479 [
'en',
'User:JohnDoe/Monobook.css',
'zh',
'zh-tw',
'zh-cn' ],
481 [
'zh-tw',
'Special:NewPages',
'es',
'zh-tw',
'zh-cn' ],
482 [
'zh-tw',
'Special:NewPages',
'zh',
'zh-tw',
'zh-cn' ],
493 $this->assertEquals( $expected,
501 # Title, expected base, optional message
502 [
'User:John_Doe/subOne/subTwo',
'John Doe/subOne' ],
503 [
'User:Foo/Bar/Baz',
'Foo/Bar' ],
513 $this->assertEquals( $expected,
521 # Title, expected base, optional message
522 [
'User:John_Doe/subOne/subTwo',
'John Doe' ],
523 [
'User:Foo/Bar/Baz',
'Foo' ],
534 $this->assertEquals( $expected,
542 # Title, expected base, optional message
543 [
'User:John_Doe/subOne/subTwo',
'subTwo' ],
544 [
'User:John_Doe/subOne',
'subOne' ],
563 $dbkey = str_replace(
' ',
'_',
$value->getText() );
564 $this->assertEquals( $dbkey,
$title->getDBkey() );
565 $this->assertEquals(
$value->getNamespace(),
$title->getNamespace() );
566 $this->assertEquals(
$value->getFragment(),
$title->getFragment() );
573 [
'User:Hansi_Maier' ],
585 $dbkey = str_replace(
' ',
'_',
$value->getText() );
586 $this->assertEquals(
$title->getDBkey(), $dbkey );
587 $this->assertEquals(
$title->getNamespace(),
$value->getNamespace() );
588 $this->assertEquals(
$title->getFragment(),
$value->getFragment() );
594 [
'Foo#bar',
'bar' ],
595 [
'Foo#bär',
'bär' ],
598 [
'Foo#bar_bar',
'bar bar' ],
599 [
'Foo#bar bar',
'bar bar' ],
600 [
'Foo#bar bar',
'bar bar' ],
604 [
'Foo#_bar_bar_',
' bar bar' ],
605 [
'Foo# bar bar ',
' bar bar' ],
618 $this->assertEquals( $fragment,
$title->getFragment() );
629 $this->assertEquals( $isKnown,
$title->isAlwaysKnown() );
634 [
'Some nonexistent page',
false ],
637 [
'Special:BlankPage',
true ],
638 [
'Special:SomeNonexistentSpecialPage',
false ],
639 [
'MediaWiki:Parentheses',
true ],
640 [
'MediaWiki:Some nonexistent message',
false ],
651 $this->assertEquals( $isValid,
$title->isValid(),
$title->getPrefixedText() );
671 $this->assertTrue(
$title->isAlwaysKnown() );
679 $linkCache = MediaWikiServices::getInstance()->getLinkCache();
683 $page->doEditContent(
new WikitextContent(
'Some [[link]]' ),
'summary' );
689 $linkCache->clearLink(
$title );
690 $linkCache->addBadLinkObj(
$title );
695 'exists() should rely on link cache unless GAID_FOR_UPDATE is used'
700 'exists() should re-query database when GAID_FOR_UPDATE is used'
706 'User page has talk page' => [
709 'Talke page has talk page' => [
712 'Special page cannot have talk page' => [
715 'Virtual namespace cannot have talk page' => [
729 $actual =
$title->canHaveTalkPage();
730 $this->assertSame( $expected, $actual,
$title->getPrefixedDBkey() );
741 $actual =
$title->canTalk();
742 $this->assertSame( $expected, $actual,
$title->getPrefixedDBkey() );
757 $talk =
$title->getTalkPage();
759 $expected->getPrefixedDBKey(),
760 $talk->getPrefixedDBKey(),
761 $title->getPrefixedDBKey()
770 $talk =
$title->getTalkPageIfDefined();
771 $this->assertInstanceOf(
774 $title->getPrefixedDBKey()
790 $talk =
$title->getTalkPageIfDefined();
793 $title->getPrefixedDBKey()
812 'InterwikiLoadPrefix' => [
813 function ( $prefix, &$iwdata ) {
814 if ( $prefix ===
'interwiki' ) {
816 'iw_url' =>
'http://example.com/',
826 $fragmentTitle =
$title->createFragmentTarget( $fragment );
828 $this->assertEquals(
$title->getNamespace(), $fragmentTitle->getNamespace() );
829 $this->assertEquals(
$title->getText(), $fragmentTitle->getText() );
830 $this->assertEquals(
$title->getInterwiki(), $fragmentTitle->getInterwiki() );
831 $this->assertEquals( $fragment, $fragmentTitle->getFragment() );
864 'Special:Badtitle/NS100777:Foo bar'
874 $this->assertEquals( $expected,
$title->getPrefixedText() );
907 'Special:Badtitle/NS100777:Foo_bar'
917 $this->assertEquals( $expected,
$title->getPrefixedDBkey() );
929 'wgFragmentMode' => [
'html5' ],
930 'wgExternalInterwikiFragmentMode' =>
'legacy',
933 $dbw->insert(
'interwiki',
937 'iw_url' =>
'http://de.wikipedia.org/wiki/',
938 'iw_api' =>
'http://de.wikipedia.org/w/api.php',
939 'iw_wikiid' =>
'dewiki',
945 'iw_url' =>
'http://zzwiki.org/wiki/',
946 'iw_api' =>
'http://zzwiki.org/w/api.php',
947 'iw_wikiid' =>
'zzwiki',
957 self::assertEquals( $expected,
$title->getFragmentForURL() );
959 $dbw->delete(
'interwiki',
'*', __METHOD__ );
965 [
'Foo#ümlåût',
'#ümlåût' ],
966 [
'de:Foo#Bå®',
'#Bå®' ],
967 [
'zz:Foo#тест',
'#.D1.82.D0.B5.D1.81.D1.82' ],
983 $this->assertSame( $expected,
$title->isRawHtmlMessage() );
988 [
'MediaWiki:Foobar',
true ],
989 [
'MediaWiki:Foo bar',
true ],
990 [
'MediaWiki:Foo-bar',
true ],
991 [
'MediaWiki:foo bar',
true ],
992 [
'MediaWiki:foo-bar',
true ],
993 [
'MediaWiki:foobar',
true ],
994 [
'MediaWiki:some-other-message',
false ],
995 [
'Main Page',
false ],
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a account $user
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 change it to an object instance and return false override the list derivative used the name of the old file & $article
static provideSpecialNamesWithAndWithoutParameter()
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
testGetFragmentForURL( $titleStr, $expected)
Title::getFragmentForURL provideGetFragmentForURL.
processing should stop and the error should be shown to the user * false
testLegalChars()
Title::legalChars.
static provideConvertByteClassToUnicodeClass()
if(!isset( $args[0])) $lang
provideIsRawHtmlMessage()
static provideIsAlwaysKnown()
testCreateFragmentTitle(Title $title, $fragment)
Title::createFragmentTarget provideCreateFragmentTitle.
testConvertByteClassToUnicodeClass( $byteClass, $unicodeClass)
provideConvertByteClassToUnicodeClass Title::convertByteClassToUnicodeClass
testGetPageViewLanguage( $expected, $titleText, $contLang, $lang, $variant, $msg='')
provideGetPageViewLanguage Title::getPageViewLanguage
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. 'ImgAuthModifyHeaders':Executed just before a file is streamed to a user via img_auth.php, allowing headers to be modified beforehand. $title:LinkTarget object & $headers:HTTP headers(name=> value, names are case insensitive). Two headers get special handling:If-Modified-Since(value must be a valid HTTP date) and Range(must be of the form "bytes=(\d*-\d*)") will be honored when streaming the file. '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 'ImportHandleUnknownUser':When a user doesn 't exist locally, this hook is called to give extensions an opportunity to auto-create it. If the auto-creation is successful, return false. $name:User name '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 since 1.16! 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 since 1.28! 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
testGetTalkPage_good(Title $title, Title $expected)
provideGetTalkPage_good Title::getTalkPage
provideGetFragmentForURL()
static provideBaseTitleCases()
Caches user genders when needed to use correct namespace aliases.
static provideSubpageTitleCases()
static provideTestIsValidMoveOperation()
static convertByteClassToUnicodeClass( $byteClass)
Utility method for converting a character sequence from bytes to Unicode.
testGetSubpageText( $title, $expected, $msg='')
testSecureAndSplitInvalid( $text, $expectedErrorMessage)
See also mediawiki.Title.test.js Title::secureAndSplit provideInvalidSecureAndSplit.
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
testGetFragment( $full, $fragment)
Title::getFragment provideGetFragment.
testIsAlwaysKnownOnInterwiki()
Title::isAlwaysKnown.
static provideGetTalkPage_bad()
namespace and then decline to actually register it file or subcat img or subcat $title
testCanTalk(Title $title, $expected)
provideCanHaveTalkPage Title::canTalk
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
testIsRawHtmlMessage( $textForm, $expected)
Title::isRawHtmlMessage provideIsRawHtmlMessage.
dataWgWhitelistReadRegexp()
Provides test parameter values for testWgWhitelistReadRegexp()
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
testIsValidMoveOperation( $source, $target, $expected)
Auth-less test of Title::isValidMoveOperation.
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
Content object for wiki text pages.
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
testSecureAndSplitValid( $text)
See also mediawiki.Title.test.js Title::secureAndSplit provideValidSecureAndSplit.
testFixSpecialNameRetainsParameter( $text, $expectedParam)
provideSpecialNamesWithAndWithoutParameter Title::fixSpecialName
static provideGetPageViewLanguage()
static newFromTextThrow( $text, $defaultNamespace=NS_MAIN)
Like Title::newFromText(), but throws MalformedTitleException when the title is invalid,...
static newFromTitleValue(TitleValue $titleValue)
Create a new Title from a TitleValue.
provideGetPrefixedDBKey()
static provideNewFromTitleValue()
testIsAlwaysKnown( $page, $isKnown)
Title::isAlwaysKnown provideIsAlwaysKnown.
static provideGetFragment()
flattenErrorsArray( $errors)
const GAID_FOR_UPDATE
Used to be GAID_FOR_UPDATE define.
static newFromDBkey( $key)
Create a new Title from a prefixed DB key.
testGetBaseText( $title, $expected, $msg='')
provideBaseTitleCases Title::getBaseText
testNewFromTitleValue(TitleValue $value)
Title::newFromTitleValue provideNewFromTitleValue.
testGetTitleValue( $text)
Title::getTitleValue provideGetTitleValue.
provideCreateFragmentTitle()
static provideInvalidSecureAndSplit()
Represents a title within MediaWiki.
static provideValidSecureAndSplit()
testGetPrefixedText(Title $title, $expected)
Title::getPrefixedText provideGetPrefixedText.
testGetTalkPageIfDefined_bad(Title $title)
provideGetTalkPage_bad Title::getTalkPageIfDefined
static provideRootTitleCases()
testIsValid(Title $title, $isValid)
Title::isValid provideIsValid.
testCanHaveTalkPage(Title $title, $expected)
provideCanHaveTalkPage Title::canHaveTalkPage
testGetRootText( $title, $expected, $msg='')
provideRootTitleCases Title::getRootText
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
testGetTalkPageIfDefined_good(Title $title)
provideGetTalkPage_good Title::getTalkPageIfDefined
testGetPrefixedDBKey(Title $title, $expected)
Title::getPrefixedDBKey provideGetPrefixedDBKey.
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return true
testExists()
Title::exists.
static factory( $code)
Get a cached or new language object for a given language code.
static provideGetTitleValue()
testWgWhitelistReadRegexp( $whitelistRegexp, $source, $action, $expected)
Auth-less test of Title::userCan.
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
static legalChars()
Get a regex character class describing the legal characters in a link.
Class for viewing MediaWiki article and history.
static provideGetTalkPage_good()
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 MediaWikiServices
Represents a page (or page fragment) title within MediaWiki.