MediaWiki REL1_33
InstallDocFormatter.php
Go to the documentation of this file.
1<?php
24 public static function format( $text ) {
25 $obj = new self( $text );
26
27 return $obj->execute();
28 }
29
30 protected function __construct( $text ) {
31 $this->text = $text;
32 }
33
34 protected function execute() {
35 $text = $this->text;
36 // Use Unix line endings, escape some wikitext stuff
37 $text = str_replace( [ '<', '{{', '[[', '__', "\r" ],
38 [ '&lt;', '&#123;&#123;', '&#91;&#91;', '&#95;&#95;', '' ], $text );
39 // join word-wrapped lines into one
40 do {
41 $prev = $text;
42 $text = preg_replace( "/\n([\\*#\t])([^\n]*?)\n([^\n#\\*:]+)/", "\n\\1\\2 \\3", $text );
43 } while ( $text != $prev );
44 // Replace tab indents with colons
45 $text = preg_replace( '/^\t\t/m', '::', $text );
46 $text = preg_replace( '/^\t/m', ':', $text );
47
48 $linkStart = '<span class="config-plainlink">[';
49 $linkEnd = ' $0]</span>';
50
51 // turn (Tnnnn) into links
52 $text = preg_replace(
53 '/T\d+/',
54 "{$linkStart}https://phabricator.wikimedia.org/$0{$linkEnd}",
55 $text
56 );
57
58 // turn (bug nnnn) into links
59 $text = preg_replace(
60 '/bug (\d+)/',
61 "{$linkStart}https://bugzilla.wikimedia.org/$1{$linkEnd}",
62 $text
63 );
64
65 // add links to manual to every global variable mentioned
66 $text = preg_replace(
67 '/\$wg[a-z0-9_]+/i',
68 "{$linkStart}https://www.mediawiki.org/wiki/Manual:$0{$linkEnd}",
69 $text
70 );
71
72 return $text;
73 }
74}
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy