Ticket #50473: 50473.patch
File 50473.patch, 27.5 KB (added by , 5 years ago) |
---|
-
wp-admin/includes/media.php
259 259 } 260 260 261 261 /** 262 * Adds image htmlto editor262 * Adds image HTML to editor 263 263 * 264 264 * @since 2.5.0 265 265 * -
wp-admin/includes/template.php
923 923 } 924 924 925 925 /** 926 * Print out option htmlelements for role selectors.926 * Print out option HTML elements for role selectors. 927 927 * 928 928 * @since 2.1.0 929 929 * … … 1566 1566 * do_settings_fields() in do_settings-sections() 1567 1567 * 1568 1568 * The $callback argument should be the name of a function that echoes out the 1569 * htmlinput tags for this setting field. Use get_option() to retrieve existing1569 * HTML input tags for this setting field. Use get_option() to retrieve existing 1570 1570 * values to show. 1571 1571 * 1572 1572 * @since 2.7.0 … … 1918 1918 /** 1919 1919 * Displays the post password. 1920 1920 * 1921 * The password is passed through esc_attr() to ensure that it is safe for placing in an htmlattribute.1921 * The password is passed through esc_attr() to ensure that it is safe for placing in an HTML attribute. 1922 1922 * 1923 1923 * @since 2.7.0 1924 1924 */ -
wp-content/themes/twentytwenty/inc/template-tags.php
70 70 /** 71 71 * Filters the arguments for `twentytwenty_site_logo()`. 72 72 * 73 * @param string $html Compiled htmlbased on our arguments.73 * @param string $html Compiled HTML based on our arguments. 74 74 * @param array $args Parsed arguments. 75 75 * @param string $classname Class name based on current view, home or single. 76 76 * @param string $contents HTML for site title or logo. … … 103 103 $html = sprintf( $wrapper, esc_html( $description ) ); 104 104 105 105 /** 106 * Filters the htmlfor the site description.106 * Filters the HTML for the site description. 107 107 * 108 108 * @since Twenty Twenty 1.0 109 109 * … … 326 326 <?php 327 327 328 328 /** 329 * Fires before post meta htmldisplay.329 * Fires before post meta HTML display. 330 330 * 331 331 * Allow output of additional post meta info to be added by child themes and plugins. 332 332 * … … 453 453 } 454 454 455 455 /** 456 * Fires after post meta htmldisplay.456 * Fires after post meta HTML display. 457 457 * 458 458 * Allow output of additional post meta info to be added by child themes and plugins. 459 459 * -
wp-includes/class-snoopy.php
464 464 Function: fetchform 465 465 Purpose: fetch the form elements from a web page 466 466 Input: $URI where you are fetching from 467 Output: $this->results the resulting htmlform467 Output: $this->results the resulting HTML form 468 468 \*======================================================================*/ 469 469 470 470 function fetchform($URI) … … 613 613 614 614 /*======================================================================*\ 615 615 Function: _striplinks 616 Purpose: strip the hyperlinks from an htmldocument616 Purpose: strip the hyperlinks from an HTML document 617 617 Input: $document document to strip. 618 618 Output: $match an array of the links 619 619 \*======================================================================*/ … … 647 647 648 648 /*======================================================================*\ 649 649 Function: _stripform 650 Purpose: strip the form elements from an htmldocument650 Purpose: strip the form elements from an HTML document 651 651 Input: $document document to strip. 652 652 Output: $match an array of the links 653 653 \*======================================================================*/ … … 667 667 668 668 /*======================================================================*\ 669 669 Function: _striptext 670 Purpose: strip the text from an htmldocument670 Purpose: strip the text from an HTML document 671 671 Input: $document document to strip. 672 672 Output: $text the resulting text 673 673 \*======================================================================*/ … … 680 680 // more common ones. 681 681 682 682 $search = array("'<script[^>]*?>.*?</script>'si", // strip out javascript 683 "'<[\/\!]*?[^<>]*?>'si", // strip out htmltags683 "'<[\/\!]*?[^<>]*?>'si", // strip out HTML tags 684 684 "'([\r\n])[\s]+'", // strip out white space 685 "'&(quot|#34|#034|#x22);'i", // replace htmlentities685 "'&(quot|#34|#034|#x22);'i", // replace HTML entities 686 686 "'&(amp|#38|#038|#x26);'i", // added hexadecimal values 687 687 "'&(lt|#60|#060|#x3c);'i", 688 688 "'&(gt|#62|#062|#x3e);'i", -
wp-includes/class-wp-ajax-response.php
55 55 * @type int|false $old_id The previous response ID. Used as the value for the response type 56 56 * `old_id` attribute. False hides the attribute. Default false. 57 57 * @type string $position Value of the response type `position` attribute. Accepts 1 (bottom), 58 * -1 (top), htmlID (after), or -html ID (before). Default 1 (bottom).58 * -1 (top), HTML ID (after), or -html ID (before). Default 1 (bottom). 59 59 * @type string|WP_Error $data The response content/message. Also accepts a WP_Error object if the 60 60 * ID does not exist. Default empty. 61 61 * @type array $supplemental An array of extra strings that will be output within a `<supplemental>` -
wp-includes/class-wp-customize-nav-menus.php
1127 1127 } 1128 1128 1129 1129 /** 1130 * Print the htmltemplate used to render the add-menu-item frame.1130 * Print the HTML template used to render the add-menu-item frame. 1131 1131 * 1132 1132 * @since 4.3.0 1133 1133 */ -
wp-includes/comment.php
2734 2734 return false; 2735 2735 } 2736 2736 2737 // Now do a GET since we're going to look in the htmlheaders (and we're sure it's not a binary file).2737 // Now do a GET since we're going to look in the HTML headers (and we're sure it's not a binary file). 2738 2738 $response = wp_safe_remote_get( 2739 2739 $url, 2740 2740 array( -
wp-includes/deprecated.php
380 380 * @see get_bookmarks() 381 381 * 382 382 * @param string $cat_name Optional. The category name to use. If no match is found uses all. 383 * @param string $before Optional. The htmlto output before the link.384 * @param string $after Optional. The htmlto output after the link.385 * @param string $between Optional. The htmlto output between the link/image and its description. Not used if no image or $show_images is true.383 * @param string $before Optional. The HTML to output before the link. 384 * @param string $after Optional. The HTML to output after the link. 385 * @param string $between Optional. The HTML to output between the link/image and its description. Not used if no image or $show_images is true. 386 386 * @param bool $show_images Optional. Whether to show images (if defined). 387 387 * @param string $orderby Optional. The order to output the links. E.g. 'id', 'name', 'url', 'description' or 'rating'. Or maybe owner. 388 388 * If you start the name with an underscore the order will be reversed. You can also specify 'rand' as the order which will return links in a … … 525 525 * @see get_bookmarks() 526 526 * 527 527 * @param string $cat_name The category name to use. If no match is found uses all 528 * @param string $before The htmlto output before the link529 * @param string $after The htmlto output after the link530 * @param string $between The htmlto output between the link/image and its description. Not used if no image or show_images is true528 * @param string $before The HTML to output before the link 529 * @param string $after The HTML to output after the link 530 * @param string $between The HTML to output between the link/image and its description. Not used if no image or show_images is true 531 531 * @param bool $show_images Whether to show images (if defined). 532 532 * @param string $orderby the order to output the links. E.g. 'id', 'name', 'url', 533 533 * 'description', or 'rating'. Or maybe owner. If you start the name with an … … 552 552 * @see get_bookmarks() 553 553 * 554 554 * @param int $category The category to use. If no category supplied uses all 555 * @param string $before The htmlto output before the link556 * @param string $after The htmlto output after the link557 * @param string $between The htmlto output between the link/image and its description. Not used if no image or show_images == true555 * @param string $before The HTML to output before the link 556 * @param string $after The HTML to output after the link 557 * @param string $between The HTML to output between the link/image and its description. Not used if no image or show_images == true 558 558 * @param bool $show_images Whether to show images (if defined). 559 559 * @param string $orderby The order to output the links. E.g. 'id', 'name', 'url', 560 560 * 'description', or 'rating'. Or maybe owner. If you start the name with an … … 905 905 * @see get_bookmarks() 906 906 * 907 907 * @param int $category The category to use. If no category supplied uses all 908 * @param string $before the htmlto output before the link909 * @param string $after the htmlto output after the link910 * @param string $between the htmlto output between the link/image and its description.908 * @param string $before the HTML to output before the link 909 * @param string $after the HTML to output after the link 910 * @param string $between the HTML to output between the link/image and its description. 911 911 * Not used if no image or show_images == true 912 912 * @param bool $show_images whether to show images (if defined). 913 913 * @param string $orderby the order to output the links. E.g. 'id', 'name', 'url', … … 1627 1627 /** 1628 1628 * Display the post content for the feed. 1629 1629 * 1630 * For encoding the htmlor the $encode_html parameter, there are three possible1630 * For encoding the HTML or the $encode_html parameter, there are three possible 1631 1631 * values. '0' will make urls footnotes and use make_url_footnote(). '1' will 1632 1632 * encode special characters and automatically display all of the content. The 1633 1633 * value of '2' will strip all HTML tags from the content. 1634 1634 * 1635 1635 * Also note that you cannot set the amount of words and not set the html 1636 * encoding. If that is the case, then the htmlencoding will default to 2,1636 * encoding. If that is the case, then the HTML encoding will default to 2, 1637 1637 * which will strip all HTML tags. 1638 1638 * 1639 1639 * To restrict the amount of words of the content, you can use the cut -
wp-includes/feed.php
538 538 * Tell whether the type is text, html, or xhtml, per RFC 4287 section 3.1. 539 539 * 540 540 * In the case of WordPress, text is defined as containing no markup, 541 * xhtml is defined as "well formed", and htmlas tag soup (i.e., the rest).541 * XHTML is defined as "well formed", and HTML as tag soup (i.e., the rest). 542 542 * 543 * Container div tags are added to xhtmlvalues, per section 3.1.1.3.543 * Container div tags are added to XHTML values, per section 3.1.1.3. 544 544 * 545 545 * @link http://www.atomenabled.org/developers/syndication/atom-format-spec.php#rfc.section.3.1 546 546 * -
wp-includes/formatting.php
928 928 * double if set to 'double' or both if otherwise set. 929 929 * Default is ENT_NOQUOTES. 930 930 * @param false|string $charset Optional. The character encoding of the string. Default false. 931 * @param bool $double_encode Optional. Whether to encode existing htmlentities. Default false.931 * @param bool $double_encode Optional. Whether to encode existing HTML entities. Default false. 932 932 * @return string The encoded text with HTML entities. 933 933 */ 934 934 function _wp_specialchars( $string, $quote_style = ENT_NOQUOTES, $charset = false, $double_encode = false ) { … … 5136 5136 } 5137 5137 5138 5138 /** 5139 * Safely extracts not more than the first $count characters from htmlstring.5139 * Safely extracts not more than the first $count characters from HTML string. 5140 5140 * 5141 5141 * UTF-8, tags and entities safe prefix extraction. Entities inside will *NOT* 5142 5142 * be counted as one character. For example & will be counted as 4, < as … … 6013 6013 * 6014 6014 * Saving hex colors without a hash puts the burden of adding the hash on the 6015 6015 * UI, which makes it difficult to use or upgrade to other color types such as 6016 * rgba, hsl, rgb, and htmlcolor names.6016 * rgba, hsl, rgb, and HTML color names. 6017 6017 * 6018 6018 * Returns either '', a 3 or 6 digit hex color (without a #), or null. 6019 6019 * -
wp-includes/functions.php
6559 6559 6560 6560 /** 6561 6561 * Retrieve a canonical form of the provided charset appropriate for passing to PHP 6562 * functions such as htmlspecialchars() and charset htmlattributes.6562 * functions such as htmlspecialchars() and charset HTML attributes. 6563 6563 * 6564 6564 * @since 3.6.0 6565 6565 * @access private -
wp-includes/general-template.php
3915 3915 * Retrieves the contents of the search WordPress query variable. 3916 3916 * 3917 3917 * The search query string is passed through esc_attr() to ensure that it is safe 3918 * for placing in an htmlattribute.3918 * for placing in an HTML attribute. 3919 3919 * 3920 3920 * @since 2.3.0 3921 3921 * … … 3943 3943 * Displays the contents of the search query variable. 3944 3944 * 3945 3945 * The search query string is passed through esc_attr() to ensure that it is safe 3946 * for placing in an htmlattribute.3946 * for placing in an HTML attribute. 3947 3947 * 3948 3948 * @since 2.1.0 3949 3949 */ … … 3959 3959 } 3960 3960 3961 3961 /** 3962 * Gets the language attributes for the htmltag.3962 * Gets the language attributes for the HTML tag. 3963 3963 * 3964 * Builds up a set of htmlattributes containing the text direction and language3964 * Builds up a set of HTML attributes containing the text direction and language 3965 3965 * information for the page. 3966 3966 * 3967 3967 * @since 4.3.0 3968 3968 * 3969 * @param string $doctype Optional. The type of htmldocument. Accepts 'xhtml' or 'html'. Default 'html'.3969 * @param string $doctype Optional. The type of HTML document. Accepts 'xhtml' or 'html'. Default 'html'. 3970 3970 */ 3971 3971 function get_language_attributes( $doctype = 'html' ) { 3972 3972 $attributes = array(); … … 3989 3989 $output = implode( ' ', $attributes ); 3990 3990 3991 3991 /** 3992 * Filters the language attributes for display in the htmltag.3992 * Filters the language attributes for display in the HTML tag. 3993 3993 * 3994 3994 * @since 2.5.0 3995 3995 * @since 4.3.0 Added the `$doctype` parameter. 3996 3996 * 3997 3997 * @param string $output A space-separated list of language attributes. 3998 * @param string $doctype The type of htmldocument (xhtml|html).3998 * @param string $doctype The type of HTML document (xhtml|html). 3999 3999 */ 4000 4000 return apply_filters( 'language_attributes', $output, $doctype ); 4001 4001 } 4002 4002 4003 4003 /** 4004 * Displays the language attributes for the htmltag.4004 * Displays the language attributes for the HTML tag. 4005 4005 * 4006 * Builds up a set of htmlattributes containing the text direction and language4006 * Builds up a set of HTML attributes containing the text direction and language 4007 4007 * information for the page. 4008 4008 * 4009 4009 * @since 2.1.0 4010 4010 * @since 4.3.0 Converted into a wrapper for get_language_attributes(). 4011 4011 * 4012 * @param string $doctype Optional. The type of htmldocument. Accepts 'xhtml' or 'html'. Default 'html'.4012 * @param string $doctype Optional. The type of HTML document. Accepts 'xhtml' or 'html'. Default 'html'. 4013 4013 */ 4014 4014 function language_attributes( $doctype = 'html' ) { 4015 4015 echo get_language_attributes( $doctype ); … … 4654 4654 } 4655 4655 4656 4656 /** 4657 * Outputs the htmlchecked attribute.4657 * Outputs the HTML checked attribute. 4658 4658 * 4659 4659 * Compares the first two arguments and if identical marks as checked 4660 4660 * … … 4663 4663 * @param mixed $checked One of the values to compare 4664 4664 * @param mixed $current (true) The other value to compare if not just true 4665 4665 * @param bool $echo Whether to echo or just return the string 4666 * @return string htmlattribute or empty string4666 * @return string HTML attribute or empty string 4667 4667 */ 4668 4668 function checked( $checked, $current = true, $echo = true ) { 4669 4669 return __checked_selected_helper( $checked, $current, $echo, 'checked' ); … … 4670 4670 } 4671 4671 4672 4672 /** 4673 * Outputs the htmlselected attribute.4673 * Outputs the HTML selected attribute. 4674 4674 * 4675 4675 * Compares the first two arguments and if identical marks as selected 4676 4676 * … … 4679 4679 * @param mixed $selected One of the values to compare 4680 4680 * @param mixed $current (true) The other value to compare if not just true 4681 4681 * @param bool $echo Whether to echo or just return the string 4682 * @return string htmlattribute or empty string4682 * @return string HTML attribute or empty string 4683 4683 */ 4684 4684 function selected( $selected, $current = true, $echo = true ) { 4685 4685 return __checked_selected_helper( $selected, $current, $echo, 'selected' ); … … 4686 4686 } 4687 4687 4688 4688 /** 4689 * Outputs the htmldisabled attribute.4689 * Outputs the HTML disabled attribute. 4690 4690 * 4691 4691 * Compares the first two arguments and if identical marks as disabled 4692 4692 * … … 4695 4695 * @param mixed $disabled One of the values to compare 4696 4696 * @param mixed $current (true) The other value to compare if not just true 4697 4697 * @param bool $echo Whether to echo or just return the string 4698 * @return string htmlattribute or empty string4698 * @return string HTML attribute or empty string 4699 4699 */ 4700 4700 function disabled( $disabled, $current = true, $echo = true ) { 4701 4701 return __checked_selected_helper( $disabled, $current, $echo, 'disabled' ); … … 4702 4702 } 4703 4703 4704 4704 /** 4705 * Outputs the htmlreadonly attribute.4705 * Outputs the HTML readonly attribute. 4706 4706 * 4707 4707 * Compares the first two arguments and if identical marks as readonly 4708 4708 * … … 4711 4711 * @param mixed $readonly One of the values to compare 4712 4712 * @param mixed $current (true) The other value to compare if not just true 4713 4713 * @param bool $echo Whether to echo or just return the string 4714 * @return string htmlattribute or empty string4714 * @return string HTML attribute or empty string 4715 4715 */ 4716 4716 function readonly( $readonly, $current = true, $echo = true ) { 4717 4717 return __checked_selected_helper( $readonly, $current, $echo, 'readonly' ); … … 4729 4729 * @param mixed $current (true) The other value to compare if not just true 4730 4730 * @param bool $echo Whether to echo or just return the string 4731 4731 * @param string $type The type of checked|selected|disabled|readonly we are doing 4732 * @return string htmlattribute or empty string4732 * @return string HTML attribute or empty string 4733 4733 */ 4734 4734 function __checked_selected_helper( $helper, $current, $echo, $type ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionDoubleUnderscore,PHPCompatibility.FunctionNameRestrictions.ReservedFunctionNames.FunctionDoubleUnderscore 4735 4735 if ( (string) $helper === (string) $current ) { -
wp-includes/kses.php
2390 2390 } 2391 2391 2392 2392 /** 2393 * Helper function to add global attributes to a tag in the allowed htmllist.2393 * Helper function to add global attributes to a tag in the allowed HTML list. 2394 2394 * 2395 2395 * @since 3.5.0 2396 2396 * @since 5.0.0 Add support for `data-*` wildcard attributes. -
wp-includes/SimplePie/Parser.php
655 655 656 656 private function declare_html_entities() { 657 657 // This is required because the RSS specification says that entity-encoded 658 // htmlis allowed, but the xml specification says they must be declared.658 // HTML is allowed, but the xml specification says they must be declared. 659 659 return '<!DOCTYPE html [ <!ENTITY nbsp " "> <!ENTITY iexcl "¡"> <!ENTITY cent "¢"> <!ENTITY pound "£"> <!ENTITY curren "¤"> <!ENTITY yen "¥"> <!ENTITY brvbar "¦"> <!ENTITY sect "§"> <!ENTITY uml "¨"> <!ENTITY copy "©"> <!ENTITY ordf "ª"> <!ENTITY laquo "«"> <!ENTITY not "¬"> <!ENTITY shy "­"> <!ENTITY reg "®"> <!ENTITY macr "¯"> <!ENTITY deg "°"> <!ENTITY plusmn "±"> <!ENTITY sup2 "²"> <!ENTITY sup3 "³"> <!ENTITY acute "´"> <!ENTITY micro "µ"> <!ENTITY para "¶"> <!ENTITY middot "·"> <!ENTITY cedil "¸"> <!ENTITY sup1 "¹"> <!ENTITY ordm "º"> <!ENTITY raquo "»"> <!ENTITY frac14 "¼"> <!ENTITY frac12 "½"> <!ENTITY frac34 "¾"> <!ENTITY iquest "¿"> <!ENTITY Agrave "À"> <!ENTITY Aacute "Á"> <!ENTITY Acirc "Â"> <!ENTITY Atilde "Ã"> <!ENTITY Auml "Ä"> <!ENTITY Aring "Å"> <!ENTITY AElig "Æ"> <!ENTITY Ccedil "Ç"> <!ENTITY Egrave "È"> <!ENTITY Eacute "É"> <!ENTITY Ecirc "Ê"> <!ENTITY Euml "Ë"> <!ENTITY Igrave "Ì"> <!ENTITY Iacute "Í"> <!ENTITY Icirc "Î"> <!ENTITY Iuml "Ï"> <!ENTITY ETH "Ð"> <!ENTITY Ntilde "Ñ"> <!ENTITY Ograve "Ò"> <!ENTITY Oacute "Ó"> <!ENTITY Ocirc "Ô"> <!ENTITY Otilde "Õ"> <!ENTITY Ouml "Ö"> <!ENTITY times "×"> <!ENTITY Oslash "Ø"> <!ENTITY Ugrave "Ù"> <!ENTITY Uacute "Ú"> <!ENTITY Ucirc "Û"> <!ENTITY Uuml "Ü"> <!ENTITY Yacute "Ý"> <!ENTITY THORN "Þ"> <!ENTITY szlig "ß"> <!ENTITY agrave "à"> <!ENTITY aacute "á"> <!ENTITY acirc "â"> <!ENTITY atilde "ã"> <!ENTITY auml "ä"> <!ENTITY aring "å"> <!ENTITY aelig "æ"> <!ENTITY ccedil "ç"> <!ENTITY egrave "è"> <!ENTITY eacute "é"> <!ENTITY ecirc "ê"> <!ENTITY euml "ë"> <!ENTITY igrave "ì"> <!ENTITY iacute "í"> <!ENTITY icirc "î"> <!ENTITY iuml "ï"> <!ENTITY eth "ð"> <!ENTITY ntilde "ñ"> <!ENTITY ograve "ò"> <!ENTITY oacute "ó"> <!ENTITY ocirc "ô"> <!ENTITY otilde "õ"> <!ENTITY ouml "ö"> <!ENTITY divide "÷"> <!ENTITY oslash "ø"> <!ENTITY ugrave "ù"> <!ENTITY uacute "ú"> <!ENTITY ucirc "û"> <!ENTITY uuml "ü"> <!ENTITY yacute "ý"> <!ENTITY thorn "þ"> <!ENTITY yuml "ÿ"> <!ENTITY OElig "Œ"> <!ENTITY oelig "œ"> <!ENTITY Scaron "Š"> <!ENTITY scaron "š"> <!ENTITY Yuml "Ÿ"> <!ENTITY fnof "ƒ"> <!ENTITY circ "ˆ"> <!ENTITY tilde "˜"> <!ENTITY Alpha "Α"> <!ENTITY Beta "Β"> <!ENTITY Gamma "Γ"> <!ENTITY Epsilon "Ε"> <!ENTITY Zeta "Ζ"> <!ENTITY Eta "Η"> <!ENTITY Theta "Θ"> <!ENTITY Iota "Ι"> <!ENTITY Kappa "Κ"> <!ENTITY Lambda "Λ"> <!ENTITY Mu "Μ"> <!ENTITY Nu "Ν"> <!ENTITY Xi "Ξ"> <!ENTITY Omicron "Ο"> <!ENTITY Pi "Π"> <!ENTITY Rho "Ρ"> <!ENTITY Sigma "Σ"> <!ENTITY Tau "Τ"> <!ENTITY Upsilon "Υ"> <!ENTITY Phi "Φ"> <!ENTITY Chi "Χ"> <!ENTITY Psi "Ψ"> <!ENTITY Omega "Ω"> <!ENTITY alpha "α"> <!ENTITY beta "β"> <!ENTITY gamma "γ"> <!ENTITY delta "δ"> <!ENTITY epsilon "ε"> <!ENTITY zeta "ζ"> <!ENTITY eta "η"> <!ENTITY theta "θ"> <!ENTITY iota "ι"> <!ENTITY kappa "κ"> <!ENTITY lambda "λ"> <!ENTITY mu "μ"> <!ENTITY nu "ν"> <!ENTITY xi "ξ"> <!ENTITY omicron "ο"> <!ENTITY pi "π"> <!ENTITY rho "ρ"> <!ENTITY sigmaf "ς"> <!ENTITY sigma "σ"> <!ENTITY tau "τ"> <!ENTITY upsilon "υ"> <!ENTITY phi "φ"> <!ENTITY chi "χ"> <!ENTITY psi "ψ"> <!ENTITY omega "ω"> <!ENTITY thetasym "ϑ"> <!ENTITY upsih "ϒ"> <!ENTITY piv "ϖ"> <!ENTITY ensp " "> <!ENTITY emsp " "> <!ENTITY thinsp " "> <!ENTITY zwnj "‌"> <!ENTITY zwj "‍"> <!ENTITY lrm "‎"> <!ENTITY rlm "‏"> <!ENTITY ndash "–"> <!ENTITY mdash "—"> <!ENTITY lsquo "‘"> <!ENTITY rsquo "’"> <!ENTITY sbquo "‚"> <!ENTITY ldquo "“"> <!ENTITY rdquo "”"> <!ENTITY bdquo "„"> <!ENTITY dagger "†"> <!ENTITY Dagger "‡"> <!ENTITY bull "•"> <!ENTITY hellip "…"> <!ENTITY permil "‰"> <!ENTITY prime "′"> <!ENTITY Prime "″"> <!ENTITY lsaquo "‹"> <!ENTITY rsaquo "›"> <!ENTITY oline "‾"> <!ENTITY frasl "⁄"> <!ENTITY euro "€"> <!ENTITY image "ℑ"> <!ENTITY weierp "℘"> <!ENTITY real "ℜ"> <!ENTITY trade "™"> <!ENTITY alefsym "ℵ"> <!ENTITY larr "←"> <!ENTITY uarr "↑"> <!ENTITY rarr "→"> <!ENTITY darr "↓"> <!ENTITY harr "↔"> <!ENTITY crarr "↵"> <!ENTITY lArr "⇐"> <!ENTITY uArr "⇑"> <!ENTITY rArr "⇒"> <!ENTITY dArr "⇓"> <!ENTITY hArr "⇔"> <!ENTITY forall "∀"> <!ENTITY part "∂"> <!ENTITY exist "∃"> <!ENTITY empty "∅"> <!ENTITY nabla "∇"> <!ENTITY isin "∈"> <!ENTITY notin "∉"> <!ENTITY ni "∋"> <!ENTITY prod "∏"> <!ENTITY sum "∑"> <!ENTITY minus "−"> <!ENTITY lowast "∗"> <!ENTITY radic "√"> <!ENTITY prop "∝"> <!ENTITY infin "∞"> <!ENTITY ang "∠"> <!ENTITY and "∧"> <!ENTITY or "∨"> <!ENTITY cap "∩"> <!ENTITY cup "∪"> <!ENTITY int "∫"> <!ENTITY there4 "∴"> <!ENTITY sim "∼"> <!ENTITY cong "≅"> <!ENTITY asymp "≈"> <!ENTITY ne "≠"> <!ENTITY equiv "≡"> <!ENTITY le "≤"> <!ENTITY ge "≥"> <!ENTITY sub "⊂"> <!ENTITY sup "⊃"> <!ENTITY nsub "⊄"> <!ENTITY sube "⊆"> <!ENTITY supe "⊇"> <!ENTITY oplus "⊕"> <!ENTITY otimes "⊗"> <!ENTITY perp "⊥"> <!ENTITY sdot "⋅"> <!ENTITY lceil "⌈"> <!ENTITY rceil "⌉"> <!ENTITY lfloor "⌊"> <!ENTITY rfloor "⌋"> <!ENTITY lang "〈"> <!ENTITY rang "〉"> <!ENTITY loz "◊"> <!ENTITY spades "♠"> <!ENTITY clubs "♣"> <!ENTITY hearts "♥"> <!ENTITY diams "♦"> ]>'; 660 660 } 661 661 }