w/s
[lhc/web/wiklou.git] / includes / Html.php
1 <?php
2 /**
3 * Collection of methods to generate HTML content
4 *
5 * Copyright © 2009 Aryeh Gregor
6 * http://www.mediawiki.org/
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 * http://www.gnu.org/copyleft/gpl.html
22 *
23 * @file
24 */
25
26 /**
27 * This class is a collection of static functions that serve two purposes:
28 *
29 * 1) Implement any algorithms specified by HTML5, or other HTML
30 * specifications, in a convenient and self-contained way.
31 *
32 * 2) Allow HTML elements to be conveniently and safely generated, like the
33 * current Xml class but a) less confused (Xml supports HTML-specific things,
34 * but only sometimes!) and b) not necessarily confined to XML-compatible
35 * output.
36 *
37 * There are two important configuration options this class uses:
38 *
39 * $wgHtml5: If this is set to false, then all output should be valid XHTML 1.0
40 * Transitional.
41 * $wgWellFormedXml: If this is set to true, then all output should be
42 * well-formed XML (quotes on attributes, self-closing tags, etc.).
43 *
44 * This class is meant to be confined to utility functions that are called from
45 * trusted code paths. It does not do enforcement of policy like not allowing
46 * <a> elements.
47 *
48 * @since 1.16
49 */
50 class Html {
51 # List of void elements from HTML5, section 8.1.2 as of 2011-08-12
52 private static $voidElements = array(
53 'area',
54 'base',
55 'br',
56 'col',
57 'command',
58 'embed',
59 'hr',
60 'img',
61 'input',
62 'keygen',
63 'link',
64 'meta',
65 'param',
66 'source',
67 'track',
68 'wbr',
69 );
70
71 # Boolean attributes, which may have the value omitted entirely. Manually
72 # collected from the HTML5 spec as of 2011-08-12.
73 private static $boolAttribs = array(
74 'async',
75 'autofocus',
76 'autoplay',
77 'checked',
78 'controls',
79 'default',
80 'defer',
81 'disabled',
82 'formnovalidate',
83 'hidden',
84 'ismap',
85 'itemscope',
86 'loop',
87 'multiple',
88 'muted',
89 'novalidate',
90 'open',
91 'pubdate',
92 'readonly',
93 'required',
94 'reversed',
95 'scoped',
96 'seamless',
97 'selected',
98 'truespeed',
99 'typemustmatch',
100 # HTML5 Microdata
101 'itemscope',
102 );
103
104 private static $HTMLFiveOnlyAttribs = array(
105 'autocomplete',
106 'autofocus',
107 'max',
108 'min',
109 'multiple',
110 'pattern',
111 'placeholder',
112 'required',
113 'step',
114 'spellcheck',
115 );
116
117 /**
118 * Returns an HTML element in a string. The major advantage here over
119 * manually typing out the HTML is that it will escape all attribute
120 * values. If you're hardcoding all the attributes, or there are none, you
121 * should probably just type out the html element yourself.
122 *
123 * This is quite similar to Xml::tags(), but it implements some useful
124 * HTML-specific logic. For instance, there is no $allowShortTag
125 * parameter: the closing tag is magically omitted if $element has an empty
126 * content model. If $wgWellFormedXml is false, then a few bytes will be
127 * shaved off the HTML output as well.
128 *
129 * @param $element string The element's name, e.g., 'a'
130 * @param $attribs array Associative array of attributes, e.g., array(
131 * 'href' => 'http://www.mediawiki.org/' ). See expandAttributes() for
132 * further documentation.
133 * @param $contents string The raw HTML contents of the element: *not*
134 * escaped!
135 * @return string Raw HTML
136 */
137 public static function rawElement( $element, $attribs = array(), $contents = '' ) {
138 global $wgWellFormedXml;
139 $start = self::openElement( $element, $attribs );
140 if ( in_array( $element, self::$voidElements ) ) {
141 if ( $wgWellFormedXml ) {
142 # Silly XML.
143 return substr( $start, 0, -1 ) . ' />';
144 }
145 return $start;
146 } else {
147 return "$start$contents" . self::closeElement( $element );
148 }
149 }
150
151 /**
152 * Identical to rawElement(), but HTML-escapes $contents (like
153 * Xml::element()).
154 *
155 * @param $element string
156 * @param $attribs array
157 * @param $contents string
158 *
159 * @return string
160 */
161 public static function element( $element, $attribs = array(), $contents = '' ) {
162 return self::rawElement( $element, $attribs, strtr( $contents, array(
163 # There's no point in escaping quotes, >, etc. in the contents of
164 # elements.
165 '&' => '&amp;',
166 '<' => '&lt;'
167 ) ) );
168 }
169
170 /**
171 * Identical to rawElement(), but has no third parameter and omits the end
172 * tag (and the self-closing '/' in XML mode for empty elements).
173 *
174 * @param $element string
175 * @param $attribs array
176 *
177 * @return string
178 */
179 public static function openElement( $element, $attribs = array() ) {
180 global $wgHtml5, $wgWellFormedXml;
181 $attribs = (array)$attribs;
182 # This is not required in HTML5, but let's do it anyway, for
183 # consistency and better compression.
184 $element = strtolower( $element );
185
186 # In text/html, initial <html> and <head> tags can be omitted under
187 # pretty much any sane circumstances, if they have no attributes. See:
188 # <http://www.whatwg.org/specs/web-apps/current-work/multipage/syntax.html#optional-tags>
189 if ( !$wgWellFormedXml && !$attribs
190 && in_array( $element, array( 'html', 'head' ) ) ) {
191 return '';
192 }
193
194 # Remove HTML5-only attributes if we aren't doing HTML5, and disable
195 # form validation regardless (see bug 23769 and the more detailed
196 # comment in expandAttributes())
197 if ( $element == 'input' ) {
198 # Whitelist of types that don't cause validation. All except
199 # 'search' are valid in XHTML1.
200 $validTypes = array(
201 'hidden',
202 'text',
203 'password',
204 'checkbox',
205 'radio',
206 'file',
207 'submit',
208 'image',
209 'reset',
210 'button',
211 'search',
212 );
213
214 if ( isset( $attribs['type'] )
215 && !in_array( $attribs['type'], $validTypes ) ) {
216 unset( $attribs['type'] );
217 }
218
219 if ( isset( $attribs['type'] ) && $attribs['type'] == 'search'
220 && !$wgHtml5 ) {
221 unset( $attribs['type'] );
222 }
223 }
224
225 if ( !$wgHtml5 && $element == 'textarea' && isset( $attribs['maxlength'] ) ) {
226 unset( $attribs['maxlength'] );
227 }
228
229 return "<$element" . self::expandAttributes(
230 self::dropDefaults( $element, $attribs ) ) . '>';
231 }
232
233 /**
234 * Returns "</$element>", except if $wgWellFormedXml is off, in which case
235 * it returns the empty string when that's guaranteed to be safe.
236 *
237 * @since 1.17
238 * @param $element string Name of the element, e.g., 'a'
239 * @return string A closing tag, if required
240 */
241 public static function closeElement( $element ) {
242 global $wgWellFormedXml;
243
244 $element = strtolower( $element );
245
246 # Reference:
247 # http://www.whatwg.org/specs/web-apps/current-work/multipage/syntax.html#optional-tags
248 if ( !$wgWellFormedXml && in_array( $element, array(
249 'html',
250 'head',
251 'body',
252 'li',
253 'dt',
254 'dd',
255 'tr',
256 'td',
257 'th',
258 ) ) ) {
259 return '';
260 }
261 return "</$element>";
262 }
263
264 /**
265 * Given an element name and an associative array of element attributes,
266 * return an array that is functionally identical to the input array, but
267 * possibly smaller. In particular, attributes might be stripped if they
268 * are given their default values.
269 *
270 * This method is not guaranteed to remove all redundant attributes, only
271 * some common ones and some others selected arbitrarily at random. It
272 * only guarantees that the output array should be functionally identical
273 * to the input array (currently per the HTML 5 draft as of 2009-09-06).
274 *
275 * @param $element string Name of the element, e.g., 'a'
276 * @param $attribs array Associative array of attributes, e.g., array(
277 * 'href' => 'http://www.mediawiki.org/' ). See expandAttributes() for
278 * further documentation.
279 * @return array An array of attributes functionally identical to $attribs
280 */
281 private static function dropDefaults( $element, $attribs ) {
282 # Don't bother doing anything if we aren't outputting HTML5; it's too
283 # much of a pain to maintain two sets of defaults.
284 global $wgHtml5;
285 if ( !$wgHtml5 ) {
286 return $attribs;
287 }
288
289 static $attribDefaults = array(
290 'area' => array( 'shape' => 'rect' ),
291 'button' => array(
292 'formaction' => 'GET',
293 'formenctype' => 'application/x-www-form-urlencoded',
294 'type' => 'submit',
295 ),
296 'canvas' => array(
297 'height' => '150',
298 'width' => '300',
299 ),
300 'command' => array( 'type' => 'command' ),
301 'form' => array(
302 'action' => 'GET',
303 'autocomplete' => 'on',
304 'enctype' => 'application/x-www-form-urlencoded',
305 ),
306 'input' => array(
307 'formaction' => 'GET',
308 'type' => 'text',
309 'value' => '',
310 ),
311 'keygen' => array( 'keytype' => 'rsa' ),
312 'link' => array( 'media' => 'all' ),
313 'menu' => array( 'type' => 'list' ),
314 # Note: the use of text/javascript here instead of other JavaScript
315 # MIME types follows the HTML5 spec.
316 'script' => array( 'type' => 'text/javascript' ),
317 'style' => array(
318 'media' => 'all',
319 'type' => 'text/css',
320 ),
321 'textarea' => array( 'wrap' => 'soft' ),
322 );
323
324 $element = strtolower( $element );
325
326 foreach ( $attribs as $attrib => $value ) {
327 $lcattrib = strtolower( $attrib );
328 $value = strval( $value );
329
330 # Simple checks using $attribDefaults
331 if ( isset( $attribDefaults[$element][$lcattrib] ) &&
332 $attribDefaults[$element][$lcattrib] == $value ) {
333 unset( $attribs[$attrib] );
334 }
335
336 if ( $lcattrib == 'class' && $value == '' ) {
337 unset( $attribs[$attrib] );
338 }
339 }
340
341 # More subtle checks
342 if ( $element === 'link' && isset( $attribs['type'] )
343 && strval( $attribs['type'] ) == 'text/css' ) {
344 unset( $attribs['type'] );
345 }
346 if ( $element === 'select' && isset( $attribs['size'] ) ) {
347 if ( in_array( 'multiple', $attribs )
348 || ( isset( $attribs['multiple'] ) && $attribs['multiple'] !== false )
349 ) {
350 # A multi-select
351 if ( strval( $attribs['size'] ) == '4' ) {
352 unset( $attribs['size'] );
353 }
354 } else {
355 # Single select
356 if ( strval( $attribs['size'] ) == '1' ) {
357 unset( $attribs['size'] );
358 }
359 }
360 }
361
362 return $attribs;
363 }
364
365 /**
366 * Given an associative array of element attributes, generate a string
367 * to stick after the element name in HTML output. Like array( 'href' =>
368 * 'http://www.mediawiki.org/' ) becomes something like
369 * ' href="http://www.mediawiki.org"'. Again, this is like
370 * Xml::expandAttributes(), but it implements some HTML-specific logic.
371 * For instance, it will omit quotation marks if $wgWellFormedXml is false,
372 * and will treat boolean attributes specially.
373 *
374 * Attributes that should contain space-separated lists (such as 'class') array
375 * values are allowed as well, which will automagically be normalized
376 * and converted to a space-separated string. In addition to a numerical
377 * array, the attribute value may also be an associative array. See the
378 * example below for how that works.
379 * @example Numerical array
380 * <code>
381 * Html::element( 'em', array(
382 * 'class' => array( 'foo', 'bar' )
383 * ) );
384 * // gives '<em class="foo bar"></em>'
385 * </code>
386 * @example Associative array
387 * <code>
388 * Html::element( 'em', array(
389 * 'class' => array( 'foo', 'bar', 'foo' => false, 'quux' => true )
390 * ) );
391 * // gives '<em class="bar quux"></em>'
392 * </code>
393 *
394 * @param $attribs array Associative array of attributes, e.g., array(
395 * 'href' => 'http://www.mediawiki.org/' ). Values will be HTML-escaped.
396 * A value of false means to omit the attribute. For boolean attributes,
397 * you can omit the key, e.g., array( 'checked' ) instead of
398 * array( 'checked' => 'checked' ) or such.
399 * @return string HTML fragment that goes between element name and '>'
400 * (starting with a space if at least one attribute is output)
401 */
402 public static function expandAttributes( $attribs ) {
403 global $wgHtml5, $wgWellFormedXml;
404
405 $ret = '';
406 $attribs = (array)$attribs;
407 foreach ( $attribs as $key => $value ) {
408 if ( $value === false || is_null( $value ) ) {
409 continue;
410 }
411
412 # For boolean attributes, support array( 'foo' ) instead of
413 # requiring array( 'foo' => 'meaningless' ).
414 if ( is_int( $key )
415 && in_array( strtolower( $value ), self::$boolAttribs ) ) {
416 $key = $value;
417 }
418
419 # Not technically required in HTML5, but required in XHTML 1.0,
420 # and we'd like consistency and better compression anyway.
421 $key = strtolower( $key );
422
423 # Here we're blacklisting some HTML5-only attributes...
424 if ( !$wgHtml5 && in_array( $key, self::$HTMLFiveOnlyAttribs )
425 ) {
426 continue;
427 }
428
429 # Bug 23769: Blacklist all form validation attributes for now. Current
430 # (June 2010) WebKit has no UI, so the form just refuses to submit
431 # without telling the user why, which is much worse than failing
432 # server-side validation. Opera is the only other implementation at
433 # this time, and has ugly UI, so just kill the feature entirely until
434 # we have at least one good implementation.
435 if ( in_array( $key, array( 'max', 'min', 'pattern', 'required', 'step' ) ) ) {
436 continue;
437 }
438
439 // http://www.w3.org/TR/html401/index/attributes.html ("space-separated")
440 // http://www.w3.org/TR/html5/index.html#attributes-1 ("space-separated")
441 $spaceSeparatedListAttributes = array(
442 'class', // html4, html5
443 'accesskey', // as of html5, multiple space-separated values allowed
444 // html4-spec doesn't document rel= as space-separated
445 // but has been used like that and is now documented as such
446 // in the html5-spec.
447 'rel',
448 );
449
450 # Specific features for attributes that allow a list of space-separated values
451 if ( in_array( $key, $spaceSeparatedListAttributes ) ) {
452 // Apply some normalization and remove duplicates
453
454 // Convert into correct array. Array can contain space-seperated
455 // values. Implode/explode to get those into the main array as well.
456 if ( is_array( $value ) ) {
457 // If input wasn't an array, we can skip this step
458
459 $newValue = array();
460 foreach ( $value as $k => $v ) {
461 if ( is_string( $v ) ) {
462 // String values should be normal `array( 'foo' )`
463 // Just append them
464 if ( !isset( $value[$v] ) ) {
465 // As a special case don't set 'foo' if a
466 // separate 'foo' => true/false exists in the array
467 // keys should be authoritive
468 $newValue[] = $v;
469 }
470 } elseif ( $v ) {
471 // If the value is truthy but not a string this is likely
472 // an array( 'foo' => true ), falsy values don't add strings
473 $newValue[] = $k;
474 }
475 }
476 $value = implode( ' ', $newValue );
477 }
478 $value = explode( ' ', $value );
479
480 // Normalize spacing by fixing up cases where people used
481 // more than 1 space and/or a trailing/leading space
482 $value = array_diff( $value, array( '', ' ' ) );
483
484 // Remove duplicates and create the string
485 $value = implode( ' ', array_unique( $value ) );
486 }
487
488 # See the "Attributes" section in the HTML syntax part of HTML5,
489 # 9.1.2.3 as of 2009-08-10. Most attributes can have quotation
490 # marks omitted, but not all. (Although a literal " is not
491 # permitted, we don't check for that, since it will be escaped
492 # anyway.)
493 #
494 # See also research done on further characters that need to be
495 # escaped: http://code.google.com/p/html5lib/issues/detail?id=93
496 $badChars = "\\x00- '=<>`/\x{00a0}\x{1680}\x{180e}\x{180F}\x{2000}\x{2001}"
497 . "\x{2002}\x{2003}\x{2004}\x{2005}\x{2006}\x{2007}\x{2008}\x{2009}"
498 . "\x{200A}\x{2028}\x{2029}\x{202F}\x{205F}\x{3000}";
499 if ( $wgWellFormedXml || $value === ''
500 || preg_match( "![$badChars]!u", $value ) ) {
501 $quote = '"';
502 } else {
503 $quote = '';
504 }
505
506 if ( in_array( $key, self::$boolAttribs ) ) {
507 # In XHTML 1.0 Transitional, the value needs to be equal to the
508 # key. In HTML5, we can leave the value empty instead. If we
509 # don't need well-formed XML, we can omit the = entirely.
510 if ( !$wgWellFormedXml ) {
511 $ret .= " $key";
512 } elseif ( $wgHtml5 ) {
513 $ret .= " $key=\"\"";
514 } else {
515 $ret .= " $key=\"$key\"";
516 }
517 } else {
518 # Apparently we need to entity-encode \n, \r, \t, although the
519 # spec doesn't mention that. Since we're doing strtr() anyway,
520 # and we don't need <> escaped here, we may as well not call
521 # htmlspecialchars().
522 # @todo FIXME: Verify that we actually need to
523 # escape \n\r\t here, and explain why, exactly.
524 #
525 # We could call Sanitizer::encodeAttribute() for this, but we
526 # don't because we're stubborn and like our marginal savings on
527 # byte size from not having to encode unnecessary quotes.
528 $map = array(
529 '&' => '&amp;',
530 '"' => '&quot;',
531 "\n" => '&#10;',
532 "\r" => '&#13;',
533 "\t" => '&#9;'
534 );
535 if ( $wgWellFormedXml ) {
536 # This is allowed per spec: <http://www.w3.org/TR/xml/#NT-AttValue>
537 # But reportedly it breaks some XML tools?
538 # @todo FIXME: Is this really true?
539 $map['<'] = '&lt;';
540 }
541
542 $ret .= " $key=$quote" . strtr( $value, $map ) . $quote;
543 }
544 }
545 return $ret;
546 }
547
548 /**
549 * Output a <script> tag with the given contents. TODO: do some useful
550 * escaping as well, like if $contents contains literal '</script>' or (for
551 * XML) literal "]]>".
552 *
553 * @param $contents string JavaScript
554 * @return string Raw HTML
555 */
556 public static function inlineScript( $contents ) {
557 global $wgHtml5, $wgJsMimeType, $wgWellFormedXml;
558
559 $attrs = array();
560
561 if ( !$wgHtml5 ) {
562 $attrs['type'] = $wgJsMimeType;
563 }
564
565 if ( $wgWellFormedXml && preg_match( '/[<&]/', $contents ) ) {
566 $contents = "/*<![CDATA[*/$contents/*]]>*/";
567 }
568
569 return self::rawElement( 'script', $attrs, $contents );
570 }
571
572 /**
573 * Output a <script> tag linking to the given URL, e.g.,
574 * <script src=foo.js></script>.
575 *
576 * @param $url string
577 * @return string Raw HTML
578 */
579 public static function linkedScript( $url ) {
580 global $wgHtml5, $wgJsMimeType;
581
582 $attrs = array( 'src' => $url );
583
584 if ( !$wgHtml5 ) {
585 $attrs['type'] = $wgJsMimeType;
586 }
587
588 return self::element( 'script', $attrs );
589 }
590
591 /**
592 * Output a <style> tag with the given contents for the given media type
593 * (if any). TODO: do some useful escaping as well, like if $contents
594 * contains literal '</style>' (admittedly unlikely).
595 *
596 * @param $contents string CSS
597 * @param $media mixed A media type string, like 'screen'
598 * @return string Raw HTML
599 */
600 public static function inlineStyle( $contents, $media = 'all' ) {
601 global $wgWellFormedXml;
602
603 if ( $wgWellFormedXml && preg_match( '/[<&]/', $contents ) ) {
604 $contents = "/*<![CDATA[*/$contents/*]]>*/";
605 }
606
607 return self::rawElement( 'style', array(
608 'type' => 'text/css',
609 'media' => $media,
610 ), $contents );
611 }
612
613 /**
614 * Output a <link rel=stylesheet> linking to the given URL for the given
615 * media type (if any).
616 *
617 * @param $url string
618 * @param $media mixed A media type string, like 'screen'
619 * @return string Raw HTML
620 */
621 public static function linkedStyle( $url, $media = 'all' ) {
622 return self::element( 'link', array(
623 'rel' => 'stylesheet',
624 'href' => $url,
625 'type' => 'text/css',
626 'media' => $media,
627 ) );
628 }
629
630 /**
631 * Convenience function to produce an <input> element. This supports the
632 * new HTML5 input types and attributes, and will silently strip them if
633 * $wgHtml5 is false.
634 *
635 * @param $name string name attribute
636 * @param $value mixed value attribute
637 * @param $type string type attribute
638 * @param $attribs array Associative array of miscellaneous extra
639 * attributes, passed to Html::element()
640 * @return string Raw HTML
641 */
642 public static function input( $name, $value = '', $type = 'text', $attribs = array() ) {
643 $attribs['type'] = $type;
644 $attribs['value'] = $value;
645 $attribs['name'] = $name;
646
647 return self::element( 'input', $attribs );
648 }
649
650 /**
651 * Convenience function to produce an input element with type=hidden
652 *
653 * @param $name string name attribute
654 * @param $value string value attribute
655 * @param $attribs array Associative array of miscellaneous extra
656 * attributes, passed to Html::element()
657 * @return string Raw HTML
658 */
659 public static function hidden( $name, $value, $attribs = array() ) {
660 return self::input( $name, $value, 'hidden', $attribs );
661 }
662
663 /**
664 * Convenience function to produce an <input> element. This supports leaving
665 * out the cols= and rows= which Xml requires and are required by HTML4/XHTML
666 * but not required by HTML5 and will silently set cols="" and rows="" if
667 * $wgHtml5 is false and cols and rows are omitted (HTML4 validates present
668 * but empty cols="" and rows="" as valid).
669 *
670 * @param $name string name attribute
671 * @param $value string value attribute
672 * @param $attribs array Associative array of miscellaneous extra
673 * attributes, passed to Html::element()
674 * @return string Raw HTML
675 */
676 public static function textarea( $name, $value = '', $attribs = array() ) {
677 global $wgHtml5;
678
679 $attribs['name'] = $name;
680
681 if ( !$wgHtml5 ) {
682 if ( !isset( $attribs['cols'] ) ) {
683 $attribs['cols'] = "";
684 }
685
686 if ( !isset( $attribs['rows'] ) ) {
687 $attribs['rows'] = "";
688 }
689 }
690
691 if (substr($value, 0, 1) == "\n") {
692 // Workaround for bug 12130: browsers eat the initial newline
693 // assuming that it's just for show, but they do keep the later
694 // newlines, which we may want to preserve during editing.
695 // Prepending a single newline
696 $spacedValue = "\n" . $value;
697 } else {
698 $spacedValue = $value;
699 }
700 return self::element( 'textarea', $attribs, $spacedValue );
701 }
702
703 /**
704 * Constructs the opening html-tag with necessary doctypes depending on
705 * global variables.
706 *
707 * @param $attribs array Associative array of miscellaneous extra
708 * attributes, passed to Html::element() of html tag.
709 * @return string Raw HTML
710 */
711 public static function htmlHeader( $attribs = array() ) {
712 $ret = '';
713
714 global $wgMimeType;
715
716 if ( self::isXmlMimeType( $wgMimeType ) ) {
717 $ret .= "<?xml version=\"1.0\" encoding=\"UTF-8\" ?" . ">\n";
718 }
719
720 global $wgHtml5, $wgHtml5Version, $wgDocType, $wgDTD;
721 global $wgXhtmlNamespaces, $wgXhtmlDefaultNamespace;
722
723 if ( $wgHtml5 ) {
724 $ret .= "<!DOCTYPE html>\n";
725
726 if ( $wgHtml5Version ) {
727 $attribs['version'] = $wgHtml5Version;
728 }
729 } else {
730 $ret .= "<!DOCTYPE html PUBLIC \"$wgDocType\" \"$wgDTD\">\n";
731 $attribs['xmlns'] = $wgXhtmlDefaultNamespace;
732
733 foreach ( $wgXhtmlNamespaces as $tag => $ns ) {
734 $attribs["xmlns:$tag"] = $ns;
735 }
736 }
737
738 $html = Html::openElement( 'html', $attribs );
739
740 if ( $html ) {
741 $html .= "\n";
742 }
743
744 $ret .= $html;
745
746 return $ret;
747 }
748
749 /**
750 * Determines if the given mime type is xml.
751 *
752 * @param $mimetype string MimeType
753 * @return Boolean
754 */
755 public static function isXmlMimeType( $mimetype ) {
756 switch ( $mimetype ) {
757 case 'text/xml':
758 case 'application/xhtml+xml':
759 case 'application/xml':
760 return true;
761 default:
762 return false;
763 }
764 }
765
766 /**
767 * Get HTML for an info box with an icon.
768 *
769 * @param $text String: wikitext, get this with wfMsgNoTrans()
770 * @param $icon String: icon name, file in skins/common/images
771 * @param $alt String: alternate text for the icon
772 * @param $class String: additional class name to add to the wrapper div
773 * @param $useStylePath
774 *
775 * @return string
776 */
777 static function infoBox( $text, $icon, $alt, $class = false, $useStylePath = true ) {
778 global $wgStylePath;
779
780 if ( $useStylePath ) {
781 $icon = $wgStylePath.'/common/images/'.$icon;
782 }
783
784 $s = Html::openElement( 'div', array( 'class' => "mw-infobox $class") );
785
786 $s .= Html::openElement( 'div', array( 'class' => 'mw-infobox-left' ) ).
787 Html::element( 'img',
788 array(
789 'src' => $icon,
790 'alt' => $alt,
791 )
792 ).
793 Html::closeElement( 'div' );
794
795 $s .= Html::openElement( 'div', array( 'class' => 'mw-infobox-right' ) ).
796 $text.
797 Html::closeElement( 'div' );
798 $s .= Html::element( 'div', array( 'style' => 'clear: left;' ), ' ' );
799
800 $s .= Html::closeElement( 'div' );
801
802 $s .= Html::element( 'div', array( 'style' => 'clear: left;' ), ' ' );
803
804 return $s;
805 }
806 }