]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-includes/kses.php
WordPress 4.0.1
[autoinstalls/wordpress.git] / wp-includes / kses.php
index caacd29ed7d42924a41a4d34371bde41b6612096..6696161cfd4794854a46fbd1f15f5835cd195e48 100644 (file)
 if ( ! defined( 'CUSTOM_TAGS' ) )
        define( 'CUSTOM_TAGS', false );
 
+// Ensure that these variables are added to the global namespace
+// (e.g. if using namespaces / autoload in the current PHP environment).
+global $allowedposttags, $allowedtags, $allowedentitynames;
+
 if ( ! CUSTOM_TAGS ) {
        /**
         * Kses global for default allowable HTML tags.
@@ -119,6 +123,7 @@ if ( ! CUSTOM_TAGS ) {
                        'datetime' => true,
                ),
                'dd' => array(),
+               'dfn' => array(),
                'details' => array(
                        'align' => true,
                        'dir' => true,
@@ -235,6 +240,7 @@ if ( ! CUSTOM_TAGS ) {
                'map' => array(
                        'name' => true,
                ),
+               'mark' => array(),
                'menu' => array(
                        'type' => true,
                ),
@@ -257,6 +263,7 @@ if ( ! CUSTOM_TAGS ) {
                        'cite' => true,
                ),
                's' => array(),
+               'samp' => array(),
                'span' => array(
                        'dir' => true,
                        'align' => true,
@@ -446,6 +453,8 @@ if ( ! CUSTOM_TAGS ) {
                'nsub',    'sube',   'supe',    'oplus',  'otimes', 'perp',
                'sdot',    'lceil',  'rceil',   'lfloor', 'rfloor', 'lang',
                'rang',    'loz',    'spades',  'clubs',  'hearts', 'diams',
+               'sup1',    'sup2',   'sup3',    'frac14', 'frac12', 'frac34',
+               'there4',
        );
 
        $allowedposttags = array_map( '_wp_add_global_attributes', $allowedposttags );
@@ -496,27 +505,42 @@ function wp_kses( $string, $allowed_html, $allowed_protocols = array() ) {
 function wp_kses_allowed_html( $context = '' ) {
        global $allowedposttags, $allowedtags, $allowedentitynames;
 
-       if ( is_array( $context ) )
+       if ( is_array( $context ) ) {
+               /**
+                * Filter HTML elements allowed for a given context.
+                *
+                * @since 3.5.0
+                *
+                * @param string $tags    Allowed tags, attributes, and/or entities.
+                * @param string $context Context to judge allowed tags by. Allowed values are 'post',
+                *                        'data', 'strip', 'entities', 'explicit', or the name of a filter.
+                */
                return apply_filters( 'wp_kses_allowed_html', $context, 'explicit' );
+       }
 
        switch ( $context ) {
                case 'post':
+                       /** This filter is documented in wp-includes/kses.php */
                        return apply_filters( 'wp_kses_allowed_html', $allowedposttags, $context );
                        break;
                case 'user_description':
                case 'pre_user_description':
                        $tags = $allowedtags;
                        $tags['a']['rel'] = true;
+                       /** This filter is documented in wp-includes/kses.php */
                        return apply_filters( 'wp_kses_allowed_html', $tags, $context );
                        break;
                case 'strip':
+                       /** This filter is documented in wp-includes/kses.php */
                        return apply_filters( 'wp_kses_allowed_html', array(), $context );
                        break;
                case 'entities':
+                       /** This filter is documented in wp-includes/kses.php */
                        return apply_filters( 'wp_kses_allowed_html', $allowedentitynames, $context);
                        break;
                case 'data':
                default:
+                       /** This filter is documented in wp-includes/kses.php */
                        return apply_filters( 'wp_kses_allowed_html', $allowedtags, $context );
        }
 }
