21 'decode named entities'
30 "\xc4\x88io bonas dans l'\xc3\xa9cole!",
32 'decode numeric entities'
41 "\xc4\x88io bonas dans l'\xc3\xa9cole!",
43 'decode mixed numeric/named entities'
52 "\xc4\x88io bonas dans l'\xc3\xa9cole! (mais pas Ĉio dans l'école)",
54 "Ĉio bonas dans l'école! (mais pas Ĉio dans l'école)"
56 'decode mixed complex entities'
78 'Invalid named entity'
89 'Invalid numbered entity'
104 $this->assertEquals(
"<$tag>",
108 $this->assertEquals(
"<$tag></$tag>\n",
118 $ESCAPED =
true; # We want tag to be escaped
119 $VERBATIM =
false; # We want to keep
the tag
121 [
'data', $VERBATIM ],
122 [
'mark', $VERBATIM ],
123 [
'time', $VERBATIM ],
124 [
'video', $ESCAPED ],
132 '<div>Hello world</div />',
133 '<div>Hello world</div>',
134 'Self-closing closing div'
139 '<kbd><kbd>Shift</kbd>+<kbd>F3</kbd></kbd>',
140 '<kbd><kbd>Shift</kbd>+<kbd>F3</kbd></kbd>',
145 '<var>x<sub><var>i</var></sub></var>, <var>y<sub><var>i</var></sub></var>',
146 '<var>x<sub><var>i</var></sub></var>, <var>y<sub><var>i</var></sub></var>',
151 '<dfn><abbr title="Garage Door Opener">GDO</abbr></dfn>',
152 '<dfn><abbr title="Garage Door Opener">GDO</abbr></dfn>',
153 '<abbr> inside <dfn>',
172 $this->assertEquals( $expected,
180 [ [
'foo' =>
'bar' ],
'foo=bar',
'Unquoted attribute' ],
181 [ [
'foo' =>
'bar' ],
' foo = bar ',
'Spaced attribute' ],
182 [ [
'foo' =>
'bar' ],
'foo="bar"',
'Double-quoted attribute' ],
183 [ [
'foo' =>
'bar' ],
'foo=\'bar\'',
'Single-quoted attribute' ],
185 [
'foo' =>
'bar',
'baz' =>
'foo' ],
186 'foo=\'bar\' baz="foo"',
190 [
'foo' =>
'bar',
'baz' =>
'foo' ],
191 'foo=\'bar\' baz="foo"',
195 [
'foo' =>
'bar',
'baz' =>
'foo' ],
196 'foo=\'bar\' baz="foo"',
199 [ [
':foo' =>
'bar' ],
':foo=\'bar\'',
'Leading :' ],
200 [ [
'_foo' =>
'bar' ],
'_foo=\'bar\'',
'Leading _' ],
201 [ [
'foo' =>
'bar' ],
'Foo=\'bar\'',
'Leading capital' ],
202 [ [
'foo' =>
'BAR' ],
'FOO=BAR',
'Attribute keys are normalized to lowercase' ],
205 [ [],
'-foo=bar',
'Leading - is forbidden' ],
206 [ [],
'.foo=bar',
'Leading . is forbidden' ],
207 [ [
'foo-bar' =>
'bar' ],
'foo-bar=bar',
'A - is allowed inside the attribute' ],
208 [ [
'foo-' =>
'bar' ],
'foo-=bar',
'A - is allowed inside the attribute' ],
209 [ [
'foo.bar' =>
'baz' ],
'foo.bar=baz',
'A . is allowed inside the attribute' ],
210 [ [
'foo.' =>
'baz' ],
'foo.=baz',
'A . is allowed as last character' ],
211 [ [
'foo6' =>
'baz' ],
'foo6=baz',
'Numbers are allowed' ],
213 # This bit is more relaxed than XML rules, but some extensions use
214 # it, like ProofreadPage (see bug 27539)
215 [ [
'1foo' =>
'baz' ],
'1foo=baz',
'Leading numbers are allowed' ],
216 [ [],
'foo$=baz',
'Symbols are not allowed' ],
217 [ [],
'foo@=baz',
'Symbols are not allowed' ],
218 [ [],
'foo~=baz',
'Symbols are not allowed' ],
220 [
'foo' =>
'1[#^`*%w/(' ],
222 'All kind of characters are allowed as values'
225 [
'foo' =>
'1[#^`*%\'w/(' ],
226 'foo="1[#^`*%\'w/("',
227 'Double quotes are allowed if quoted by single quotes'
230 [
'foo' =>
'1[#^`*%"w/(' ],
231 'foo=\'1[#^`*%"w/(\'',
232 'Single quotes are allowed if quoted by double quotes'
234 [ [
'foo' =>
'&"' ],
'foo=&"',
'Special chars can be provided as entities' ],
235 [ [
'foo' =>
'&foobar;' ],
'foo=&foobar;',
'Entity-like items are accepted' ],
244 $this->assertEquals(
" $inputAttr",
253 [
'clear="left"',
'br' ],
254 [
'clear="all"',
'br' ],
255 [
'width="100"',
'td' ],
256 [
'nowrap="true"',
'td' ],
257 [
'nowrap=""',
'td' ],
258 [
'align="right"',
'td' ],
259 [
'align="center"',
'table' ],
260 [
'align="left"',
'tr' ],
261 [
'align="center"',
'div' ],
262 [
'align="left"',
'h1' ],
263 [
'align="left"',
'p' ],
272 $this->assertEquals( $expected,
283 [
'/* comment */',
'/* comment */' ],
287 [
'display: block;',
"display:/* foo */block;" ],
288 [
'display: block;',
"display:\\2f\\2a foo \\2a\\2f block;",
289 'Backslash-escaped comments must be stripped (bug 28450)' ],
290 [
'',
'/* unfinished comment structure',
291 'Remove anything after a comment-start token' ],
292 [
'',
"\\2f\\2a unifinished comment'",
293 'Remove anything after a backslash-escaped comment-start token' ],
295 '/* insecure input */',
296 'filter: progid:DXImageTransform.Microsoft.AlphaImageLoader'
297 .
'(src=\'asdf.png\',sizingMethod=\'scale\');'
300 '/* insecure input */',
301 '-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader'
302 .
'(src=\'asdf.png\',sizingMethod=\'scale\')";'
304 [
'/* insecure input */',
'width: expression(1+1);' ],
305 [
'/* insecure input */',
'background-image: image(asdf.png);' ],
306 [
'/* insecure input */',
'background-image: -webkit-image(asdf.png);' ],
307 [
'/* insecure input */',
'background-image: -moz-image(asdf.png);' ],
308 [
'/* insecure input */',
'background-image: image-set("asdf.png" 1x, "asdf.png" 2x);' ],
310 '/* insecure input */',
311 'background-image: -webkit-image-set("asdf.png" 1x, "asdf.png" 2x);'
314 '/* insecure input */',
315 'background-image: -moz-image-set("asdf.png" 1x, "asdf.png" 2x);'
317 [
'/* insecure input */',
'foo: attr( title, url );' ],
318 [
'/* insecure input */',
'foo: attr( title url );' ],
336 [
'a¡b',
'a¡b' ],
337 [
'foo'bar',
"foo'bar" ],
338 [
'<script>foo</script>',
'<script>foo</script>' ],
360 [
'foo bar',
'foo',
'bar' ],
361 [
'#1 #2',
'#1',
'#2' ],
362 [
'+1 +2',
'+1',
'+2' ],
testDeprecatedAttributesUnaltered($inputAttr, $inputEl, $message= '')
provideDeprecatedAttributes Sanitizer::fixTagAttributes
#define the
table suitable for use with IDatabase::select()
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 an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses & $html
testInvalidEntities()
Sanitizer::decodeCharReferences.
static decodeTagAttributes($text)
Return an associative array of attribute names and values from a partial tag string.
testRemovehtmltagsOnHtml5Tags($tag, $escaped)
Sanitizer::removeHTMLtags provideHtml5Tags.
testEscapeIdReferenceList($referenceList, $id1, $id2)
Test escapeIdReferenceList for consistency with escapeId.
static fixTagAttributes($text, $element, $sorted=false)
Take a tag soup fragment listing an HTML element's attributes and normalize it to well-formed XML...
testDecodeNumericEntities()
Sanitizer::decodeCharReferences.
testRemoveHTMLtags($input, $output, $msg=null)
dataRemoveHTMLtags Sanitizer::removeHTMLtags
static provideCssCommentsFixtures()
testEscapeHtmlAllowEntities($expected, $html)
provideEscapeHtmlAllowEntities Sanitizer::escapeHtmlAllowEntities
static decodeCharReferences($text)
Decode any character references, numeric or named entities, in the text and return a UTF-8 string...
static provideHtml5Tags()
Provide HTML5 tags.
static destroySingleton()
Destroy the current singleton instance.
testInvalidNumberedEntities()
Sanitizer::decodeCharReferences.
Unicode normalization routines for working with UTF-8 strings.
testDecodeNamedEntities()
Sanitizer::decodeCharReferences.
static escapeHtmlAllowEntities($html)
Given HTML input, escape with htmlspecialchars but un-escape entities.
static provideDeprecatedAttributes()
testDecodeTagAttributes($expected, $attributes, $message= '')
provideTagAttributesToDecode Sanitizer::decodeTagAttributes
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books $tag
static escapeIdReferenceList($referenceString, $options=[])
Given a string containing a space delimited list of ids, escape each id to match ids escaped by the e...
testDecodeMixedEntities()
Sanitizer::decodeCharReferences.
static escapeId($id, $options=[])
Given a value, escape it so that it can be used in an id attribute and return it. ...
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist 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
testDecodeMixedComplexEntities()
Sanitizer::decodeCharReferences.
testCssCommentsChecking($expected, $css, $message= '')
provideCssCommentsFixtures Sanitizer::checkCss
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
static removeHTMLtags($text, $processCallback=null, $args=[], $extratags=[], $removetags=[], $warnCallback=null)
Cleans up HTML, removes dangerous tags and attributes, and removes HTML comments. ...
static provideEscapeIdReferenceList()
static checkCss($value)
Pick apart some CSS and check it for forbidden or unsafe structures.
static provideEscapeHtmlAllowEntities()
static provideTagAttributesToDecode()
testInvalidAmpersand()
Sanitizer::decodeCharReferences.
static setInstance($instance)
Set the driver to be used.