<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!--
#msg dl { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre, #msg p { overflow: auto; background: #ffc; border: 1px #fc0 solid; padding: 6px; }
#msg ul { overflow: auto; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<title>[12023] trunk: Embeds.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/12023">12023</a></dd>
<dt>Author</dt> <dd>ryan</dd>
<dt>Date</dt> <dd>2009-10-13 17:04:22 +0000 (Tue, 13 Oct 2009)</dd>
</dl>

<h3>Log Message</h3>
<pre>Embeds. Props Viper007Bond. see <a href="http://trac.wordpress.org/ticket/10337">#10337</a></pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpadminadminajaxphp">trunk/wp-admin/admin-ajax.php</a></li>
<li><a href="#trunkwpadminincludesschemaphp">trunk/wp-admin/includes/schema.php</a></li>
<li><a href="#trunkwpadminoptionsmediaphp">trunk/wp-admin/options-media.php</a></li>
<li><a href="#trunkwpadminoptionsphp">trunk/wp-admin/options.php</a></li>
<li><a href="#trunkwpincludescapabilitiesphp">trunk/wp-includes/capabilities.php</a></li>
<li><a href="#trunkwpincludesdefaultfiltersphp">trunk/wp-includes/default-filters.php</a></li>
<li><a href="#trunkwpincludesformattingphp">trunk/wp-includes/formatting.php</a></li>
<li><a href="#trunkwpincludesfunctionsphp">trunk/wp-includes/functions.php</a></li>
<li><a href="#trunkwpincludesmediaphp">trunk/wp-includes/media.php</a></li>
</ul>