@@ -535,7 +559,16 @@ function wp_kses_allowed_html( $context = '' ) {
  * @return string Filtered content through 'pre_kses' hook
  */
 function wp_kses_hook( $string, $allowed_html, $allowed_protocols ) {
-       $string = apply_filters('pre_kses', $string, $allowed_html, $allowed_protocols);
+       /**
+        * Filter content to be run through kses.
+        *
+        * @since 2.3.0
+        *
+        * @param string $string            Content to run through kses.
+        * @param array  $allowed_html      Allowed HTML elements.
+        * @param array  $allowed_protocols Allowed protocol in links.
+        */
+       $string = apply_filters( 'pre_kses', $string, $allowed_html, $allowed_protocols );
        return $string;
 }
 
@@ -758,10 +791,10 @@ function wp_kses_hair($attr, $allowed_protocols) {
                switch ($mode) {
                        case 0 : # attribute name, href for instance
 
-                               if (preg_match('/^([-a-zA-Z]+)/', $attr, $match)) {
+                               if ( preg_match('/^([-a-zA-Z:]+)/', $attr, $match ) ) {
                                        $attrname = $match[1];
                                        $working = $mode = 1;
-                                       $attr = preg_replace('/^[-a-zA-Z]+/', '', $attr);
+                                       $attr = preg_replace( '/^[-a-zA-Z:]+/', '', $attr );
                                }
 
                                break;
@@ -958,7 +991,9 @@ function wp_kses_bad_protocol($string, $allowed_protocols) {
 }
 
 /**
- * Removes any null characters in $string.
+ * Removes any invalid control characters in $string.
+ *
+ * Also removes any instance of the '\0' string.
  *
  * @since 1.0.0
  *
@@ -966,7 +1001,7 @@ function wp_kses_bad_protocol($string, $allowed_protocols) {
  * @return string
  */
 function wp_kses_no_null($string) {
-       $string = preg_replace('/\0+/', '', $string);
+       $string = preg_replace('/[\x00-\x08\x0B\x0C\x0E-\x1F]/', '', $string);
        $string = preg_replace('/(\\\\0)+/', '', $string);
 
        return $string;
@@ -1119,7 +1154,7 @@ function wp_kses_normalize_entities($string) {
 
        # Change back the allowed entities in our entity whitelist
 
-       $string = preg_replace_callback('/&([A-Za-z]{2,8});/', 'wp_kses_named_entities', $string);
+       $string = preg_replace_callback('/&([A-Za-z]{2,8}[0-9]{0,2});/', 'wp_kses_named_entities', $string);
        $string = preg_replace_callback('/&#(0*[0-9]{1,7});/', 'wp_kses_normalize_entities2', $string);
        $string = preg_replace_callback('/&#[Xx](0*[0-9A-Fa-f]{1,6});/', 'wp_kses_normalize_entities3', $string);
 
@@ -1405,10 +1440,18 @@ function safecss_filter_attr( $css, $deprecated = '' ) {
        $css = wp_kses_no_null($css);
        $css = str_replace(array("\n","\r","\t"), '', $css);
 
-       if ( preg_match( '%[\\(&=}]|/\*%', $css ) ) // remove any inline css containing \ ( & } = or comments
+       if ( preg_match( '%[\\\\(&=}]|/\*%', $css ) ) // remove any inline css containing \ ( & } = or comments
                return '';
 
        $css_array = explode( ';', trim( $css ) );
+
+       /**
+        * Filter list of allowed CSS attributes.
+        *
+        * @since 2.8.1
+        *
+        * @param array $attr List of allowed CSS attributes.
+        */
        $allowed_attr = apply_filters( 'safe_style_css', array( 'text-align', 'margin', 'color', 'float',
        'border', 'background', 'background-color', 'border-bottom', 'border-bottom-color',
        'border-bottom-style', 'border-bottom-width', 'border-collapse', 'border-color', 'border-left',
@@ -1462,6 +1505,7 @@ function _wp_add_global_attributes( $value ) {
                'id' => true,
                'style' => true,
                'title' => true,
+               'role' => true,
        );
 
        if ( true === $value )