Changeset 41026
- Timestamp:
- 07/11/2017 12:53:33 AM (8 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/js/shortcode.js
r38116 r41026 135 135 // 6. an unquoted value. 136 136 // 7. A numeric attribute in double quotes. 137 // 8. An unquoted numeric attribute. 138 pattern = /([\w-]+)\s*=\s*"([^"]*)"(?:\s|$)|([\w-]+)\s*=\s*'([^']*)'(?:\s|$)|([\w-]+)\s*=\s*([^\s'"]+)(?:\s|$)|"([^"]*)"(?:\s|$)|(\S+)(?:\s|$)/g; 137 // 8. A numeric attribute in single quotes. 138 // 9. An unquoted numeric attribute. 139 pattern = /([\w-]+)\s*=\s*"([^"]*)"(?:\s|$)|([\w-]+)\s*=\s*'([^']*)'(?:\s|$)|([\w-]+)\s*=\s*([^\s'"]+)(?:\s|$)|"([^"]*)"(?:\s|$)|'([^']*)'(?:\s|$)|(\S+)(?:\s|$)/g; 139 140 140 141 // Map zero-width spaces to actual spaces. … … 153 154 } else if ( match[8] ) { 154 155 numeric.push( match[8] ); 156 } else if ( match[9] ) { 157 numeric.push( match[9] ); 155 158 } 156 159 } -
trunk/src/wp-includes/shortcodes.php
r40937 r41026 488 488 */ 489 489 function get_shortcode_atts_regex() { 490 return '/([\w-]+)\s*=\s*"([^"]*)"(?:\s|$)|([\w-]+)\s*=\s*\'([^\']*)\'(?:\s|$)|([\w-]+)\s*=\s*([^\s\'"]+)(?:\s|$)|"([^"]*)"(?:\s|$)| (\S+)(?:\s|$)/';490 return '/([\w-]+)\s*=\s*"([^"]*)"(?:\s|$)|([\w-]+)\s*=\s*\'([^\']*)\'(?:\s|$)|([\w-]+)\s*=\s*([^\s\'"]+)(?:\s|$)|"([^"]*)"(?:\s|$)|\'([^\']*)\'(?:\s|$)|(\S+)(?:\s|$)/'; 491 491 } 492 492 … … 520 520 elseif (isset($m[7]) && strlen($m[7])) 521 521 $atts[] = stripcslashes($m[7]); 522 elseif (isset($m[8]) )522 elseif (isset($m[8]) && strlen($m[8])) 523 523 $atts[] = stripcslashes($m[8]); 524 elseif (isset($m[9])) 525 $atts[] = stripcslashes($m[9]); 524 526 } 525 527 -
trunk/tests/phpunit/tests/shortcode.php
r38877 r41026 841 841 return wp_json_encode( $arr ); 842 842 } 843 844 /** 845 * @ticket 37304 846 * 847 * Test 'value' syntax for empty attributes 848 */ 849 function test_empty_single_quote_attribute() { 850 $out = do_shortcode( '[test-shortcode-tag a="foo" b=\'bar\' c=baz foo \'bar\' "baz" ]test empty atts[/test-shortcode-tag]' ); 851 $this->assertEquals( array( 'a' => 'foo', 'b' => 'bar', 'c' => 'baz', 0 => 'foo', 1 => 'bar', 2 => 'baz' ), $this->atts ); 852 } 853 854 /** 855 * @ticket 37304 856 */ 857 function test_positional_atts_single_quotes() { 858 $out = do_shortcode( "[test-shortcode-tag 'something in quotes' 'something else']" ); 859 $this->assertEquals( '', $out ); 860 $this->assertEquals( array( 0 => 'something in quotes', 1 => 'something else' ), $this->atts ); 861 $this->assertEquals( 'test-shortcode-tag', $this->tagname ); 862 } 863 864 /** 865 * @ticket 37304 866 */ 867 function test_positional_atts_mixed_quotes() { 868 $out = do_shortcode( "[test-shortcode-tag 'something in quotes' \"something else\" 123 foo bar='baz' example=\"test\" ]" ); 869 $this->assertEquals( '', $out ); 870 $this->assertEquals( array( 0 => 'something in quotes', 1 => 'something else', 2 => '123', 3 => 'foo', 'bar' => 'baz', 'example' => 'test'), $this->atts ); 871 $this->assertEquals( 'test-shortcode-tag', $this->tagname ); 872 } 843 873 } -
trunk/tests/qunit/wp-includes/js/shortcode.js
r28223 r41026 197 197 deepEqual( wp.shortcode.attrs('foo not="a blocker" bar baz'), expected, 'attr parsed numeric attributes'); 198 198 }); 199 200 test( 'attrs() should return numeric attributes created with single, double, and no quotes', function() { 201 var expected = { 202 'named': {}, 'numeric' : ['foo', 'bar', 'baz'] 203 }; 204 205 deepEqual( wp.shortcode.attrs('foo "bar" \'baz\''), expected, 'attr parsed numeric attributes'); 206 }); 207 208 test( 'attrs() should return mixed attributes created with single, double, and no quotes', function() { 209 var expected = { 210 'named': { a: 'foo', b: 'bar', c: 'baz' }, 'numeric' : ['foo', 'bar', 'baz'] 211 }; 212 213 deepEqual( wp.shortcode.attrs('a="foo" b=\'bar\' c=baz foo "bar" \'baz\''), expected, 'attr parsed numeric attributes'); 214 }); 199 215 });
Note: See TracChangeset
for help on using the changeset viewer.