<h3>Added Paths</h3>
<ul>
<li><a href="#trunkwpincludesclassoembedphp">trunk/wp-includes/class-oembed.php</a></li>
<li><a href="#trunkwpincludesdefaultembedsphp">trunk/wp-includes/default-embeds.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpadminadminajaxphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/admin-ajax.php (12022 => 12023)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/admin-ajax.php        2009-10-13 10:02:42 UTC (rev 12022)
+++ trunk/wp-admin/admin-ajax.php        2009-10-13 17:04:22 UTC (rev 12023)
</span><span class="lines">@@ -124,6 +124,10 @@
</span><span class="cx"> 
</span><span class="cx">         die();
</span><span class="cx">         break;
</span><ins>+case 'oembed-cache' :
+        $return = ( $wp_embed-&gt;cache_oembed( $_GET['post'] ) ) ? '1' : '0';
+        die( $return );
+        break;
</ins><span class="cx"> default :
</span><span class="cx">         do_action( 'wp_ajax_' . $_GET['action'] );
</span><span class="cx">         die('0');
</span></span></pre></div>
<a id="trunkwpadminincludesschemaphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/includes/schema.php (12022 => 12023)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/includes/schema.php        2009-10-13 10:02:42 UTC (rev 12022)
+++ trunk/wp-admin/includes/schema.php        2009-10-13 17:04:22 UTC (rev 12023)
</span><span class="lines">@@ -313,7 +313,13 @@
</span><span class="cx">         'widget_rss' =&gt; array(),
</span><span class="cx"> 
</span><span class="cx">         // 2.8
</span><del>-        'timezone_string' =&gt; ''
</del><ins>+        'timezone_string' =&gt; '',
+
+        // 2.9
+        'embed_useoembed' =&gt; 1,
+        'embed_autourls' =&gt; 1,
+        'embed_size_w' =&gt; '',
+        'embed_size_h' =&gt; 600,
</ins><span class="cx">         );
</span><span class="cx"> 
</span><span class="cx">         // Set autoload to no for these options
</span></span></pre></div>
<a id="trunkwpadminoptionsmediaphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/options-media.php (12022 => 12023)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/options-media.php        2009-10-13 10:02:42 UTC (rev 12022)
+++ trunk/wp-admin/options-media.php        2009-10-13 17:04:22 UTC (rev 12023)
</span><span class="lines">@@ -44,7 +44,7 @@
</span><span class="cx"> 
</span><span class="cx"> &lt;tr valign=&quot;top&quot;&gt;
</span><span class="cx"> &lt;th scope=&quot;row&quot;&gt;&lt;?php _e('Medium size') ?&gt;&lt;/th&gt;
</span><del>-&lt;td&gt;&lt;fieldset&gt;&lt;legend class=&quot;screen-reader-text&quot;&gt;&lt;span&gt;&lt;?php _e('Medium size') ?&gt;&lt;/span&gt;&lt;/legend&gt;
</del><ins>+&lt;td&gt;&lt;fieldset&gt;&lt;legend class=&quot;screen-reader-text&quot;&gt;&lt;span&gt;&lt;?php _e('Medium size'); ?&gt;&lt;/span&gt;&lt;/legend&gt;
</ins><span class="cx"> &lt;label for=&quot;medium_size_w&quot;&gt;&lt;?php _e('Max Width'); ?&gt;&lt;/label&gt;
</span><span class="cx"> &lt;input name=&quot;medium_size_w&quot; type=&quot;text&quot; id=&quot;medium_size_w&quot; value=&quot;&lt;?php form_option('medium_size_w'); ?&gt;&quot; class=&quot;small-text&quot; /&gt;
</span><span class="cx"> &lt;label for=&quot;medium_size_h&quot;&gt;&lt;?php _e('Max Height'); ?&gt;&lt;/label&gt;
</span><span class="lines">@@ -54,7 +54,7 @@
</span><span class="cx"> 
</span><span class="cx"> &lt;tr valign=&quot;top&quot;&gt;
</span><span class="cx"> &lt;th scope=&quot;row&quot;&gt;&lt;?php _e('Large size') ?&gt;&lt;/th&gt;
</span><del>-&lt;td&gt;&lt;fieldset&gt;&lt;legend class=&quot;screen-reader-text&quot;&gt;&lt;span&gt;&lt;?php _e('Large size') ?&gt;&lt;/span&gt;&lt;/legend&gt;
</del><ins>+&lt;td&gt;&lt;fieldset&gt;&lt;legend class=&quot;screen-reader-text&quot;&gt;&lt;span&gt;&lt;?php _e('Large size'); ?&gt;&lt;/span&gt;&lt;/legend&gt;
</ins><span class="cx"> &lt;label for=&quot;large_size_w&quot;&gt;&lt;?php _e('Max Width'); ?&gt;&lt;/label&gt;
</span><span class="cx"> &lt;input name=&quot;large_size_w&quot; type=&quot;text&quot; id=&quot;large_size_w&quot; value=&quot;&lt;?php form_option('large_size_w'); ?&gt;&quot; class=&quot;small-text&quot; /&gt;
</span><span class="cx"> &lt;label for=&quot;large_size_h&quot;&gt;&lt;?php _e('Max Height'); ?&gt;&lt;/label&gt;
</span><span class="lines">@@ -65,6 +65,38 @@
</span><span class="cx"> &lt;?php do_settings_fields('media', 'default'); ?&gt;
</span><span class="cx"> &lt;/table&gt;
</span><span class="cx"> 
</span><ins>+&lt;h3&gt;&lt;?php _e('Embeds') ?&gt;&lt;/h3&gt;
+
+&lt;table class=&quot;form-table&quot;&gt;
+
+&lt;tr valign=&quot;top&quot;&gt;
+&lt;th scope=&quot;row&quot;&gt;&lt;?php _e('oEmbed'); ?&gt;&lt;/th&gt;
+&lt;td&gt;&lt;fieldset&gt;&lt;legend class=&quot;screen-reader-text&quot;&gt;&lt;span&gt;&lt;?php printf( __('Use &lt;a href=&quot;%s&quot;&gt;oEmbed&lt;/a&gt; to assist in rich content embedding'), 'http://codex.wordpress.org/oEmbed' ); ?&gt;&lt;/span&gt;&lt;/legend&gt;
+&lt;label for=&quot;embed_useoembed&quot;&gt;&lt;input name=&quot;embed_useoembed&quot; type=&quot;checkbox&quot; id=&quot;embed_useoembed&quot; value=&quot;1&quot; &lt;?php checked( '1', get_option('embed_useoembed') ); ?&gt;/&gt; &lt;?php printf( __('Use &lt;a href=&quot;%s&quot;&gt;oEmbed&lt;/a&gt; to assist in rich content embedding'), 'http://codex.wordpress.org/oEmbed' ); ?&gt;&lt;/label&gt;
+&lt;/fieldset&gt;&lt;/td&gt;
+&lt;/tr&gt;
+
+&lt;tr valign=&quot;top&quot;&gt;
+&lt;th scope=&quot;row&quot;&gt;&lt;?php _e('Auto-embeds'); ?&gt;&lt;/th&gt;
+&lt;td&gt;&lt;fieldset&gt;&lt;legend class=&quot;screen-reader-text&quot;&gt;&lt;span&gt;&lt;?php _e('Attempt to automatically embed all plain text URLs'); ?&gt;&lt;/span&gt;&lt;/legend&gt;
+&lt;label for=&quot;embed_autourls&quot;&gt;&lt;input name=&quot;embed_autourls&quot; type=&quot;checkbox&quot; id=&quot;embed_autourls&quot; value=&quot;1&quot; &lt;?php checked( '1', get_option('embed_autourls') ); ?&gt;/&gt; &lt;?php _e('Attempt to automatically embed all plain text URLs'); ?&gt;&lt;/label&gt;
+&lt;/fieldset&gt;&lt;/td&gt;
+&lt;/tr&gt;
+
+&lt;tr valign=&quot;top&quot;&gt;
+&lt;th scope=&quot;row&quot;&gt;&lt;?php _e('Embed size') ?&gt;&lt;/th&gt;
+&lt;td&gt;
+&lt;label for=&quot;embed_size_w&quot;&gt;&lt;?php _e('Width'); ?&gt;&lt;/label&gt;
+&lt;input name=&quot;embed_size_w&quot; type=&quot;text&quot; id=&quot;embed_size_w&quot; value=&quot;&lt;?php form_option('embed_size_w'); ?&gt;&quot; class=&quot;small-text&quot; /&gt;
+&lt;label for=&quot;embed_size_h&quot;&gt;&lt;?php _e('Height'); ?&gt;&lt;/label&gt;
+&lt;input name=&quot;embed_size_h&quot; type=&quot;text&quot; id=&quot;embed_size_h&quot; value=&quot;&lt;?php form_option('embed_size_h'); ?&gt;&quot; class=&quot;small-text&quot; /&gt;
+&lt;?php if ( !empty($content_width) ) echo '&lt;br /&gt;' . __(&quot;If the width value is left blank, embeds will default to the max width of your theme.&quot;); ?&gt;
+&lt;/td&gt;
+&lt;/tr&gt;
+
+&lt;?php do_settings_fields('media', 'embeds'); ?&gt;
+&lt;/table&gt;
+
</ins><span class="cx"> &lt;?php do_settings_sections('media'); ?&gt;
</span><span class="cx"> 
</span><span class="cx"> &lt;p class=&quot;submit&quot;&gt;
</span></span></pre></div>
<a id="trunkwpadminoptionsphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/options.php (12022 => 12023)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/options.php        2009-10-13 10:02:42 UTC (rev 12022)
+++ trunk/wp-admin/options.php        2009-10-13 17:04:22 UTC (rev 12023)
</span><span class="lines">@@ -25,7 +25,7 @@
</span><span class="cx">         'general' =&gt; array( 'blogname', 'blogdescription', 'admin_email', 'users_can_register', 'gmt_offset', 'date_format', 'time_format', 'start_of_week', 'default_role', 'timezone_string' ),
</span><span class="cx">         'discussion' =&gt; array( 'default_pingback_flag', 'default_ping_status', 'default_comment_status', 'comments_notify', 'moderation_notify', 'comment_moderation', 'require_name_email', 'comment_whitelist', 'comment_max_links', 'moderation_keys', 'blacklist_keys', 'show_avatars', 'avatar_rating', 'avatar_default', 'close_comments_for_old_posts', 'close_comments_days_old', 'thread_comments', 'thread_comments_depth', 'page_comments', 'comments_per_page', 'default_comments_page', 'comment_order', 'comment_registration' ),
</span><span class="cx">         'misc' =&gt; array( 'use_linksupdate', 'uploads_use_yearmonth_folders', 'upload_path', 'upload_url_path' ),
</span><del>-        'media' =&gt; array( 'thumbnail_size_w', 'thumbnail_size_h', 'thumbnail_crop', 'medium_size_w', 'medium_size_h', 'large_size_w', 'large_size_h', 'image_default_size', 'image_default_align', 'image_default_link_type' ),
</del><ins>+        'media' =&gt; array( 'thumbnail_size_w', 'thumbnail_size_h', 'thumbnail_crop', 'medium_size_w', 'medium_size_h', 'large_size_w', 'large_size_h', 'image_default_size', 'image_default_align', 'image_default_link_type', 'embed_useoembed', 'embed_autourls', 'embed_size_w', 'embed_size_h' ),
</ins><span class="cx">         'privacy' =&gt; array( 'blog_public' ),
</span><span class="cx">         'reading' =&gt; array( 'posts_per_page', 'posts_per_rss', 'rss_use_excerpt', 'blog_charset', 'show_on_front', 'page_on_front', 'page_for_posts' ),
</span><span class="cx">         'writing' =&gt; array( 'default_post_edit_rows', 'use_smilies', 'ping_sites', 'mailserver_url', 'mailserver_port', 'mailserver_login', 'mailserver_pass', 'default_category', 'default_email_category', 'use_balanceTags', 'default_link_category', 'enable_app', 'enable_xmlrpc' ),
</span></span></pre></div>
<a id="trunkwpincludescapabilitiesphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/capabilities.php (12022 => 12023)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/capabilities.php        2009-10-13 10:02:42 UTC (rev 12022)
+++ trunk/wp-includes/capabilities.php        2009-10-13 17:04:22 UTC (rev 12023)
</span><span class="lines">@@ -960,6 +960,30 @@
</span><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> /**
</span><ins>+ * Whether author of supplied post has capability or role.
+ *
+ * @since 2.9
+ *
+ * @param int|object $post Post ID or post object.
+ * @param string $capability Capability or role name.
+ * @return bool
+ */
+function author_can( $post, $capability ) {
+        if ( !$post = get_post($post) )
+                return false;
+
+        $author = new WP_User( $post-&gt;post_author );
+
+        if ( empty( $author ) )
+                return false;
+
+        $args = array_slice( func_get_args(), 2 );
+        $args = array_merge( array( $capability ), $args );
+
+        return call_user_func_array( array( &amp;$author, 'has_cap' ), $args );
+}
+
+/**
</ins><span class="cx">  * Retrieve role object.
</span><span class="cx">  *
</span><span class="cx">  * @see WP_Roles::get_role() Uses method to retrieve role object.
</span></span></pre></div>
<a id="trunkwpincludesclassoembedphp"></a>
<div class="addfile"><h4>Added: trunk/wp-includes/class-oembed.php (0 => 12023)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/class-oembed.php                                (rev 0)
+++ trunk/wp-includes/class-oembed.php        2009-10-13 17:04:22 UTC (rev 12023)
</span><span class="lines">@@ -0,0 +1,236 @@
</span><ins>+&lt;?php
+/**
+ * API for fetching the HTML to embed remote content based on a provided URL.
+ * Used internally by the {@link WP_Embed} class, but is designed to be generic.
+ *
+ * @link http://codex.wordpress.org/oEmbed oEmbed Codex Article
+ * @link http://oembed.com/ oEmbed Homepage
+ *
+ * @package WordPress
+ * @subpackage oEmbed
+ */
+
+/**
+ * oEmbed class.
+ *
+ * @package WordPress
+ * @subpackage oEmbed
+ * @since 2.9.0
+ */
+class WP_oEmbed {
+        var $providers = array();
+
+        /**
+         * PHP4 constructor
+         */
+        function WP_oEmbed() {
+                return $this-&gt;__construct();
+        }
+
+        /**
+         * PHP5 constructor
+         *
+         * @uses apply_filters() Filters a list of pre-defined oEmbed providers.
+         */
+        function __construct() {
+                // List out some popular sites, mainly ones that don't have discovery tags in their &lt;head&gt;
+                // The WP_Embed class disables discovery for non-unfiltered_html users,
+                // so only providers in this array will be used for them.
+                $this-&gt;providers = apply_filters( 'oembed_providers', array(
+                        'http://blip.tv/file/*'       =&gt; 'http://blip.tv/oembed/',
+                        'http://*.flickr.com/*'       =&gt; 'http://www.flickr.com/services/oembed/',
+                        'http://*.viddler.com/*'      =&gt; 'http://lab.viddler.com/services/oembed/',
+                        'http://qik.com/*'            =&gt; 'http://qik.com/api/oembed.{format}',
+                        'http://*.revision3.com/*'    =&gt; 'http://revision3.com/api/oembed/',
+                        'http://www.hulu.com/watch/*' =&gt; 'http://www.hulu.com/api/oembed.{format}',
+
+                        // Vimeo uses the discovery &lt;link&gt;, so leave this commented to use it as a discovery test
+                        //'http://www.vimeo.com/*'      =&gt; 'http://www.vimeo.com/api/oembed.{format}',
+                ) );
+        }
+
+        /**
+         * The do-it-all function that takes a URL and attempts to return the HTML.
+         *
+         * @see WP_oEmbed::discover()
+         * @see WP_oEmbed::fetch()
+         * @see WP_oEmbed::data2html()
+         *
+         * @param string $url The URL to the content that should be attempted to be embedded.
+         * @param array $args Optional arguments. Usually passed from a shortcode.
+         * @return bool|string False on failure, otherwise the UNSANITIZED (and potentially unsafe) HTML that should be used to embed.
+         */
+        function get_html( $url, $args = '' ) {
+                $provider = false;
+
+                if ( !isset($args['discover']) )
+                        $args['discover'] = true;
+
+                foreach ( $this-&gt;providers as $matchmask =&gt; $providerurl ) {
+                        // Turn the asterisk-type provider URLs into regex
+                        $regex = '#' . str_replace( '___wildcard___', '(.+)', preg_quote( str_replace( '*', '___wildcard___', $matchmask ), '#' ) ) . '#i';
+
+                        if ( preg_match( $regex, $url ) ) {
+                                $provider = str_replace( '{format}', 'json', $providerurl ); // JSON is easier to deal with than XML
+                                break;
+                        }
+                }
+
+                if ( !$provider &amp;&amp; $args['discover'] )
+                        $provider = $this-&gt;discover( $url );
+
+                if ( !$provider || false === $data = $this-&gt;fetch( $provider, $url, $args ) )
+                        return false;
+
+                return apply_filters( 'oembed_output', $this-&gt;data2html( $data, $url ), $url, $args );
+        }
+
+        /**
+         * Attempts to find oEmbed provider discovery &lt;link&gt; tags at the given URL.
+         *
+         * @param string $url The URL that should be inspected for discovery &lt;link&gt; tags.
+         * @return bool|string False on failure, otherwise the oEmbed provider URL.
+         */
+        function discover( $url ) {
+                $providers = array();
+
+                // Fetch URL content
+                if ( $html = wp_remote_retrieve_body( wp_remote_get( $url ) ) ) {
+
+                        // &lt;link&gt; types that contain oEmbed provider URLs
+                        $linktypes = apply_filters( 'oembed_linktypes', array(
+                                'application/json+oembed' =&gt; 'json',
+                                'text/xml+oembed' =&gt; 'xml',
+                                'application/xml+oembed' =&gt; 'xml', // Incorrect, but used by at least Vimeo
+                        ) );
+
+                        // Strip &lt;body&gt;
+                        $html = substr( $html, 0, stripos( $html, '&lt;/head&gt;' ) );
+
+                        // Do a quick check
+                        $tagfound = false;
+                        foreach ( $linktypes as $linktype =&gt; $format ) {
+                                if ( stripos($html, $linktype) ) {
+                                        $tagfound = true;
+                                        break;
+                                }
+                        }
+
+                        if ( $tagfound &amp;&amp; preg_match_all( '/&lt;link([^&lt;&gt;]+)&gt;/i', $html, $links ) ) {
+                                foreach ( $links[1] as $link ) {
+                                        $atts = shortcode_parse_atts( $link );
+
+                                        if ( !empty($atts['type']) &amp;&amp; !empty($linktypes[$atts['type']]) &amp;&amp; !empty($atts['href']) ) {
+                                                $providers[$linktypes[$atts['type']]] = $atts['href'];
+
+                                                // Stop here if it's JSON (that's all we need)
+                                                if ( 'json' == $linktypes[$atts['type']] )
+                                                        break;
+                                        }
+                                }
+                        }
+                }
+
+                // JSON is preferred to XML
+                if ( !empty($providers['json']) )
+                        return $providers['json'];
+                elseif ( !empty($providers['xml']) )
+                        return $providers['xml'];
+                else
+                        return false;
+        }
+
+        /**
+         * Connects to a oEmbed provider and returns the result.
+         *
+         * @param string $provider The URL to the oEmbed provider.
+         * @param string $url The URL to the content that is desired to be embedded.
+         * @param array $args Optional arguments. Usually passed from a shortcode.
+         * @return bool|object False on failure, otherwise the result in the form of an object.
+         */
+        function fetch( $provider, $url, $args = '' ) {
+                $args = wp_parse_args( $args, wp_embed_defaults() );
+
+                $provider = add_query_arg( 'format', 'json', $provider ); // JSON is easier to deal with than XML
+
+                $provider = add_query_arg( 'maxwidth', $args['width'], $provider );
+                $provider = add_query_arg( 'maxheight', $args['height'], $provider );
+                $provider = add_query_arg( 'url', urlencode($url), $provider );
+
+                if ( !$result = wp_remote_retrieve_body( wp_remote_get( $provider ) ) )
+                        return false;
+
+                $result = trim( $result );
+
+                // JSON?
+                // Example content: http://vimeo.com/api/oembed.json?url=http%3A%2F%2Fvimeo.com%2F240975
+                if ( $data = json_decode($result) ) {
+                        return $data;
+                }
+
+                // Must be XML. Only parse it if PHP5 is installed. (PHP4 isn't worth the trouble.)
+                // Example content: http://vimeo.com/api/oembed.xml?url=http%3A%2F%2Fvimeo.com%2F240975
+                elseif ( function_exists('simplexml_load_string') ) {
+                        $errors = libxml_use_internal_errors( 'true' );
+                        
+                        $data = simplexml_load_string( $result );
+
+                        libxml_use_internal_errors( $errors );
+
+                        if ( is_object($data) )
+                                return $data;
+                }
+
+                return false;
+        }
+
+        /**
+         * Converts a data object from {@link WP_oEmbed::fetch()} and returns the HTML.
+         *
+         * @param object $data A data object result from an oEmbed provider.
+         * @param string $url The URL to the content that is desired to be embedded.
+         * @return bool|string False on error, otherwise the HTML needed to embed.
+         */
+        function data2html( $data, $url ) {
+                if ( !is_object($data) || empty($data-&gt;type) )
+                        return false;
+
+                switch ( $data-&gt;type ) {
+                        case 'photo':
+                                if ( empty($data-&gt;url) || empty($data-&gt;width) || empty($data-&gt;height) )
+                                        return false;
+
+                                $title = ( !empty($data-&gt;title) ) ? $data-&gt;title : '';
+                                return '&lt;img src=&quot;' . esc_attr( clean_url( $data-&gt;url ) ) . '&quot; alt=&quot;' . esc_attr($title) . '&quot; width=&quot;' . esc_attr($data-&gt;width) . '&quot; height=&quot;' . esc_attr($data-&gt;height) . '&quot; /&gt;';
+
+                        case 'video':
+                        case 'rich':
+                                return ( !empty($data-&gt;html) ) ? $data-&gt;html : false;
+
+                        case 'link':
+                                return ( !empty($data-&gt;title) ) ? '&lt;a href=&quot;' . clean_url($url) . '&quot;&gt;' . esc_html($data-&gt;title) . '&lt;/a&gt;' : false;
+                }
+
+                return false;
+        }
+}
+
+/**
+ * Returns the initialized {@link WP_oEmbed} object
+ *
+ * @since 2.9.0
+ * @access private
+ *
+ * @see WP_oEmbed
+ * @uses WP_oEmbed
+ *
+ * @return WP_oEmbed object.
+ */
+function &amp;_wp_oembed_get_object() {
+        static $wp_oembed;
+
+        if ( is_null($wp_oembed) )
+                $wp_oembed = new WP_oEmbed();
+
+        return $wp_oembed;
+}
</ins><span class="cx">Property changes on: trunk/wp-includes/class-oembed.php
</span><span class="cx">___________________________________________________________________
</span><span class="cx">Name: svn:eol-style
</span><span class="cx">   + native
</span></span></pre></div>
<a id="trunkwpincludesdefaultembedsphp"></a>
<div class="addfile"><h4>Added: trunk/wp-includes/default-embeds.php (0 => 12023)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/default-embeds.php                                (rev 0)
+++ trunk/wp-includes/default-embeds.php        2009-10-13 17:04:22 UTC (rev 12023)
</span><span class="lines">@@ -0,0 +1,101 @@
</span><ins>+&lt;?php
+
+/**
+ * Default Embed Handlers
+ *
+ * @package WordPress
+ * @subpackage Embeds
+ */
+
+/**
+ * The YouTube.com embed handler callback. YouTube does not support oEmbed and we want to provide extra customization.
+ *
+ * @see WP_Embed::register_handler()
+ * @see WP_Embed::shortcode()
+ *
+ * @param array $matches The regex matches from the provided regex when calling {@link wp_embed_register_handler()}.
+ * @param array $attr Embed attributes.
+ * @param string $url The original URL that was matched by the regex.
+ * @param array $rawattr The original unmodified attributes.
+ * @return string The embed HTML.
+ */
+function wp_embed_handler_youtube( $matches, $attr, $url, $rawattr ) {
+        // If the user supplied a fixed width AND height, use it
+        if ( !empty($rawattr['width']) &amp;&amp; !empty($rawattr['height']) ) {
+                $width  = (int) $rawattr['width'];
+                $height = (int) $rawattr['height'];
+        } else {
+                list( $width, $height ) = wp_expand_dimensions( 425, 344, $attr['width'], $attr['height'] );
+        }
+
+        return apply_filters( 'embed_youtube', '&lt;object width=&quot;' . esc_attr($width) . '&quot; height=&quot;' . esc_attr($height) . '&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/' . esc_attr($matches[3]) . '&amp;amp;hl=en&amp;amp;fs=1&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/' . esc_attr($matches[3]) . '&amp;amp;hl=en&amp;amp;fs=1&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;' . esc_attr($width) . '&quot; height=&quot;' . esc_attr($height) . '&quot;&gt;&lt;/embed&gt;&lt;/object&gt;', $matches, $attr, $url, $rawattr );
+}
+wp_embed_register_handler( 'youtube', '#http://(www.youtube|youtube|[A-Za-z]{2}.youtube)\.com/(watch\?v=|w/\?v=|\?v=)([\w-]+)(.*?)#i', 'wp_embed_handler_youtube' );
+
+
+/**
+ * The Google Video embed handler callback. Google Video does not support oEmbed.
+ *
+ * @see WP_Embed::register_handler()
+ * @see WP_Embed::shortcode()
+ *
+ * @param array $matches The regex matches from the provided regex when calling {@link wp_embed_register_handler()}.
+ * @param array $attr Embed attributes.
+ * @param string $url The original URL that was matched by the regex.
+ * @param array $rawattr The original unmodified attributes.
+ * @return string The embed HTML.
+ */
+function wp_embed_handler_googlevideo( $matches, $attr, $url, $rawattr ) {
+        // If the user supplied a fixed width AND height, use it
+        if ( !empty($rawattr['width']) &amp;&amp; !empty($rawattr['height']) ) {
+                $width  = (int) $rawattr['width'];
+                $height = (int) $rawattr['height'];
+        } else {
+                list( $width, $height ) = wp_expand_dimensions( 425, 344, $attr['width'], $attr['height'] );
+        }
+
+        return apply_filters( 'embed_googlevideo', '&lt;embed type=&quot;application/x-shockwave-flash&quot; src=&quot;http://video.google.com/googleplayer.swf?docid=' . esc_attr($matches[2]) . '&amp;amp;hl=en&amp;amp;fs=true&quot; style=&quot;width:' . esc_attr($width) . 'px;height:' . esc_attr($height) . 'px&quot; allowFullScreen=&quot;true&quot; allowScriptAccess=&quot;always&quot;&gt;&lt;/embed&gt;', $matches, $attr, $url, $rawattr );
+}
+wp_embed_register_handler( 'googlevideo', '#http://video\.google\.([A-Za-z.]{2,5})/videoplay\?docid=([\d-]+)(.*?)#i', 'wp_embed_handler_googlevideo' );
+
+/**
+ * The PollDaddy.com embed handler callback. PollDaddy does not support oEmbed, at least not yet.
+ *
+ * @see WP_Embed::register_handler()
+ * @see WP_Embed::shortcode()
+ *
+ * @param array $matches The regex matches from the provided regex when calling {@link wp_embed_register_handler()}.
+ * @param array $attr Embed attributes.
+ * @param string $url The original URL that was matched by the regex.
+ * @param array $rawattr The original unmodified attributes.
+ * @return string The embed HTML.
+ */
+function wp_embed_handler_polldaddy( $matches, $attr, $url, $rawattr ) {
+        return apply_filters( 'embed_polldaddy', '&lt;script type=&quot;text/javascript&quot; charset=&quot;utf8&quot; src=&quot;http://s3.polldaddy.com/p/' . esc_attr($matches[1]) . '&quot;&gt;&lt;/script&gt;', $matches, $attr, $url, $rawattr );
+}
+wp_embed_register_handler( 'polldaddy', '#http://answers.polldaddy.com/poll/(\d+)(.*?)#i', 'wp_embed_handler_polldaddy' );
+
+/**
+ * The DailyMotion.com embed handler callback. DailyMotion does not support oEmbed.
+ *
+ * @see WP_Embed::register_handler()
+ * @see WP_Embed::shortcode()
+ *
+ * @param array $matches The regex matches from the provided regex when calling {@link wp_embed_register_handler()}.
+ * @param array $attr Embed attributes.
+ * @param string $url The original URL that was matched by the regex.
+ * @param array $rawattr The original unmodified attributes.
+ * @return string The embed HTML.
+ */
+function wp_embed_handler_dailymotion( $matches, $attr, $url, $rawattr ) {
+        // If the user supplied a fixed width AND height, use it
+        if ( !empty($rawattr['width']) &amp;&amp; !empty($rawattr['height']) ) {
+                $width  = (int) $rawattr['width'];
+                $height = (int) $rawattr['height'];
+        } else {
+                list( $width, $height ) = wp_expand_dimensions( 480, 291, $attr['width'], $attr['height'] );
+        }
+
+        return apply_filters( 'embed_dailymotion', '&lt;object width=&quot;' . esc_attr($width) . '&quot; height=&quot;' . esc_attr($height) . '&quot; classid=&quot;clsid:d27cdb6e-ae6d-11cf-96b8-444553540000&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.dailymotion.com/swf/' . esc_attr($matches[3]) . '&amp;amp;related=0&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowScriptAccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.dailymotion.com/swf/' . esc_attr($matches[3]) . '&amp;amp;related=0&quot; type=&quot;application/x-shockwave-flash&quot; width=&quot;' . esc_attr($width) . '&quot; height=&quot;' . esc_attr($height) . '&quot; allowFullScreen=&quot;true&quot; allowScriptAccess=&quot;always&quot;&gt;&lt;/embed&gt;&lt;/object&gt;', $matches, $attr, $url, $rawattr );;
+}
+wp_embed_register_handler( 'dailymotion', '#http://(www.dailymotion|dailymotion)\.com/(.+)/([0-9a-zA-Z]+)\_(.*?)#i', 'wp_embed_handler_dailymotion' );
</ins><span class="cx">Property changes on: trunk/wp-includes/default-embeds.php
</span><span class="cx">___________________________________________________________________
</span><span class="cx">Name: svn:eol-style
</span><span class="cx">   + native
</span></span></pre></div>
<a id="trunkwpincludesdefaultfiltersphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/default-filters.php (12022 => 12023)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/default-filters.php        2009-10-13 10:02:42 UTC (rev 12022)
+++ trunk/wp-includes/default-filters.php        2009-10-13 17:04:22 UTC (rev 12023)
</span><span class="lines">@@ -206,6 +206,7 @@
</span><span class="cx"> add_action('admin_print_styles', 'print_admin_styles', 20);
</span><span class="cx"> add_action('init', 'smilies_init', 5);
</span><span class="cx"> add_action( 'plugins_loaded', 'wp_maybe_load_widgets', 0 );
</span><ins>+add_action( 'plugins_loaded', 'wp_maybe_load_embeds', 0 );
</ins><span class="cx"> add_action( 'shutdown', 'wp_ob_end_flush_all', 1);
</span><span class="cx"> add_action( 'pre_post_update', 'wp_save_post_revision' );
</span><span class="cx"> add_action('publish_post', '_publish_post_hook', 5, 1);
</span></span></pre></div>
<a id="trunkwpincludesformattingphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/formatting.php (12022 => 12023)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/formatting.php        2009-10-13 10:02:42 UTC (rev 12022)
+++ trunk/wp-includes/formatting.php        2009-10-13 17:04:22 UTC (rev 12023)
</span><span class="lines">@@ -2358,6 +2358,8 @@
</span><span class="cx">                 case 'medium_size_h':
</span><span class="cx">                 case 'large_size_w':
</span><span class="cx">                 case 'large_size_h':
</span><ins>+                //case 'embed_size_w':
+                case 'embed_size_h':
</ins><span class="cx">                 case 'default_post_edit_rows':
</span><span class="cx">                 case 'mailserver_port':
</span><span class="cx">                 case 'comment_max_links':
</span></span></pre></div>
<a id="trunkwpincludesfunctionsphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/functions.php (12022 => 12023)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/functions.php        2009-10-13 10:02:42 UTC (rev 12022)
+++ trunk/wp-includes/functions.php        2009-10-13 17:04:22 UTC (rev 12023)
</span><span class="lines">@@ -2742,6 +2742,20 @@
</span><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> /**
</span><ins>+ * Determines if default embed handlers should be loaded.
+ *
+ * Checks to make sure that the embeds library hasn't already been loaded. If
+ * it hasn't, then it will load the embeds library.
+ *
+ * @since 2.9
+ */
+function wp_maybe_load_embeds() {
+        if ( ! apply_filters('load_default_embeds', true) )
+                return;
+        require_once( ABSPATH . WPINC . '/default-embeds.php' );
+}
+
+/**
</ins><span class="cx">  * Determines if Widgets library should be loaded.
</span><span class="cx">  *
</span><span class="cx">  * Checks to make sure that the widgets library hasn't already been loaded. If
</span></span></pre></div>
<a id="trunkwpincludesmediaphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/media.php (12022 => 12023)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/media.php        2009-10-13 10:02:42 UTC (rev 12022)
+++ trunk/wp-includes/media.php        2009-10-13 17:04:22 UTC (rev 12023)
</span><span class="lines">@@ -860,3 +860,354 @@
</span><span class="cx">         return $img;
</span><span class="cx"> }
</span><span class="cx"> 
</span><ins>+/**
+ * API for easily embedding rich media such as videos and images into content.
+ *
+ * @package WordPress
+ * @subpackage Embed
+ * @since 2.9.0
+ */
+class WP_Embed {
+        var $handlers = array();
+        var $post_ID;
+        var $usecache = true;
+        var $linkifunknown = true;
+
+        /**
+         * PHP4 constructor
+         */
+        function WP_Embed() {
+                return $this-&gt;__construct();
+        }
+
+        /**
+         * PHP5 constructor
+         */
+        function __construct() {
+                // Hack to get the [embed] shortcode to run before wpautop()
+                add_filter( 'the_content', array(&amp;$this, 'run_shortcode'), 8 );
+
+                // Attempts to embed all URLs in a post
+                if ( get_option('embed_autourls') )
+                        add_filter( 'the_content', array(&amp;$this, 'autoembed'), 8 );
+
+                // After a post is saved, cache oEmbed items via AJAX
+                if ( get_option('embed_useoembed') )
+                        add_action( 'edit_form_advanced', array(&amp;$this, 'maybe_run_ajax_cache') );
+        }
+
+        /**
+         * Process the [embed] shortcode.
+         *
+         * Since the [embed] shortcode needs to be run earlier than other shortcodes,
+         * this function removes all existing shortcodes, registers the [embed] shortcode,
+         * calls {@link do_shortcode()}, and then re-registers the old shortcodes.
+         *
+         * @uses $shortcode_tags
+         * @uses remove_all_shortcodes()
+         * @uses add_shortcode()
+         * @uses do_shortcode()
+         *
+         * @param string $content Content to parse
+         * @return string Content with shortcode parsed
+         */
+        function run_shortcode( $content ) {
+                global $shortcode_tags;
+
+                // Backup current registered shortcodes and clear them all out
+                $orig_shortcode_tags = $shortcode_tags;
+                remove_all_shortcodes();
+
+                add_shortcode( 'embed', array(&amp;$this, 'shortcode') );
+
+                // Do the shortcode (only the [embed] one is registered)
+                $content = do_shortcode( $content );
+
+                // Put the original shortcodes back
+                $shortcode_tags = $orig_shortcode_tags;
+
+                return $content;
+        }
+
+        /**
+         * If a post/page was saved, then output Javascript to make
+         * an AJAX request that will call WP_Embed::cache_oembed().
+         */
+        function maybe_run_ajax_cache() {
+                global $post_ID;
+
+                if ( empty($post_ID) || empty($_GET['message']) || 1 != $_GET['message'] )
+                        return;
+
+?&gt;
+&lt;script type=&quot;text/javascript&quot;&gt;
+/* &lt;![CDATA[ */
+        jQuery(document).ready(function($){
+                $.get(&quot;&lt;?php echo admin_url( 'admin-ajax.php?action=oembed-cache&amp;post=' . $post_ID ); ?&gt;&quot;);
+        });
+/* ]]&gt; */
+&lt;/script&gt;
+&lt;?php
+        }
+
+        /**
+         * Register an embed handler. Do not use this function directly, use {@link wp_embed_register_handler()} instead.
+         * This function should probably also only be used for sites that do not support oEmbed.
+         *
+         * @param string $id An internal ID/name for the handler. Needs to be unique.
+         * @param string $regex The regex that will be used to see if this handler should be used for a URL.
+         * @param callback $callback The callback function that will be called if the regex is matched.
+         * @param int $priority Optional. Used to specify the order in which the registered handlers will be tested (default: 10). Lower numbers correspond with earlier testing, and handlers with the same priority are tested in the order in which they were added to the action.
+         */
+        function register_handler( $id, $regex, $callback, $priority = 10 ) {
+                $this-&gt;handlers[$priority][$id] = array(
+                        'regex'    =&gt; $regex,
+                        'callback' =&gt; $callback,
+                );
+        }
+
+        /**
+         * Unregister a previously registered embed handler. Do not use this function directly, use {@link wp_embed_unregister_handler()} instead.
+         *
+         * @param string $id The handler ID that should be removed.
+         * @param int $priority Optional. The priority of the handler to be removed (default: 10).
+         */
+        function unregister_handler( $id, $priority = 10 ) {
+                if ( isset($this-&gt;handlers[$priority][$id]) )
+                        unset($this-&gt;handlers[$priority][$id]);
+        }
+
+        /**
+         * The {@link do_shortcode()} callback function.
+         *
+         * Attempts to convert a URL into embed HTML. Starts by checking the URL against the regex of the registered embed handlers.
+         * If none of the regex matches and it's enabled, then the URL will be given to the {@link WP_oEmbed} class.
+         *
+         * @uses wp_oembed_get()
+         * @uses wp_parse_args()
+         * @uses wp_embed_defaults()
+         * @uses WP_Embed::maybe_make_link()
+         * @uses get_option()
+         * @uses current_user_can()
+         * @uses wp_cache_get()
+         * @uses wp_cache_set()
+         * @uses get_post_meta()
+         * @uses update_post_meta()
+         *
+         * @param array $attr Shortcode attributes.
+         * @param string $url The URL attempting to be embeded.
+         * @return string The embed HTML on success, otherwise the original URL.
+         */
+        function shortcode( $attr, $url = '' ) {
+                global $post, $_wp_using_ext_object_cache;
+
+                if ( empty($url) )
+                        return '';
+
+                $rawattr = $attr;
+                $attr = wp_parse_args( $attr, wp_embed_defaults() );
+
+                // Look for known internal handlers
+                ksort( $this-&gt;handlers );
+                foreach ( $this-&gt;handlers as $priority =&gt; $handlers ) {
+                        foreach ( $handlers as $id =&gt; $handler ) {
+                                if ( preg_match( $handler['regex'], $url, $matches ) &amp;&amp; is_callable( $handler['callback'] ) ) {
+                                        if ( false !== $return = call_user_func( $handler['callback'], $matches, $attr, $url, $rawattr ) )
+                                                return $return;
+                                }
+                        }
+                }
+
+                $post_ID = ( !empty($post-&gt;ID) ) ? $post-&gt;ID : null;
+                if ( !empty($this-&gt;post_ID) ) // Potentially set by WP_Embed::cache_oembed()
+                        $post_ID = $this-&gt;post_ID;
+
+                // Unknown URL format. Let oEmbed have a go.
+                if ( $post_ID &amp;&amp; get_option('embed_useoembed') ) {
+
+                        // Check for a cached result (stored in the post meta)
+                        $cachekey = '_oembed_' . md5( $url . implode( '|', $attr ) );
+                        if ( $this-&gt;usecache ) {
+                                $cache = ( $_wp_using_ext_object_cache ) ? wp_cache_get( &quot;{$post_ID}_{$cachekey}&quot;, 'oembed' ) : get_post_meta( $post_ID, $cachekey, true );
+
+                                // Failures are cached
+                                if ( '{{unknown}}' === $cache )
+                                        return $this-&gt;maybe_make_link( $url );
+
+                                if ( !empty($cache) )
+                                        return $cache;
+                        }
+
+                        // Use oEmbed to get the HTML
+                        $attr['discover'] = author_can( $post_ID, 'unfiltered_html' );
+                        $html = wp_oembed_get( $url, $attr );
+
+                        // Cache the result
+                        $cache = ( $html ) ? $html : '{{unknown}}';
+                        if ( $_wp_using_ext_object_cache )
+                                wp_cache_set( &quot;{$post_ID}_{$cachekey}&quot;, $cache, 'oembed' );
+                        else
+                                update_post_meta( $post_ID, $cachekey, $cache );
+
+                        // If there was a result, return it
+                        if ( $html )
+                                return $html;
+                }
+
+                // Still unknown
+                return $this-&gt;maybe_make_link( $url );
+        }
+
+        /**
+         * Triggers a caching of all oEmbed results.
+         *
+         * @param int $post_ID Post ID to do the caching for.
+         */
+        function cache_oembed( $post_ID ) {
+                $post = get_post( $post_ID );
+
+                // post_type check is incase of &quot;save_post&quot; usage
+                if ( empty($post-&gt;ID) || !in_array( $post-&gt;post_type, apply_filters( 'embed_cache_oembed_types', array( 'post', 'page' ) ) ) )
+                        return;
+
+                // Dump existing caches
+                $post_metas = get_post_custom_keys( $post-&gt;ID );
+                foreach( $post_metas as $post_meta_key ) {
+                        if ( '_oembed_' == substr( $post_meta_key, 0, 8 ) )
+                                delete_post_meta( $post-&gt;ID, $post_meta_key );
+                }
+
+                // Trigger a caching
+                if ( !empty($post-&gt;post_content) ) {
+                        $this-&gt;post_ID = $post-&gt;ID;
+                        $this-&gt;usecache = false;
+
+                        $content = $this-&gt;run_shortcode( $post-&gt;post_content );
+                        if ( get_option('embed_autourls') )
+                                $this-&gt;autoembed( $content );
+
+                        $this-&gt;usecache = true;
+                }
+        }
+
+        /**
+         * Passes any unlinked URLs that are on their own line to {@link WP_Embed::shortcode()} for potential embedding.
+         *
+         * @uses WP_Embed::autoembed_callback()
+         *
+         * @param string $content The content to be searched.
+         * @return string Potentially modified $content.
+         */
+        function autoembed( $content ) {
+                return preg_replace_callback( '|^\s*(https?://[^\s&quot;]+)\s*$|im', array(&amp;$this, 'autoembed_callback'), $content );
+        }
+
+        /**
+         * Callback function for {@link WP_Embed::autoembed()}.
+         *
+         * @uses WP_Embed::shortcode()
+         *
+         * @param array $match A regex match array.
+         * @return string The embed HTML on success, otherwise the original URL.
+         */
+        function autoembed_callback( $match ) {
+                $oldval = $this-&gt;linkifunknown;
+                $this-&gt;linkifunknown = false;
+                $return = $this-&gt;shortcode( array(), $match[1] );
+                $this-&gt;linkifunknown = $oldval;
+
+                return &quot;\n$return\n&quot;;
+        }
+
+        /**
+         * Conditionally makes a hyperlink based on an internal class variable.
+         *
+         * @param string $url URL to potentially be linked.
+         * @return string Linked URL or the original URL.
+         */
+        function maybe_make_link( $url ) {
+                return ( $this-&gt;linkifunknown ) ? '&lt;a href=&quot;' . esc_attr($url) . '&quot;&gt;' . esc_html($url) . '&lt;/a&gt;' : $url;
+        }
+}
+$wp_embed = new WP_Embed();
+
+/**
+ * Register an embed handler. This function should probably only be used for sites that do not support oEmbed.
+ *
+ * @see WP_Embed::register_handler()
+ */
+function wp_embed_register_handler( $id, $regex, $callback, $priority = 10 ) {
+        global $wp_embed;
+        $wp_embed-&gt;register_handler( $id, $regex, $callback, $priority );
+}
+
+/**
+ * Unregister a previously registered embed handler.
+ *
+ * @see WP_Embed::unregister_handler()
+ */
+function wp_embed_unregister_handler( $id, $priority = 10 ) {
+        global $wp_embed;
+        $wp_embed-&gt;unregister_handler( $id, $priority );
+}
+
+/**
+ * Create default array of embed parameters.
+ *
+ * @return array Default embed parameters.
+ */
+function wp_embed_defaults() {
+        if ( !empty($GLOBALS['content_width']) )
+                $theme_width = (int) $GLOBALS['content_width'];
+
+        $width = get_option('embed_size_w');
+
+        if ( !$width &amp;&amp; !empty($theme_width) )
+                $width = $theme_width;
+
+        if ( !$width )
+                $width = 500;
+
+        return apply_filters( 'embed_defaults', array(
+                'width' =&gt; $width,
+                'height' =&gt; 700,
+        ) );
+}
+
+/**
+ * Based on a supplied width/height example, return the biggest possible dimensions based on the max width/height.
+ *
+ * @uses wp_constrain_dimensions() This function passes the widths and the heights.
+ *
+ * @param int $example_width The width of an example embed.
+ * @param int $example_height The height of an example embed.
+ * @param int $max_width The maximum allowed width.
+ * @param int $max_height The maximum allowed height.
+ * @return array The maximum possible width and height based on the example ratio.
+ */
+function wp_expand_dimensions( $example_width, $example_height, $max_width, $max_height ) {
+        $example_width  = (int) $example_width;
+        $example_height = (int) $example_height;
+        $max_width      = (int) $max_width;
+        $max_height     = (int) $max_height;
+
+        return wp_constrain_dimensions( $example_width * 1000000, $example_height * 1000000, $max_width, $max_height );
+}
+
+/**
+ * Attempts to fetch the embed HTML for a provided URL using oEmbed.
+ *
+ * @see WP_oEmbed
+ *
+ * @uses _wp_oembed_get_object()
+ * @uses WP_oEmbed::get_html()
+ *
+ * @param string $url The URL that should be embeded.
+ * @param array $args Addtional arguments and parameters.
+ * @return string The original URL on failure or the embed HTML on success.
+ */
+function wp_oembed_get( $url, $args = '' ) {
+        require_once( 'class-oembed.php' );
+        $oembed = _wp_oembed_get_object();
+        return $oembed-&gt;get_html( $url, $args );
+}
</ins></span></pre>
</div>
</div>

</body>
</html>