MediaWiki  1.27.2
TitleTest.php
Go to the documentation of this file.
1 <?php
2 
7 class TitleTest extends MediaWikiTestCase {
8  protected function setUp() {
9  parent::setUp();
10 
11  $this->setMwGlobals( [
12  'wgAllowUserJs' => false,
13  'wgDefaultLanguageVariant' => false,
14  'wgMetaNamespace' => 'Project',
15  ] );
16  $this->setUserLang( 'en' );
17  $this->setContentLang( 'en' );
18  }
19 
23  public function testLegalChars() {
24  $titlechars = Title::legalChars();
25 
26  foreach ( range( 1, 255 ) as $num ) {
27  $chr = chr( $num );
28  if ( strpos( "#[]{}<>|", $chr ) !== false || preg_match( "/[\\x00-\\x1f\\x7f]/", $chr ) ) {
29  $this->assertFalse(
30  (bool)preg_match( "/[$titlechars]/", $chr ),
31  "chr($num) = $chr is not a valid titlechar"
32  );
33  } else {
34  $this->assertTrue(
35  (bool)preg_match( "/[$titlechars]/", $chr ),
36  "chr($num) = $chr is a valid titlechar"
37  );
38  }
39  }
40  }
41 
42  public static function provideValidSecureAndSplit() {
43  return [
44  [ 'Sandbox' ],
45  [ 'A "B"' ],
46  [ 'A \'B\'' ],
47  [ '.com' ],
48  [ '~' ],
49  [ '#' ],
50  [ '"' ],
51  [ '\'' ],
52  [ 'Talk:Sandbox' ],
53  [ 'Talk:Foo:Sandbox' ],
54  [ 'File:Example.svg' ],
55  [ 'File_talk:Example.svg' ],
56  [ 'Foo/.../Sandbox' ],
57  [ 'Sandbox/...' ],
58  [ 'A~~' ],
59  [ ':A' ],
60  // Length is 256 total, but only title part matters
61  [ 'Category:' . str_repeat( 'x', 248 ) ],
62  [ str_repeat( 'x', 252 ) ],
63  // interwiki prefix
64  [ 'localtestiw: #anchor' ],
65  [ 'localtestiw:' ],
66  [ 'localtestiw:foo' ],
67  [ 'localtestiw: foo # anchor' ],
68  [ 'localtestiw: Talk: Sandbox # anchor' ],
69  [ 'remotetestiw:' ],
70  [ 'remotetestiw: Talk: # anchor' ],
71  [ 'remotetestiw: #bar' ],
72  [ 'remotetestiw: Talk:' ],
73  [ 'remotetestiw: Talk: Foo' ],
74  [ 'localtestiw:remotetestiw:' ],
75  [ 'localtestiw:remotetestiw:foo' ]
76  ];
77  }
78 
79  public static function provideInvalidSecureAndSplit() {
80  return [
81  [ '', 'title-invalid-empty' ],
82  [ ':', 'title-invalid-empty' ],
83  [ '__ __', 'title-invalid-empty' ],
84  [ ' __ ', 'title-invalid-empty' ],
85  // Bad characters forbidden regardless of wgLegalTitleChars
86  [ 'A [ B', 'title-invalid-characters' ],
87  [ 'A ] B', 'title-invalid-characters' ],
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  // URL encoding
94  [ 'A%20B', 'title-invalid-characters' ],
95  [ 'A%23B', 'title-invalid-characters' ],
96  [ 'A%2523B', 'title-invalid-characters' ],
97  // XML/HTML character entity references
98  // Note: Commented out because they are not marked invalid by the PHP test as
99  // Title::newFromText runs Sanitizer::decodeCharReferencesAndNormalize first.
100  // 'A &eacute; B',
101  // 'A &#233; B',
102  // 'A &#x00E9; B',
103  // Subject of NS_TALK does not roundtrip to NS_MAIN
104  [ 'Talk:File:Example.svg', 'title-invalid-talk-namespace' ],
105  // Directory navigation
106  [ '.', 'title-invalid-relative' ],
107  [ '..', 'title-invalid-relative' ],
108  [ './Sandbox', 'title-invalid-relative' ],
109  [ '../Sandbox', 'title-invalid-relative' ],
110  [ 'Foo/./Sandbox', 'title-invalid-relative' ],
111  [ 'Foo/../Sandbox', 'title-invalid-relative' ],
112  [ 'Sandbox/.', 'title-invalid-relative' ],
113  [ 'Sandbox/..', 'title-invalid-relative' ],
114  // Tilde
115  [ 'A ~~~ Name', 'title-invalid-magic-tilde' ],
116  [ 'A ~~~~ Signature', 'title-invalid-magic-tilde' ],
117  [ 'A ~~~~~ Timestamp', 'title-invalid-magic-tilde' ],
118  // Length
119  [ str_repeat( 'x', 256 ), 'title-invalid-too-long' ],
120  // Namespace prefix without actual title
121  [ 'Talk:', 'title-invalid-empty' ],
122  [ 'Talk:#', 'title-invalid-empty' ],
123  [ 'Category: ', 'title-invalid-empty' ],
124  [ 'Category: #bar', 'title-invalid-empty' ],
125  // interwiki prefix
126  [ 'localtestiw: Talk: # anchor', 'title-invalid-empty' ],
127  [ 'localtestiw: Talk:', 'title-invalid-empty' ]
128  ];
129  }
130 
131  private function secureAndSplitGlobals() {
132  $this->setMwGlobals( [
133  'wgLocalInterwikis' => [ 'localtestiw' ],
134  'wgHooks' => [
135  'InterwikiLoadPrefix' => [
136  function ( $prefix, &$data ) {
137  if ( $prefix === 'localtestiw' ) {
138  $data = [ 'iw_url' => 'localtestiw' ];
139  } elseif ( $prefix === 'remotetestiw' ) {
140  $data = [ 'iw_url' => 'remotetestiw' ];
141  }
142  return false;
143  }
144  ]
145  ]
146  ] );
147  }
148 
155  public function testSecureAndSplitValid( $text ) {
156  $this->secureAndSplitGlobals();
157  $this->assertInstanceOf( 'Title', Title::newFromText( $text ), "Valid: $text" );
158  }
159 
166  public function testSecureAndSplitInvalid( $text, $expectedErrorMessage ) {
167  $this->secureAndSplitGlobals();
168  try {
169  Title::newFromTextThrow( $text ); // should throw
170  $this->assertTrue( false, "Invalid: $text" );
171  } catch ( MalformedTitleException $ex ) {
172  $this->assertEquals( $expectedErrorMessage, $ex->getErrorMessage(), "Invalid: $text" );
173  }
174  }
175 
176  public static function provideConvertByteClassToUnicodeClass() {
177  return [
178  [
179  ' %!"$&\'()*,\\-.\\/0-9:;=?@A-Z\\\\^_`a-z~\\x80-\\xFF+',
180  ' %!"$&\'()*,\\-./0-9:;=?@A-Z\\\\\\^_`a-z~+\\u0080-\\uFFFF',
181  ],
182  [
183  'QWERTYf-\\xFF+',
184  'QWERTYf-\\x7F+\\u0080-\\uFFFF',
185  ],
186  [
187  'QWERTY\\x66-\\xFD+',
188  'QWERTYf-\\x7F+\\u0080-\\uFFFF',
189  ],
190  [
191  'QWERTYf-y+',
192  'QWERTYf-y+',
193  ],
194  [
195  'QWERTYf-\\x80+',
196  'QWERTYf-\\x7F+\\u0080-\\uFFFF',
197  ],
198  [
199  'QWERTY\\x66-\\x80+\\x23',
200  'QWERTYf-\\x7F+#\\u0080-\\uFFFF',
201  ],
202  [
203  'QWERTY\\x66-\\x80+\\xD3',
204  'QWERTYf-\\x7F+\\u0080-\\uFFFF',
205  ],
206  [
207  '\\\\\\x99',
208  '\\\\\\u0080-\\uFFFF',
209  ],
210  [
211  '-\\x99',
212  '\\-\\u0080-\\uFFFF',
213  ],
214  [
215  'QWERTY\\-\\x99',
216  'QWERTY\\-\\u0080-\\uFFFF',
217  ],
218  [
219  '\\\\x99',
220  '\\\\x99',
221  ],
222  [
223  'A-\\x9F',
224  'A-\\x7F\\u0080-\\uFFFF',
225  ],
226  [
227  '\\x66-\\x77QWERTY\\x88-\\x91FXZ',
228  'f-wQWERTYFXZ\\u0080-\\uFFFF',
229  ],
230  [
231  '\\x66-\\x99QWERTY\\xAA-\\xEEFXZ',
232  'f-\\x7FQWERTYFXZ\\u0080-\\uFFFF',
233  ],
234  ];
235  }
236 
241  public function testConvertByteClassToUnicodeClass( $byteClass, $unicodeClass ) {
242  $this->assertEquals( $unicodeClass, Title::convertByteClassToUnicodeClass( $byteClass ) );
243  }
244 
249  public function testFixSpecialNameRetainsParameter( $text, $expectedParam ) {
250  $title = Title::newFromText( $text );
251  $fixed = $title->fixSpecialName();
252  $stuff = explode( '/', $fixed->getDBkey(), 2 );
253  if ( count( $stuff ) == 2 ) {
254  $par = $stuff[1];
255  } else {
256  $par = null;
257  }
258  $this->assertEquals(
259  $expectedParam,
260  $par,
261  "Bug 31100 regression check: Title->fixSpecialName() should preserve parameter"
262  );
263  }
264 
266  return [
267  [ 'Special:Version', null ],
268  [ 'Special:Version/', '' ],
269  [ 'Special:Version/param', 'param' ],
270  ];
271  }
272 
284  public function testIsValidMoveOperation( $source, $target, $expected ) {
285  $this->setMwGlobals( 'wgContentHandlerUseDB', false );
287  $nt = Title::newFromText( $target );
288  $errors = $title->isValidMoveOperation( $nt, false );
289  if ( $expected === true ) {
290  $this->assertTrue( $errors );
291  } else {
292  $errors = $this->flattenErrorsArray( $errors );
293  foreach ( (array)$expected as $error ) {
294  $this->assertContains( $error, $errors );
295  }
296  }
297  }
298 
299  public static function provideTestIsValidMoveOperation() {
300  return [
301  // for Title::isValidMoveOperation
302  [ 'Some page', '', 'badtitletext' ],
303  [ 'Test', 'Test', 'selfmove' ],
304  [ 'Special:FooBar', 'Test', 'immobile-source-namespace' ],
305  [ 'Test', 'Special:FooBar', 'immobile-target-namespace' ],
306  [ 'MediaWiki:Common.js', 'Help:Some wikitext page', 'bad-target-model' ],
307  [ 'Page', 'File:Test.jpg', 'nonfile-cannot-move-to-file' ],
308  // for Title::validateFileMoveOperation
309  [ 'File:Test.jpg', 'Page', 'imagenocrossnamespace' ],
310  ];
311  }
312 
324  public function testWgWhitelistReadRegexp( $whitelistRegexp, $source, $action, $expected ) {
325  // $wgWhitelistReadRegexp must be an array. Since the provided test cases
326  // usually have only one regex, it is more concise to write the lonely regex
327  // as a string. Thus we cast to an array() to honor $wgWhitelistReadRegexp
328  // type requisite.
329  if ( is_string( $whitelistRegexp ) ) {
330  $whitelistRegexp = [ $whitelistRegexp ];
331  }
332 
333  $this->setMwGlobals( [
334  // So User::isEveryoneAllowed( 'read' ) === false
335  'wgGroupPermissions' => [ '*' => [ 'read' => false ] ],
336  'wgWhitelistRead' => [ 'some random non sense title' ],
337  'wgWhitelistReadRegexp' => $whitelistRegexp,
338  ] );
339 
341 
342  // New anonymous user with no rights
343  $user = new User;
344  $user->mRights = [];
345  $errors = $title->userCan( $action, $user );
346 
347  if ( is_bool( $expected ) ) {
348  # Forge the assertion message depending on the assertion expectation
349  $allowableness = $expected
350  ? " should be allowed"
351  : " should NOT be allowed";
352  $this->assertEquals(
353  $expected,
354  $errors,
355  "User action '$action' on [[$source]] $allowableness."
356  );
357  } else {
358  $errors = $this->flattenErrorsArray( $errors );
359  foreach ( (array)$expected as $error ) {
360  $this->assertContains( $error, $errors );
361  }
362  }
363  }
364 
368  public function dataWgWhitelistReadRegexp() {
369  $ALLOWED = true;
370  $DISALLOWED = false;
371 
372  return [
373  // Everything, if this doesn't work, we're really in trouble
374  [ '/.*/', 'Main_Page', 'read', $ALLOWED ],
375  [ '/.*/', 'Main_Page', 'edit', $DISALLOWED ],
376 
377  // We validate against the title name, not the db key
378  [ '/^Main_Page$/', 'Main_Page', 'read', $DISALLOWED ],
379  // Main page
380  [ '/^Main/', 'Main_Page', 'read', $ALLOWED ],
381  [ '/^Main.*/', 'Main_Page', 'read', $ALLOWED ],
382  // With spaces
383  [ '/Mic\sCheck/', 'Mic Check', 'read', $ALLOWED ],
384  // Unicode multibyte
385  // ...without unicode modifier
386  [ '/Unicode Test . Yes/', 'Unicode Test Ñ Yes', 'read', $DISALLOWED ],
387  // ...with unicode modifier
388  [ '/Unicode Test . Yes/u', 'Unicode Test Ñ Yes', 'read', $ALLOWED ],
389  // Case insensitive
390  [ '/MiC ChEcK/', 'mic check', 'read', $DISALLOWED ],
391  [ '/MiC ChEcK/i', 'mic check', 'read', $ALLOWED ],
392 
393  // From DefaultSettings.php:
394  [ "@^UsEr.*@i", 'User is banned', 'read', $ALLOWED ],
395  [ "@^UsEr.*@i", 'User:John Doe', 'read', $ALLOWED ],
396 
397  // With namespaces:
398  [ '/^Special:NewPages$/', 'Special:NewPages', 'read', $ALLOWED ],
399  [ null, 'Special:Newpages', 'read', $DISALLOWED ],
400 
401  ];
402  }
403 
404  public function flattenErrorsArray( $errors ) {
405  $result = [];
406  foreach ( $errors as $error ) {
407  $result[] = $error[0];
408  }
409 
410  return $result;
411  }
412 
417  public function testGetPageViewLanguage( $expected, $titleText, $contLang,
418  $lang, $variant, $msg = ''
419  ) {
420  // Setup environnement for this test
421  $this->setMwGlobals( [
422  'wgDefaultLanguageVariant' => $variant,
423  'wgAllowUserJs' => true,
424  ] );
425  $this->setUserLang( $lang );
426  $this->setContentLang( $contLang );
427 
428  $title = Title::newFromText( $titleText );
429  $this->assertInstanceOf( 'Title', $title,
430  "Test must be passed a valid title text, you gave '$titleText'"
431  );
432  $this->assertEquals( $expected,
433  $title->getPageViewLanguage()->getCode(),
434  $msg
435  );
436  }
437 
438  public static function provideGetPageViewLanguage() {
439  # Format:
440  # - expected
441  # - Title name
442  # - wgContLang (expected in most case)
443  # - wgLang (on some specific pages)
444  # - wgDefaultLanguageVariant
445  # - Optional message
446  return [
447  [ 'fr', 'Help:I_need_somebody', 'fr', 'fr', false ],
448  [ 'es', 'Help:I_need_somebody', 'es', 'zh-tw', false ],
449  [ 'zh', 'Help:I_need_somebody', 'zh', 'zh-tw', false ],
450 
451  [ 'es', 'Help:I_need_somebody', 'es', 'zh-tw', 'zh-cn' ],
452  [ 'es', 'MediaWiki:About', 'es', 'zh-tw', 'zh-cn' ],
453  [ 'es', 'MediaWiki:About/', 'es', 'zh-tw', 'zh-cn' ],
454  [ 'de', 'MediaWiki:About/de', 'es', 'zh-tw', 'zh-cn' ],
455  [ 'en', 'MediaWiki:Common.js', 'es', 'zh-tw', 'zh-cn' ],
456  [ 'en', 'MediaWiki:Common.css', 'es', 'zh-tw', 'zh-cn' ],
457  [ 'en', 'User:JohnDoe/Common.js', 'es', 'zh-tw', 'zh-cn' ],
458  [ 'en', 'User:JohnDoe/Monobook.css', 'es', 'zh-tw', 'zh-cn' ],
459 
460  [ 'zh-cn', 'Help:I_need_somebody', 'zh', 'zh-tw', 'zh-cn' ],
461  [ 'zh', 'MediaWiki:About', 'zh', 'zh-tw', 'zh-cn' ],
462  [ 'zh', 'MediaWiki:About/', 'zh', 'zh-tw', 'zh-cn' ],
463  [ 'de', 'MediaWiki:About/de', 'zh', 'zh-tw', 'zh-cn' ],
464  [ 'zh-cn', 'MediaWiki:About/zh-cn', 'zh', 'zh-tw', 'zh-cn' ],
465  [ 'zh-tw', 'MediaWiki:About/zh-tw', 'zh', 'zh-tw', 'zh-cn' ],
466  [ 'en', 'MediaWiki:Common.js', 'zh', 'zh-tw', 'zh-cn' ],
467  [ 'en', 'MediaWiki:Common.css', 'zh', 'zh-tw', 'zh-cn' ],
468  [ 'en', 'User:JohnDoe/Common.js', 'zh', 'zh-tw', 'zh-cn' ],
469  [ 'en', 'User:JohnDoe/Monobook.css', 'zh', 'zh-tw', 'zh-cn' ],
470 
471  [ 'zh-tw', 'Special:NewPages', 'es', 'zh-tw', 'zh-cn' ],
472  [ 'zh-tw', 'Special:NewPages', 'zh', 'zh-tw', 'zh-cn' ],
473 
474  ];
475  }
476 
481  public function testGetBaseText( $title, $expected, $msg = '' ) {
483  $this->assertEquals( $expected,
484  $title->getBaseText(),
485  $msg
486  );
487  }
488 
489  public static function provideBaseTitleCases() {
490  return [
491  # Title, expected base, optional message
492  [ 'User:John_Doe/subOne/subTwo', 'John Doe/subOne' ],
493  [ 'User:Foo/Bar/Baz', 'Foo/Bar' ],
494  ];
495  }
496 
501  public function testGetRootText( $title, $expected, $msg = '' ) {
503  $this->assertEquals( $expected,
504  $title->getRootText(),
505  $msg
506  );
507  }
508 
509  public static function provideRootTitleCases() {
510  return [
511  # Title, expected base, optional message
512  [ 'User:John_Doe/subOne/subTwo', 'John Doe' ],
513  [ 'User:Foo/Bar/Baz', 'Foo' ],
514  ];
515  }
516 
522  public function testGetSubpageText( $title, $expected, $msg = '' ) {
524  $this->assertEquals( $expected,
525  $title->getSubpageText(),
526  $msg
527  );
528  }
529 
530  public static function provideSubpageTitleCases() {
531  return [
532  # Title, expected base, optional message
533  [ 'User:John_Doe/subOne/subTwo', 'subTwo' ],
534  [ 'User:John_Doe/subOne', 'subOne' ],
535  ];
536  }
537 
538  public static function provideNewFromTitleValue() {
539  return [
540  [ new TitleValue( NS_MAIN, 'Foo' ) ],
541  [ new TitleValue( NS_MAIN, 'Foo', 'bar' ) ],
542  [ new TitleValue( NS_USER, 'Hansi_Maier' ) ],
543  ];
544  }
545 
550  $title = Title::newFromTitleValue( $value );
551 
552  $dbkey = str_replace( ' ', '_', $value->getText() );
553  $this->assertEquals( $dbkey, $title->getDBkey() );
554  $this->assertEquals( $value->getNamespace(), $title->getNamespace() );
555  $this->assertEquals( $value->getFragment(), $title->getFragment() );
556  }
557 
558  public static function provideGetTitleValue() {
559  return [
560  [ 'Foo' ],
561  [ 'Foo#bar' ],
562  [ 'User:Hansi_Maier' ],
563  ];
564  }
565 
569  public function testGetTitleValue( $text ) {
570  $title = Title::newFromText( $text );
571  $value = $title->getTitleValue();
572 
573  $dbkey = str_replace( ' ', '_', $value->getText() );
574  $this->assertEquals( $title->getDBkey(), $dbkey );
575  $this->assertEquals( $title->getNamespace(), $value->getNamespace() );
576  $this->assertEquals( $title->getFragment(), $value->getFragment() );
577  }
578 
579  public static function provideGetFragment() {
580  return [
581  [ 'Foo', '' ],
582  [ 'Foo#bar', 'bar' ],
583  [ 'Foo#bär', 'bär' ],
584 
585  // Inner whitespace is normalized
586  [ 'Foo#bar_bar', 'bar bar' ],
587  [ 'Foo#bar bar', 'bar bar' ],
588  [ 'Foo#bar bar', 'bar bar' ],
589 
590  // Leading whitespace is kept, trailing whitespace is trimmed.
591  // XXX: Is this really want we want?
592  [ 'Foo#_bar_bar_', ' bar bar' ],
593  [ 'Foo# bar bar ', ' bar bar' ],
594  ];
595  }
596 
603  public function testGetFragment( $full, $fragment ) {
604  $title = Title::newFromText( $full );
605  $this->assertEquals( $fragment, $title->getFragment() );
606  }
607 
614  public function testIsAlwaysKnown( $page, $isKnown ) {
616  $this->assertEquals( $isKnown, $title->isAlwaysKnown() );
617  }
618 
619  public static function provideIsAlwaysKnown() {
620  return [
621  [ 'Some nonexistent page', false ],
622  [ 'UTPage', false ],
623  [ '#test', true ],
624  [ 'Special:BlankPage', true ],
625  [ 'Special:SomeNonexistentSpecialPage', false ],
626  [ 'MediaWiki:Parentheses', true ],
627  [ 'MediaWiki:Some nonexistent message', false ],
628  ];
629  }
630 
634  public function testIsAlwaysKnownOnInterwiki() {
635  $title = Title::makeTitle( NS_MAIN, 'Interwiki link', '', 'externalwiki' );
636  $this->assertTrue( $title->isAlwaysKnown() );
637  }
638 
642  public function testExists() {
643  $title = Title::makeTitle( NS_PROJECT, 'New page' );
644  $linkCache = LinkCache::singleton();
645 
646  $article = new Article( $title );
647  $page = $article->getPage();
648  $page->doEditContent( new WikitextContent( 'Some [[link]]' ), 'summary' );
649 
650  // Tell Title it doesn't know whether it exists
651  $title->mArticleID = -1;
652 
653  // Tell the link cache it doesn't exists when it really does
654  $linkCache->clearLink( $title );
655  $linkCache->addBadLinkObj( $title );
656 
657  $this->assertEquals(
658  false,
659  $title->exists(),
660  'exists() should rely on link cache unless GAID_FOR_UPDATE is used'
661  );
662  $this->assertEquals(
663  true,
664  $title->exists( Title::GAID_FOR_UPDATE ),
665  'exists() should re-query database when GAID_FOR_UPDATE is used'
666  );
667  }
668 
669  public function provideCreateFragmentTitle() {
670  return [
671  [ Title::makeTitle( NS_MAIN, 'Test' ), 'foo' ],
672  [ Title::makeTitle( NS_TALK, 'Test', 'foo' ), '' ],
673  [ Title::makeTitle( NS_CATEGORY, 'Test', 'foo' ), 'bar' ],
674  [ Title::makeTitle( NS_MAIN, 'Test1', '', 'interwiki' ), 'baz' ]
675  ];
676  }
677 
682  public function testCreateFragmentTitle( Title $title, $fragment ) {
683  $this->mergeMwGlobalArrayValue( 'wgHooks', [
684  'InterwikiLoadPrefix' => [
685  function ( $prefix, &$iwdata ) {
686  if ( $prefix === 'interwiki' ) {
687  $iwdata = [
688  'iw_url' => 'http://example.com/',
689  'iw_local' => 0,
690  'iw_trans' => 0,
691  ];
692  return false;
693  }
694  },
695  ],
696  ] );
697 
698  $fragmentTitle = $title->createFragmentTarget( $fragment );
699 
700  $this->assertEquals( $title->getNamespace(), $fragmentTitle->getNamespace() );
701  $this->assertEquals( $title->getText(), $fragmentTitle->getText() );
702  $this->assertEquals( $title->getInterwiki(), $fragmentTitle->getInterwiki() );
703  $this->assertEquals( $fragment, $fragmentTitle->getFragment() );
704  }
705 }
getText()
Returns the title in text form, without namespace prefix or fragment.
Definition: TitleValue.php:142
mergeMwGlobalArrayValue($name, $values)
Merges the given values into a MW global array variable.
testIsAlwaysKnownOnInterwiki()
Title::isAlwaysKnown.
Definition: TitleTest.php:634
the array() calling protocol came about after MediaWiki 1.4rc1.
static provideGetPageViewLanguage()
Definition: TitleTest.php:438
MalformedTitleException is thrown when a TitleParser is unable to parse a title string.
static provideValidSecureAndSplit()
Definition: TitleTest.php:42
const NS_MAIN
Definition: Defines.php:69
getText()
Get the text form (spaces not underscores) of the main part.
Definition: Title.php:893
static provideSpecialNamesWithAndWithoutParameter()
Definition: TitleTest.php:265
static provideGetFragment()
Definition: TitleTest.php:579
if(!isset($args[0])) $lang
processing should stop and the error should be shown to the user * false
Definition: hooks.txt:189
testGetTitleValue($text)
provideGetTitleValue
Definition: TitleTest.php:569
Class for viewing MediaWiki article and history.
Definition: Article.php:34
Represents a page (or page fragment) title within MediaWiki.
Definition: TitleValue.php:36
Using a hook running we can avoid having all this option specific stuff in our mainline code Using the function array $article
Definition: hooks.txt:78
$source
$value
static provideConvertByteClassToUnicodeClass()
Definition: TitleTest.php:176
testGetRootText($title, $expected, $msg= '')
provideRootTitleCases Title::getRootText
Definition: TitleTest.php:501
static newFromText($text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
Definition: Title.php:277
Represents a title within MediaWiki.
Definition: Title.php:34
secureAndSplitGlobals()
Definition: TitleTest.php:131
static provideRootTitleCases()
Definition: TitleTest.php:509
static provideSubpageTitleCases()
Definition: TitleTest.php:530
static provideNewFromTitleValue()
Definition: TitleTest.php:538
static provideBaseTitleCases()
Definition: TitleTest.php:489
testFixSpecialNameRetainsParameter($text, $expectedParam)
provideSpecialNamesWithAndWithoutParameter Title::fixSpecialName
Definition: TitleTest.php:249
static provideTestIsValidMoveOperation()
Definition: TitleTest.php:299
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:Associative array mapping language codes to prefixed links of the form"language:title".&$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':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:1796
testGetFragment($full, $fragment)
provideGetFragment
Definition: TitleTest.php:603
testExists()
Title::exists.
Definition: TitleTest.php:642
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
Definition: hooks.txt:1798
createFragmentTarget($fragment)
Creates a new Title for a different fragment of the same page.
Definition: Title.php:1402
Database Title.
Definition: TitleTest.php:7
const NS_PROJECT
Definition: Defines.php:73
static singleton()
Get an instance of this class.
Definition: LinkCache.php:61
testGetBaseText($title, $expected, $msg= '')
provideBaseTitleCases Title::getBaseText
Definition: TitleTest.php:481
static newFromDBkey($key)
Create a new Title from a prefixed DB key.
Definition: Title.php:221
testConvertByteClassToUnicodeClass($byteClass, $unicodeClass)
provideConvertByteClassToUnicodeClass Title::convertByteClassToUnicodeClass
Definition: TitleTest.php:241
testGetSubpageText($title, $expected, $msg= '')
Definition: TitleTest.php:522
const GAID_FOR_UPDATE
Used to be GAID_FOR_UPDATE define.
Definition: Title.php:49
const NS_CATEGORY
Definition: Defines.php:83
testSecureAndSplitInvalid($text, $expectedErrorMessage)
See also mediawiki.Title.test.js Title::secureAndSplit provideInvalidSecureAndSplit.
Definition: TitleTest.php:166
dataWgWhitelistReadRegexp()
Provides test parameter values for testWgWhitelistReadRegexp()
Definition: TitleTest.php:368
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:912
testIsValidMoveOperation($source, $target, $expected)
Auth-less test of Title::isValidMoveOperation.
Definition: TitleTest.php:284
getNamespace()
Get the namespace index, i.e.
Definition: Title.php:934
provideCreateFragmentTitle()
Definition: TitleTest.php:669
testLegalChars()
Title::legalChars.
Definition: TitleTest.php:23
Content object for wiki text pages.
getInterwiki()
Get the interwiki prefix.
Definition: Title.php:821
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
static provideInvalidSecureAndSplit()
Definition: TitleTest.php:79
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 local account $user
Definition: hooks.txt:242
static newFromTitleValue(TitleValue $titleValue)
Create a new Title from a TitleValue.
Definition: Title.php:240
static provideIsAlwaysKnown()
Definition: TitleTest.php:619
testCreateFragmentTitle(Title $title, $fragment)
Title::createFragmentTarget provideCreateFragmentTitle.
Definition: TitleTest.php:682
static newFromTextThrow($text, $defaultNamespace=NS_MAIN)
Like Title::newFromText(), but throws MalformedTitleException when the title is invalid, rather than returning null.
Definition: Title.php:307
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
static convertByteClassToUnicodeClass($byteClass)
Utility method for converting a character sequence from bytes to Unicode.
Definition: Title.php:634
flattenErrorsArray($errors)
Definition: TitleTest.php:404
testWgWhitelistReadRegexp($whitelistRegexp, $source, $action, $expected)
Auth-less test of Title::userCan.
Definition: TitleTest.php:324
static provideGetTitleValue()
Definition: TitleTest.php:558
testIsAlwaysKnown($page, $isKnown)
Title::isAlwaysKnown provideIsAlwaysKnown.
Definition: TitleTest.php:614
static legalChars()
Get a regex character class describing the legal characters in a link.
Definition: Title.php:606
const NS_TALK
Definition: Defines.php:70
setMwGlobals($pairs, $value=null)
testGetPageViewLanguage($expected, $titleText, $contLang, $lang, $variant, $msg= '')
provideGetPageViewLanguage Title::getPageViewLanguage
Definition: TitleTest.php:417
static & makeTitle($ns, $title, $fragment= '', $interwiki= '')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:524
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:2338
testNewFromTitleValue(TitleValue $value)
provideNewFromTitleValue
Definition: TitleTest.php:549
testSecureAndSplitValid($text)
See also mediawiki.Title.test.js Title::secureAndSplit provideValidSecureAndSplit.
Definition: TitleTest.php:155