Make WordPress Core

Changeset 13021


Ignore:
Timestamp:
02/08/2010 04:15:13 PM (15 years ago)
Author:
ryan
Message:

Use oEmbed for PollDaddy. Props Viper007Bond. fixes #12174

Location:
trunk/wp-includes
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/class-oembed.php

    r12325 r13021  
    3838        // Add to this list using the wp_oembed_add_provider() function (see it's PHPDoc for details).
    3939        $this->providers = apply_filters( 'oembed_providers', array(
    40             '#http://(www\.)?youtube.com/watch.*#i' => array( 'http://www.youtube.com/oembed',            true  ),
    41             'http://blip.tv/file/*'                 => array( 'http://blip.tv/oembed/',                   false ),
    42             '#http://(www\.)?vimeo\.com/.*#i'       => array( 'http://www.vimeo.com/api/oembed.{format}', true  ),
    43             '#http://(www\.)?dailymotion\.com/.*#i' => array( 'http://www.dailymotion.com/api/oembed',    true  ),
    44             '#http://(www\.)?flickr\.com/.*#i'      => array( 'http://www.flickr.com/services/oembed/',   true  ),
    45             '#http://(www\.)?hulu\.com/watch/.*#i'  => array( 'http://www.hulu.com/api/oembed.{format}',  true  ),
    46             '#http://(www\.)?viddler\.com/.*#i'     => array( 'http://lab.viddler.com/services/oembed/',  true  ),
    47             'http://qik.com/*'                      => array( 'http://qik.com/api/oembed.{format}',       false ),
    48             'http://revision3.com/*'                => array( 'http://revision3.com/api/oembed/',         false ),
    49             'http://i*.photobucket.com/albums/*'    => array( 'http://photobucket.com/oembed',            false ),
    50             'http://gi*.photobucket.com/groups/*'   => array( 'http://photobucket.com/oembed',            false ),
    51             '#http://(www\.)?scribd\.com/.*#i'      => array( 'http://www.scribd.com/services/oembed',    true  ),
    52             'http://wordpress.tv/*'                 => array( 'http://wordpress.tv/oembed/',              false ),
     40            '#http://(www\.)?youtube.com/watch.*#i'         => array( 'http://www.youtube.com/oembed',            true  ),
     41            'http://blip.tv/file/*'                         => array( 'http://blip.tv/oembed/',                   false ),
     42            '#http://(www\.)?vimeo\.com/.*#i'               => array( 'http://www.vimeo.com/api/oembed.{format}', true  ),
     43            '#http://(www\.)?dailymotion\.com/.*#i'         => array( 'http://www.dailymotion.com/api/oembed',    true  ),
     44            '#http://(www\.)?flickr\.com/.*#i'              => array( 'http://www.flickr.com/services/oembed/',   true  ),
     45            '#http://(www\.)?hulu\.com/watch/.*#i'          => array( 'http://www.hulu.com/api/oembed.{format}',  true  ),
     46            '#http://(www\.)?viddler\.com/.*#i'             => array( 'http://lab.viddler.com/services/oembed/',  true  ),
     47            'http://qik.com/*'                              => array( 'http://qik.com/api/oembed.{format}',       false ),
     48            'http://revision3.com/*'                        => array( 'http://revision3.com/api/oembed/',         false ),
     49            'http://i*.photobucket.com/albums/*'            => array( 'http://photobucket.com/oembed',            false ),
     50            'http://gi*.photobucket.com/groups/*'           => array( 'http://photobucket.com/oembed',            false ),
     51            '#http://(www\.)?scribd\.com/.*#i'              => array( 'http://www.scribd.com/services/oembed',    true  ),
     52            'http://wordpress.tv/*'                         => array( 'http://wordpress.tv/oembed/',              false ),
     53            '#http://(answers|surveys)\.polldaddy.com/.*#i' => array( 'http://polldaddy.com/oembed/',             true ),
    5354        ) );
    5455
  • trunk/wp-includes/default-embeds.php

    r12325 r13021  
    3333wp_embed_register_handler( 'googlevideo', '#http://video\.google\.([A-Za-z.]{2,5})/videoplay\?docid=([\d-]+)(.*?)#i', 'wp_embed_handler_googlevideo' );
    3434
    35 /**
    36  * The PollDaddy.com embed handler callback. PollDaddy does not support oEmbed, at least not yet.
    37  *
    38  * @see WP_Embed::register_handler()
    39  * @see WP_Embed::shortcode()
    40  *
    41  * @param array $matches The regex matches from the provided regex when calling {@link wp_embed_register_handler()}.
    42  * @param array $attr Embed attributes.
    43  * @param string $url The original URL that was matched by the regex.
    44  * @param array $rawattr The original unmodified attributes.
    45  * @return string The embed HTML.
    46  */
    47 function wp_embed_handler_polldaddy( $matches, $attr, $url, $rawattr ) {
    48     return apply_filters( 'embed_polldaddy', '<script type="text/javascript" charset="utf8" src="http://s3.polldaddy.com/p/' . esc_attr($matches[1]) . '"></script>', $matches, $attr, $url, $rawattr );
    49 }
    50 wp_embed_register_handler( 'polldaddy', '#http://answers.polldaddy.com/poll/(\d+)(.*?)#i', 'wp_embed_handler_polldaddy' );
    51 
    5235?>
Note: See TracChangeset for help on using the changeset viewer.