<!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 { overflow: auto; background: #ffc; border: 1px #fc0 solid; padding: 6px; }
#msg ul, pre { 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>[16457] trunk: Ludicrous speed for internal linking.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/16457">16457</a></dd>
<dt>Author</dt> <dd>nacin</dd>
<dt>Date</dt> <dd>2010-11-18 06:22:13 +0000 (Thu, 18 Nov 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>Ludicrous speed for internal linking. First pass. props koopersmith, see <a href="http://trac.wordpress.org/ticket/11420">#11420</a>.</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpadminadminajaxphp">trunk/wp-admin/admin-ajax.php</a></li>
<li><a href="#trunkwpadminadminheaderphp">trunk/wp-admin/admin-header.php</a></li>
<li><a href="#trunkwpadminincludespostphp">trunk/wp-admin/includes/post.php</a></li>
<li><a href="#trunkwpincludesjstinymcepluginswplinkeditor_plugindevjs">trunk/wp-includes/js/tinymce/plugins/wplink/editor_plugin.dev.js</a></li>
<li><a href="#trunkwpincludesjstinymcepluginswplinkeditor_pluginjs">trunk/wp-includes/js/tinymce/plugins/wplink/editor_plugin.js</a></li>
<li><a href="#trunkwpincludesjstinymcepluginswplinkjswplinkdevjs">trunk/wp-includes/js/tinymce/plugins/wplink/js/wplink.dev.js</a></li>
<li><a href="#trunkwpincludesjstinymcepluginswplinkjswplinkjs">trunk/wp-includes/js/tinymce/plugins/wplink/js/wplink.js</a></li>
<li><a href="#trunkwpincludesjstinymcewpmcelinkphp">trunk/wp-includes/js/tinymce/wp-mce-link.php</a></li>
<li><a href="#trunkwpincludesjstinymcewptinymcejsgz">trunk/wp-includes/js/tinymce/wp-tinymce.js.gz</a></li>
<li><a href="#trunkwpincludesscriptloaderphp">trunk/wp-includes/script-loader.php</a></li>
</ul>

<h3>Removed Paths</h3>
<ul>
<li><a href="#trunkwpincludesjstinymcewpmcelinkincludesphp">trunk/wp-includes/js/tinymce/wp-mce-link-includes.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 (16456 => 16457)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/admin-ajax.php        2010-11-18 05:38:53 UTC (rev 16456)
+++ trunk/wp-admin/admin-ajax.php        2010-11-18 06:22:13 UTC (rev 16457)
</span><span class="lines">@@ -1074,7 +1074,7 @@
</span><span class="cx">         exit;
</span><span class="cx">         break;
</span><span class="cx"> case 'wp-link-ajax':
</span><del>-        require_once ABSPATH . WPINC . '/js/tinymce/wp-mce-link-includes.php';
</del><ins>+        require_once ABSPATH . WPINC . '/js/tinymce/wp-mce-link.php';
</ins><span class="cx"> 
</span><span class="cx">         wp_link_ajax( $_POST );
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkwpadminadminheaderphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/admin-header.php (16456 => 16457)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/admin-header.php        2010-11-18 05:38:53 UTC (rev 16456)
+++ trunk/wp-admin/admin-header.php        2010-11-18 06:22:13 UTC (rev 16457)
</span><span class="lines">@@ -66,6 +66,7 @@
</span><span class="cx"> 
</span><span class="cx"> if ( in_array( $pagenow, array('post.php', 'post-new.php') ) ) {
</span><span class="cx">         add_action( 'admin_print_footer_scripts', 'wp_tiny_mce', 25 );
</span><ins>+        add_action( 'admin_print_footer_scripts', 'wp_tiny_mce_preload_dialogs', 30 );
</ins><span class="cx">         wp_enqueue_script('quicktags');
</span><span class="cx"> }
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkwpadminincludespostphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/includes/post.php (16456 => 16457)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/includes/post.php        2010-11-18 05:38:53 UTC (rev 16456)
+++ trunk/wp-admin/includes/post.php        2010-11-18 06:22:13 UTC (rev 16457)
</span><span class="lines">@@ -1327,10 +1327,10 @@
</span><span class="cx">         $mce_spellchecker_languages = apply_filters('mce_spellchecker_languages', '+English=en,Danish=da,Dutch=nl,Finnish=fi,French=fr,German=de,Italian=it,Polish=pl,Portuguese=pt,Spanish=es,Swedish=sv');
</span><span class="cx"> 
</span><span class="cx">         if ( $teeny ) {
</span><del>-                $plugins = apply_filters( 'teeny_mce_plugins', array('inlinepopups', 'media', 'fullscreen', 'wordpress', 'wplink') );
</del><ins>+                $plugins = apply_filters( 'teeny_mce_plugins', array('inlinepopups', 'media', 'fullscreen', 'wordpress', 'wplink', 'wpdialogs') );
</ins><span class="cx">                 $ext_plugins = '';
</span><span class="cx">         } else {
</span><del>-                $plugins = array( 'inlinepopups', 'spellchecker', 'paste', 'wordpress', 'media', 'fullscreen', 'wpeditimage', 'wpgallery', 'tabfocus', 'wplink' );
</del><ins>+                $plugins = array( 'inlinepopups', 'spellchecker', 'paste', 'wordpress', 'media', 'fullscreen', 'wpeditimage', 'wpgallery', 'tabfocus', 'wplink', 'wpdialogs' );
</ins><span class="cx"> 
</span><span class="cx">                 /*
</span><span class="cx">                 The following filter takes an associative array of external plugins for TinyMCE in the form 'plugin_name' =&gt; 'url'.
</span><span class="lines">@@ -1411,8 +1411,6 @@
</span><span class="cx">                 }
</span><span class="cx">         }
</span><span class="cx"> 
</span><del>-        $plugins = implode($plugins, ',');
-
</del><span class="cx">         if ( $teeny ) {
</span><span class="cx">                 $mce_buttons = apply_filters( 'teeny_mce_buttons', array('bold, italic, underline, blockquote, separator, strikethrough, bullist, numlist,justifyleft, justifycenter, justifyright, undo, redo, link, unlink, fullscreen') );
</span><span class="cx">                 $mce_buttons = implode($mce_buttons, ',');
</span><span class="lines">@@ -1485,7 +1483,7 @@
</span><span class="cx">                 'paste_strip_class_attributes' =&gt; 'all',
</span><span class="cx">                 'paste_text_use_dialog' =&gt; true,
</span><span class="cx">                 'wpeditimage_disable_captions' =&gt; $no_captions,
</span><del>-                'plugins' =&gt; $plugins
</del><ins>+                'plugins' =&gt; implode($plugins, ',')
</ins><span class="cx">         );
</span><span class="cx"> 
</span><span class="cx">         if ( ! empty( $editor_styles ) &amp;&amp; is_array( $editor_styles ) ) {
</span><span class="lines">@@ -1608,4 +1606,21 @@
</span><span class="cx"> /* ]]&gt; */
</span><span class="cx"> &lt;/script&gt;
</span><span class="cx"> &lt;?php
</span><ins>+
+        // Load additional inline scripts based on active plugins.
+        if ( in_array( 'wpdialogs', $plugins ) ) {
+                wp_print_scripts( array('jquery-ui-dialog', 'wpdialogsPopup') );
+                wp_print_styles('wp-jquery-ui-dialog');
+        }
+        if ( in_array( 'wplink', $plugins ) ) {
+                require_once ABSPATH . WPINC . &quot;/js/tinymce/wp-mce-link.php&quot;;
+                add_action('tiny_mce_preload_dialogs', 'wp_link_dialog');
+                wp_print_scripts('wplink');
+                wp_print_styles('wplink');
+        }
</ins><span class="cx"> }
</span><ins>+function wp_tiny_mce_preload_dialogs() { ?&gt;
+        &lt;div id=&quot;preloaded-dialogs&quot; style=&quot;display:none;&quot;&gt;
+&lt;?php         do_action('tiny_mce_preload_dialogs'); ?&gt;
+        &lt;/div&gt;
+&lt;?php }
</ins><span class="cx">\ No newline at end of file
</span></span></pre></div>
<a id="trunkwpincludesjstinymcepluginswplinkeditor_plugindevjs"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/js/tinymce/plugins/wplink/editor_plugin.dev.js (16456 => 16457)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/js/tinymce/plugins/wplink/editor_plugin.dev.js        2010-11-18 05:38:53 UTC (rev 16456)
+++ trunk/wp-includes/js/tinymce/plugins/wplink/editor_plugin.dev.js        2010-11-18 06:22:13 UTC (rev 16457)
</span><span class="lines">@@ -12,10 +12,11 @@
</span><span class="cx">                         // Register the command so that it can be invoked by using tinyMCE.activeEditor.execCommand('mceExample');
</span><span class="cx">                         ed.addCommand('WP_Link', function() {
</span><span class="cx">                                 ed.windowManager.open({
</span><del>-                                        file : tinymce.baseURL + '/wp-mce-link.php',
</del><ins>+                                        id : 'wp-link',
</ins><span class="cx">                                         width : 480,
</span><del>-                                        height : 430,
-                                        inline : 1
</del><ins>+                                        height : &quot;auto&quot;,
+                                        wpDialog : true,
+                                        title : ed.getLang('advlink.link_desc')
</ins><span class="cx">                                 }, {
</span><span class="cx">                                         plugin_url : url // Plugin absolute URL
</span><span class="cx">                                 });
</span></span></pre></div>
<a id="trunkwpincludesjstinymcepluginswplinkeditor_pluginjs"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/js/tinymce/plugins/wplink/editor_plugin.js (16456 => 16457)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/js/tinymce/plugins/wplink/editor_plugin.js        2010-11-18 05:38:53 UTC (rev 16456)
+++ trunk/wp-includes/js/tinymce/plugins/wplink/editor_plugin.js        2010-11-18 06:22:13 UTC (rev 16457)
</span><span class="lines">@@ -1 +1 @@
</span><del>-(function(){tinymce.create(&quot;tinymce.plugins.wpLink&quot;,{init:function(a,b){a.addCommand(&quot;WP_Link&quot;,function(){a.windowManager.open({file:tinymce.baseURL+&quot;/wp-mce-link.php&quot;,width:480,height:430,inline:1},{plugin_url:b})});a.addButton(&quot;link&quot;,{title:a.getLang(&quot;advanced.link_desc&quot;),cmd:&quot;WP_Link&quot;});a.addShortcut(&quot;alt+shift+a&quot;,a.getLang(&quot;advanced.link_desc&quot;),&quot;WP_Link&quot;);a.onNodeChange.add(function(d,c,e){c.setActive(&quot;wplink&quot;,e.nodeName==&quot;A&quot;)})},getInfo:function(){return{longname:&quot;WordPress Link Dialog&quot;,author:&quot;WordPress&quot;,authorurl:&quot;http://wordpress.org&quot;,infourl:&quot;&quot;,version:&quot;1.0&quot;}}});tinymce.PluginManager.add(&quot;wplink&quot;,tinymce.plugins.wpLink)})();
</del><span class="cx">\ No newline at end of file
</span><ins>+(function(){tinymce.create(&quot;tinymce.plugins.wpLink&quot;,{init:function(a,b){a.addCommand(&quot;WP_Link&quot;,function(){a.windowManager.open({id:&quot;wp-link&quot;,width:480,height:&quot;auto&quot;,wpDialog:true,title:a.getLang(&quot;advlink.link_desc&quot;)},{plugin_url:b})});a.addButton(&quot;link&quot;,{title:a.getLang(&quot;advanced.link_desc&quot;),cmd:&quot;WP_Link&quot;});a.addShortcut(&quot;alt+shift+a&quot;,a.getLang(&quot;advanced.link_desc&quot;),&quot;WP_Link&quot;);a.onNodeChange.add(function(d,c,e){c.setActive(&quot;wplink&quot;,e.nodeName==&quot;A&quot;)})},getInfo:function(){return{longname:&quot;WordPress Link Dialog&quot;,author:&quot;WordPress&quot;,authorurl:&quot;http://wordpress.org&quot;,infourl:&quot;&quot;,version:&quot;1.0&quot;}}});tinymce.PluginManager.add(&quot;wplink&quot;,tinymce.plugins.wpLink)})();
</ins><span class="cx">\ No newline at end of file
</span></span></pre></div>
<a id="trunkwpincludesjstinymcepluginswplinkjswplinkdevjs"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/js/tinymce/plugins/wplink/js/wplink.dev.js (16456 => 16457)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/js/tinymce/plugins/wplink/js/wplink.dev.js        2010-11-18 05:38:53 UTC (rev 16456)
+++ trunk/wp-includes/js/tinymce/plugins/wplink/js/wplink.dev.js        2010-11-18 06:22:13 UTC (rev 16457)
</span><span class="lines">@@ -12,11 +12,7 @@
</span><span class="cx">                         };
</span><span class="cx">                 },
</span><span class="cx">                 init : function() {
</span><del>-                        var e;
-                        // Init shared vars
-                        ed = tinyMCEPopup.editor;
-
-
</del><ins>+                        inputs.dialog = $('#wp-link');
</ins><span class="cx">                         // URL
</span><span class="cx">                         inputs.url = $('#url-field');
</span><span class="cx">                         // Secondary options
</span><span class="lines">@@ -29,14 +25,25 @@
</span><span class="cx">                         results.recent = $('#most-recent-results');
</span><span class="cx">                         results.search.data('river', wpLink.riverDefaults() );
</span><span class="cx">                         results.recent.data('river', wpLink.riverDefaults() );
</span><ins>+                        results.group = $('.query-results', inputs.dialog);
</ins><span class="cx"> 
</span><span class="cx">                         // Bind event handlers
</span><del>-                        $('#wp-update').click( wpLink.update );
-                        $('#wp-cancel').click( function() { tinyMCEPopup.close(); } );
-                        $('.query-results').delegate('li', 'click', wpLink.selectInternalLink );
-                        $('.query-results').scroll( wpLink.maybeLoadRiver );
</del><ins>+                        $('#wp-link-update').click( wpLink.update );
+                        $('#wp-link-cancel').click( function() { tinyMCEPopup.close(); } );
+                        
+                        results.group.delegate('li', 'click', wpLink.selectInternalLink )
+                        results.group.scroll( wpLink.maybeLoadRiver );
+                        
</ins><span class="cx">                         inputs.search.keyup( wpLink.searchInternalLinks );
</span><ins>+                        
+                        inputs.dialog.bind('dialogopen', wpLink.refresh);
+                },
</ins><span class="cx"> 
</span><ins>+                refresh : function() {
+                        var e;
+                        
+                        ed = tinyMCEPopup.editor;
+                        
</ins><span class="cx">                         // If link exists, select proper values.
</span><span class="cx">                         if ( e = ed.dom.getParent(ed.selection.getNode(), 'A') ) {
</span><span class="cx">                                 // Set URL and description.
</span><span class="lines">@@ -47,6 +54,8 @@
</span><span class="cx">                                         inputs.openInNewTab.attr('checked','checked');
</span><span class="cx">                         }
</span><span class="cx"> 
</span><ins>+                        // Clear previously selected links
+                        results.group.find('.selected').removeClass('selected');
</ins><span class="cx">                         // Focus the URL field
</span><span class="cx">                         inputs.url.focus();
</span><span class="cx">                 },
</span></span></pre></div>
<a id="trunkwpincludesjstinymcepluginswplinkjswplinkjs"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/js/tinymce/plugins/wplink/js/wplink.js (16456 => 16457)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/js/tinymce/plugins/wplink/js/wplink.js        2010-11-18 05:38:53 UTC (rev 16456)
+++ trunk/wp-includes/js/tinymce/plugins/wplink/js/wplink.js        2010-11-18 06:22:13 UTC (rev 16457)
</span><span class="lines">@@ -1 +1 @@
</span><del>-(function(d){var a={},c={},b,e={timeToTriggerRiver:150,minRiverAJAXDuration:200,lastSearch:&quot;&quot;,riverDefaults:function(){return{page:2,allLoaded:false,active:false}},init:function(){var f;b=tinyMCEPopup.editor;a.url=d(&quot;#url-field&quot;);a.title=d(&quot;#link-title-field&quot;);a.openInNewTab=d(&quot;#link-target-checkbox&quot;);a.search=d(&quot;#search-field&quot;);c.search=d(&quot;#search-results&quot;);c.recent=d(&quot;#most-recent-results&quot;);c.search.data(&quot;river&quot;,e.riverDefaults());c.recent.data(&quot;river&quot;,e.riverDefaults());d(&quot;#wp-update&quot;).click(e.update);d(&quot;#wp-cancel&quot;).click(function(){tinyMCEPopup.close()});d(&quot;.query-results&quot;).delegate(&quot;li&quot;,&quot;click&quot;,e.selectInternalLink);d(&quot;.query-results&quot;).scroll(e.maybeLoadRiver);a.search.keyup(e.searchInternalLinks);if(f=b.dom.getParent(b.selection.getNode(),&quot;A&quot;)){a.url.val(f.href);a.title.val(b.dom.getAttrib(f,&quot;title&quot;));if(&quot;_blank&quot;==b.dom.getAttrib(f,&quot;target&quot;)){a.openInNewTab.attr(&quot;checked&quot;,&quot;checked&quot;)}}a.url.focus()},update:function(){var j,g=tinyMCEPopup.editor,h={href:a.url.val(),title:a.title.val(),target:a.openInNewTab.attr(&quot;checked&quot;)?&quot;_blank&quot;:&quot;&quot;},k,f,i=h.title?h.title:h.href;tinyMCEPopup.restoreSelection();k=g.dom.getParent(g.selection.getNode(),&quot;A&quot;);if(!h.href){if(g.selection.isCollapsed()){tinyMCEPopup.close();return}else{if(k){tinyMCEPopup.execCommand(&quot;mceBeginUndoLevel&quot;);f=g.selection.getBookmark();g.dom.remove(k,1);g.selection.moveToBookmark(f);tinyMCEPopup.execCommand(&quot;mceEndUndoLevel&quot;);tinyMCEPopup.close();return}}}tinyMCEPopup.execCommand(&quot;mceBeginUndoLevel&quot;);if(k==null){g.getDoc().execCommand(&quot;unlink&quot;,false,null);if(g.selection.isCollapsed()){j=g.dom.create(&quot;a&quot;,{href:&quot;#mce_temp_url#&quot;},i);g.selection.setNode(j)}else{tinyMCEPopup.execCommand(&quot;CreateLink&quot;,false,&quot;#mce_temp_url#&quot;,{skip_undo:1})}tinymce.each(g.dom.select(&quot;a&quot;),function(l){if(g.dom.getAttrib(l,&quot;href&quot;)==&quot;#mce_temp_url#&quot;){k=l;g.dom.setAttribs(k,h)}})}else{g.dom.setAttribs(k,h)}if(k.childNodes.length!=1||k.firstChild.nodeName!=&quot;IMG&quot;){g.focus();g.selection.select(k);g.selection.collapse(0);tinyMCEPopup.storeSelection()}tinyMCEPopup.execCommand(&quot;mceEndUndoLevel&quot;);tinyMCEPopup.close()},selectInternalLink:function(){var f=d(this);if(f.hasClass(&quot;unselectable&quot;)){return}f.siblings(&quot;.selected&quot;).removeClass(&quot;selected&quot;);f.addClass(&quot;selected&quot;);a.url.val(f.children(&quot;.item-permalink&quot;).val());a.title.val(f.children(&quot;.item-title&quot;).text())},maybeLoadRiver:function(){var h=d(this),g=h.children(&quot;ul&quot;),i=h.data(&quot;river&quot;),f=h.scrollTop()+h.height();if(f!=g.height()||i.active||i.allLoaded){return}setTimeout(function(){var j=h.scrollTop(),k=j+h.height(),l=h.find(&quot;.river-waiting&quot;);if(f!=k||k!=g.height()||i.active||i.allLoaded){return}i.active=true;l.show();h.scrollTop(j+l.outerHeight());e.linkAJAX(h,{page:i.page},function(m){i.page++;i.active=false;i.allLoaded=!m;l.hide()},{append:true,delay:e.minRiverAJAXDuration})},e.timeToTriggerRiver)},searchInternalLinks:function(){var f=d(this),h,g=f.val();if(g.length&gt;2){c.recent.hide();c.search.show();if(e.lastSearch==g){return}e.lastSearch=g;h=f.siblings(&quot;img.waiting&quot;).show();c.search.data(&quot;river&quot;,e.riverDefaults());c.search.scrollTop(0);e.linkAJAX(c.search,{title:g},function(){h.hide()})}else{c.search.hide();c.recent.show()}},linkAJAX:function(i,h,j,g){var f;g=g||{};if(!i.hasClass(&quot;query-results&quot;)){i=i.parents(&quot;.query-results&quot;)}if(!i.length){return}f=e.delayedCallback(function(k){e.processAJAXResponse(i,k,j,g)},g.delay);d.post(ajaxurl,d.extend({action:&quot;wp-link-ajax&quot;},h),f,&quot;json&quot;)},processAJAXResponse:function(i,f,j,g){var h=&quot;&quot;;if(!f){if(!g.append){h+='&lt;li class=&quot;no-matches-found unselectable&quot;&gt;&lt;span class=&quot;item-title&quot;&gt;&lt;em&gt;'+wpLinkL10n.noMatchesFound+&quot;&lt;/em&gt;&lt;/span&gt;&lt;/li&gt;&quot;}}else{d.each(f,function(){h+='&lt;li&gt;&lt;input type=&quot;hidden&quot; class=&quot;item-permalink&quot; value=&quot;'+this[&quot;permalink&quot;]+'&quot; /&gt;';h+='&lt;span class=&quot;item-title&quot;&gt;';h+=this[&quot;title&quot;]?this[&quot;title&quot;]:&quot;&lt;em&gt;&quot;+wpLinkL10n.untitled+&quot;&lt;/em&gt;&quot;;h+='&lt;/span&gt;&lt;span class=&quot;item-info&quot;&gt;'+this[&quot;info&quot;]+&quot;&lt;/span&gt;&lt;/li&gt;&quot;})}i.children(&quot;ul&quot;)[g.append?&quot;append&quot;:&quot;html&quot;](h);if(j){j(f)}},delayedCallback:function(h,f){var k,j,i,g;if(!f){return h}setTimeout(function(){if(j){return h.apply(g,i)}k=true},f);return function(){if(k){return h.apply(this,arguments)}i=arguments;g=this;j=true}}};d(document).ready(e.init)})(jQuery);
</del><span class="cx">\ No newline at end of file
</span><ins>+(function(d){var a={},c={},b,e={timeToTriggerRiver:150,minRiverAJAXDuration:200,lastSearch:&quot;&quot;,riverDefaults:function(){return{page:2,allLoaded:false,active:false}},init:function(){a.dialog=d(&quot;#wp-link&quot;);a.url=d(&quot;#url-field&quot;);a.title=d(&quot;#link-title-field&quot;);a.openInNewTab=d(&quot;#link-target-checkbox&quot;);a.search=d(&quot;#search-field&quot;);c.search=d(&quot;#search-results&quot;);c.recent=d(&quot;#most-recent-results&quot;);c.search.data(&quot;river&quot;,e.riverDefaults());c.recent.data(&quot;river&quot;,e.riverDefaults());c.group=d(&quot;.query-results&quot;,a.dialog);d(&quot;#wp-link-update&quot;).click(e.update);d(&quot;#wp-link-cancel&quot;).click(function(){tinyMCEPopup.close()});c.group.delegate(&quot;li&quot;,&quot;click&quot;,e.selectInternalLink);c.group.scroll(e.maybeLoadRiver);a.search.keyup(e.searchInternalLinks);a.dialog.bind(&quot;dialogopen&quot;,e.refresh)},refresh:function(){var f;b=tinyMCEPopup.editor;if(f=b.dom.getParent(b.selection.getNode(),&quot;A&quot;)){a.url.val(f.href);a.title.val(b.dom.getAttrib(f,&quot;title&quot;));if(&quot;_blank&quot;==b.dom.getAttrib(f,&quot;target&quot;)){a.openInNewTab.attr(&quot;checked&quot;,&quot;checked&quot;)}}c.group.find(&quot;.selected&quot;).removeClass(&quot;selected&quot;);a.url.focus()},update:function(){var j,g=tinyMCEPopup.editor,h={href:a.url.val(),title:a.title.val(),target:a.openInNewTab.attr(&quot;checked&quot;)?&quot;_blank&quot;:&quot;&quot;},k,f,i=h.title?h.title:h.href;tinyMCEPopup.restoreSelection();k=g.dom.getParent(g.selection.getNode(),&quot;A&quot;);if(!h.href){if(g.selection.isCollapsed()){tinyMCEPopup.close();return}else{if(k){tinyMCEPopup.execCommand(&quot;mceBeginUndoLevel&quot;);f=g.selection.getBookmark();g.dom.remove(k,1);g.selection.moveToBookmark(f);tinyMCEPopup.execCommand(&quot;mceEndUndoLevel&quot;);tinyMCEPopup.close();return}}}tinyMCEPopup.execCommand(&quot;mceBeginUndoLevel&quot;);if(k==null){g.getDoc().execCommand(&quot;unlink&quot;,false,null);if(g.selection.isCollapsed()){j=g.dom.create(&quot;a&quot;,{href:&quot;#mce_temp_url#&quot;},i);g.selection.setNode(j)}else{tinyMCEPopup.execCommand(&quot;CreateLink&quot;,false,&quot;#mce_temp_url#&quot;,{skip_undo:1})}tinymce.each(g.dom.select(&quot;a&quot;),function(l){if(g.dom.getAttrib(l,&quot;href&quot;)==&quot;#mce_temp_url#&quot;){k=l;g.dom.setAttribs(k,h)}})}else{g.dom.setAttribs(k,h)}if(k.childNodes.length!=1||k.firstChild.nodeName!=&quot;IMG&quot;){g.focus();g.selection.select(k);g.selection.collapse(0);tinyMCEPopup.storeSelection()}tinyMCEPopup.execCommand(&quot;mceEndUndoLevel&quot;);tinyMCEPopup.close()},selectInternalLink:function(){var f=d(this);if(f.hasClass(&quot;unselectable&quot;)){return}f.siblings(&quot;.selected&quot;).removeClass(&quot;selected&quot;);f.addClass(&quot;selected&quot;);a.url.val(f.children(&quot;.item-permalink&quot;).val());a.title.val(f.children(&quot;.item-title&quot;).text())},maybeLoadRiver:function(){var h=d(this),g=h.children(&quot;ul&quot;),i=h.data(&quot;river&quot;),f=h.scrollTop()+h.height();if(f!=g.height()||i.active||i.allLoaded){return}setTimeout(function(){var j=h.scrollTop(),k=j+h.height(),l=h.find(&quot;.river-waiting&quot;);if(f!=k||k!=g.height()||i.active||i.allLoaded){return}i.active=true;l.show();h.scrollTop(j+l.outerHeight());e.linkAJAX(h,{page:i.page},function(m){i.page++;i.active=false;i.allLoaded=!m;l.hide()},{append:true,delay:e.minRiverAJAXDuration})},e.timeToTriggerRiver)},searchInternalLinks:function(){var f=d(this),h,g=f.val();if(g.length&gt;2){c.recent.hide();c.search.show();if(e.lastSearch==g){return}e.lastSearch=g;h=f.siblings(&quot;img.waiting&quot;).show();c.search.data(&quot;river&quot;,e.riverDefaults());c.search.scrollTop(0);e.linkAJAX(c.search,{title:g},function(){h.hide()})}else{c.search.hide();c.recent.show()}},linkAJAX:function(i,h,j,g){var f;g=g||{};if(!i.hasClass(&quot;query-results&quot;)){i=i.parents(&quot;.query-results&quot;)}if(!i.length){return}f=e.delayedCallback(function(k){e.processAJAXResponse(i,k,j,g)},g.delay);d.post(ajaxurl,d.extend({action:&quot;wp-link-ajax&quot;},h),f,&quot;json&quot;)},processAJAXResponse:function(i,f,j,g){var h=&quot;&quot;;if(!f){if(!g.append){h+='&lt;li class=&quot;no-matches-found unselectable&quot;&gt;&lt;span class=&quot;item-title&quot;&gt;&lt;em&gt;'+wpLinkL10n.noMatchesFound+&quot;&lt;/em&gt;&lt;/span&gt;&lt;/li&gt;&quot;}}else{d.each(f,function(){h+='&lt;li&gt;&lt;input type=&quot;hidden&quot; class=&quot;item-permalink&quot; value=&quot;'+this[&quot;permalink&quot;]+'&quot; /&gt;';h+='&lt;span class=&quot;item-title&quot;&gt;';h+=this[&quot;title&quot;]?this[&quot;title&quot;]:&quot;&lt;em&gt;&quot;+wpLinkL10n.untitled+&quot;&lt;/em&gt;&quot;;h+='&lt;/span&gt;&lt;span class=&quot;item-info&quot;&gt;'+this[&quot;info&quot;]+&quot;&lt;/span&gt;&lt;/li&gt;&quot;})}i.children(&quot;ul&quot;)[g.append?&quot;append&quot;:&quot;html&quot;](h);if(j){j(f)}},delayedCallback:function(h,f){var k,j,i,g;if(!f){return h}setTimeout(function(){if(j){return h.apply(g,i)}k=true},f);return function(){if(k){return h.apply(this,arguments)}i=arguments;g=this;j=true}}};d(document).ready(e.init)})(jQuery);
</ins><span class="cx">\ No newline at end of file
</span></span></pre></div>
<a id="trunkwpincludesjstinymcewpmcelinkincludesphp"></a>
<div class="delfile"><h4>Deleted: trunk/wp-includes/js/tinymce/wp-mce-link-includes.php (16456 => 16457)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/js/tinymce/wp-mce-link-includes.php        2010-11-18 05:38:53 UTC (rev 16456)
+++ trunk/wp-includes/js/tinymce/wp-mce-link-includes.php        2010-11-18 06:22:13 UTC (rev 16457)
</span><span class="lines">@@ -1,66 +0,0 @@
</span><del>-&lt;?php
-// args expects optionally 'pagenum' and 's'
-function wp_link_query( $args = array() ) {
-        $pts = get_post_types( array( 'publicly_queryable' =&gt; true ), 'objects' );
-        $pt_names = array_keys( $pts );
-
-        $query = array(
-                'post_type' =&gt; $pt_names,
-                'suppress_filters' =&gt; true,
-                'update_post_term_cache' =&gt; false,
-                'update_post_meta_cache' =&gt; false,
-                'post_status' =&gt; 'publish',
-                'order' =&gt; 'DESC',
-                'orderby' =&gt; 'post_date',
-                'posts_per_page' =&gt; 20,
-        );
-
-        $args['pagenum'] = isset( $args['pagenum'] ) ? absint( $args['pagenum'] ) : 1;
-
-        if ( isset( $args['s'] ) )
-                $query['s'] = $args['s'];
-
-        $query['offset'] = $args['pagenum'] &gt; 1 ? $query['posts_per_page'] * ( $args['pagenum'] - 1 ) : 0;
-
-        // Do main query.
-        $get_posts = new WP_Query;
-        $posts = $get_posts-&gt;query( $query );
-        // Check if any posts were found.
-        if ( ! $get_posts-&gt;post_count )
-                return false;
-
-        // Build results.
-        $results = array();
-        foreach ( $posts as $post ) {
-                if ( 'post' == $post-&gt;post_type )
-                        $info = mysql2date( __( 'Y/m/d' ), $post-&gt;post_date );
-                else
-                        $info = $pts[ $post-&gt;post_type ]-&gt;labels-&gt;singular_name;
-
-                $results[] = array(
-                        'ID' =&gt; $post-&gt;ID,
-                        'title' =&gt; esc_html( strip_tags($post-&gt;post_title) ),
-                        'permalink' =&gt; get_permalink( $post-&gt;ID ),
-                        'info' =&gt; $info,
-                );
-        }
-
-        return $results;
-}
-
-function wp_link_ajax( $request ) {
-        // Searches have a title term.
-        if ( isset( $request['title'] ) )
-                $args['s'] = stripslashes( $request['title'] );
-        $args['pagenum'] = ! empty( $request['page'] ) ? absint( $request['page'] ) : 1;
-
-        $results = wp_link_query( $args );
-
-        if ( ! isset( $results ) )
-                die( '0' );
-
-        echo json_encode( $results );
-        echo &quot;\n&quot;;
-}
-
-?&gt;
</del><span class="cx">\ No newline at end of file
</span></span></pre></div>
<a id="trunkwpincludesjstinymcewpmcelinkphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/js/tinymce/wp-mce-link.php (16456 => 16457)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/js/tinymce/wp-mce-link.php        2010-11-18 05:38:53 UTC (rev 16456)
+++ trunk/wp-includes/js/tinymce/wp-mce-link.php        2010-11-18 06:22:13 UTC (rev 16457)
</span><span class="lines">@@ -1,160 +1,71 @@
</span><span class="cx"> &lt;?php
</span><ins>+// args expects optionally 'pagenum' and 's'
+function wp_link_query( $args = array() ) {
+        $pts = get_post_types( array( 'publicly_queryable' =&gt; true ), 'objects' );
+        $pt_names = array_keys( $pts );
</ins><span class="cx"> 
</span><del>-require_once '../../../wp-load.php';
-include './wp-mce-link-includes.php';
</del><ins>+        $query = array(
+                'post_type' =&gt; $pt_names,
+                'suppress_filters' =&gt; true,
+                'update_post_term_cache' =&gt; false,
+                'update_post_meta_cache' =&gt; false,
+                'post_status' =&gt; 'publish',
+                'order' =&gt; 'DESC',
+                'orderby' =&gt; 'post_date',
+                'posts_per_page' =&gt; 20,
+        );
</ins><span class="cx"> 
</span><del>-header( 'Content-Type: text/html; charset=' . get_bloginfo( 'charset' ) );
-?&gt;
-&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
-&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; &lt;?php language_attributes(); ?&gt;&gt;
-&lt;head&gt;
-&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;&lt;?php bloginfo('html_type'); ?&gt;; charset=&lt;?php echo get_bloginfo('charset'); ?&gt;&quot; /&gt;
-&lt;title&gt;&lt;?php _e( 'Insert/edit link' ); ?&gt;&lt;/title&gt;
-&lt;script type=&quot;text/javascript&quot;&gt;
-//&lt;![CDATA[
-var ajaxurl = '&lt;?php echo admin_url( 'admin-ajax.php' ); ?&gt;',
-        wpLinkL10n = {
-                untitled : '&lt;?php _e('Untitled'); ?&gt;',
-                noMatchesFound : '&lt;?php _e( 'No matches found.' ); ?&gt;'
-        };
-//]]&gt;
-&lt;/script&gt;
-&lt;script type=&quot;text/javascript&quot; src=&quot;tiny_mce_popup.js?ver=3223&quot;&gt;&lt;/script&gt;
-&lt;?php
-wp_print_scripts( array( 'jquery', 'jquery-ui-widget' ) );
-$suffix = defined( 'SCRIPT_DEBUG' ) &amp;&amp; SCRIPT_DEBUG ? '.dev' : '';
-$src = &quot;plugins/wplink/js/wplink$suffix.js?ver=20101116b&quot;;
-?&gt;
-&lt;script type=&quot;text/javascript&quot; src=&quot;&lt;?php echo $src; ?&gt;&quot;&gt;&lt;/script&gt;
-&lt;?php
-wp_admin_css( 'global', true );
-wp_admin_css( 'wp-admin', true );
-register_admin_color_schemes();
-wp_admin_css( 'colors', true );
-?&gt;
-&lt;style&gt;
-html {
-        background: #f1f1f1;
</del><ins>+        $args['pagenum'] = isset( $args['pagenum'] ) ? absint( $args['pagenum'] ) : 1;
+
+        if ( isset( $args['s'] ) )
+                $query['s'] = $args['s'];
+
+        $query['offset'] = $args['pagenum'] &gt; 1 ? $query['posts_per_page'] * ( $args['pagenum'] - 1 ) : 0;
+
+        // Do main query.
+        $get_posts = new WP_Query;
+        $posts = $get_posts-&gt;query( $query );
+        // Check if any posts were found.
+        if ( ! $get_posts-&gt;post_count )
+                return false;
+
+        // Build results.
+        $results = array();
+        foreach ( $posts as $post ) {
+                if ( 'post' == $post-&gt;post_type )
+                        $info = mysql2date( __( 'Y/m/d' ), $post-&gt;post_date );
+                else
+                        $info = $pts[ $post-&gt;post_type ]-&gt;labels-&gt;singular_name;
+
+                $results[] = array(
+                        'ID' =&gt; $post-&gt;ID,
+                        'title' =&gt; esc_html( strip_tags($post-&gt;post_title) ),
+                        'permalink' =&gt; get_permalink( $post-&gt;ID ),
+                        'info' =&gt; $info,
+                );
+        }
+
+        return $results;
</ins><span class="cx"> }
</span><del>-a:link, a:visited {
-        color: #21759b;
</del><ins>+
+function wp_link_ajax( $request ) {
+        // Searches have a title term.
+        if ( isset( $request['title'] ) )
+                $args['s'] = stripslashes( $request['title'] );
+        $args['pagenum'] = ! empty( $request['page'] ) ? absint( $request['page'] ) : 1;
+
+        $results = wp_link_query( $args );
+
+        if ( ! isset( $results ) )
+                die( '0' );
+
+        echo json_encode( $results );
+        echo &quot;\n&quot;;
</ins><span class="cx"> }
</span><del>-p.howto {
-        margin: 3px;
-}
-#link-options {
-        padding: 10px 0 14px;
-        border-bottom: 1px solid #dfdfdf;
-        margin: 0 6px 14px;
-}
-label input[type=&quot;text&quot;] {
-        width: 360px;
-        margin-top: 5px;
-}
-label span {
-        display: inline-block;
-        width: 80px;
-        text-align: right;
-        padding-right: 5px;
-}
-.link-search-wrapper {
-        margin: 5px 5px 9px;
-        display: block;
-        overflow: hidden;
-}
-.link-search-wrapper span {
-        float: left;
-        margin-top: 6px;
-}
-.link-search-wrapper input[type=&quot;text&quot;] {
-        float: left;
-        width: 220px;
-}
-.link-search-wrapper img.waiting {
-        margin: 8px 1px 0 4px;
-        float: left;
-        display: none;
-}
-#open-in-new-tab {
-        display: inline-block;
-        padding: 3px 0 0;
-        margin: 0 0 0 87px;
-}
-#open-in-new-tab span {
-        width: auto;
-        margin-left: 6px;
-        font-size: 11px;
-}
-.query-results {
-        border: 1px #dfdfdf solid;
-        margin: 0 5px 5px;
-        background: #fff;
-        height: 185px;
-        overflow: auto;
-}
-.query-results li {
-        margin-bottom: 0;
-        border-bottom: 1px solid #f1f1f1;
-        color: #555;
-        padding: 4px 6px;
-        cursor: pointer;
-}
-.query-results li:hover {
-        background: #eaf2fa;
-        color: #333;
-}
-.query-results li.unselectable:hover {
-        background: #fff;
-        cursor: auto;
-        color: #555;
-}
-.query-results li.unselectable {
-        border-bottom: 1px solid #dfdfdf;
-}
-.query-results li.selected {
-        background: #f1f1f1;
-        color: #333;
-}
-.query-results li.selected .item-title {
-        font-weight: bold;
-}
-.item-info {
-        text-transform: uppercase;
-        color: #aaa;
-        font-size: 11px;
-        float: right;
-}
-#search-results {
-        display: none;
-}
-.river-waiting {
-        display: none;
-        padding: 10px 0;
-}
-.river-waiting img.waiting {
-        margin: 0 auto;
-        display: block;
-}
-.submitbox {
-        padding: 5px 5px 0;
-        font-size: 11px;
-        overflow: auto;
-        height: 29px;
-}
-#wp-cancel {
-        line-height: 25px;
-        float: left;
-}
-#wp-update {
-        line-height: 23px;
-        float: right;
-}
-#wp-update a {
-        display: inline-block;
-}
-&lt;/style&gt;
-&lt;/head&gt;
-&lt;body id=&quot;post-body&quot;&gt;
</del><ins>+
+function wp_link_dialog() {
+?&gt;
+&lt;div id=&quot;wp-link&quot;&gt;
</ins><span class="cx"> &lt;div id=&quot;link-selector&quot;&gt;
</span><span class="cx">         &lt;div id=&quot;link-options&quot;&gt;
</span><span class="cx">                 &lt;p class=&quot;howto&quot;&gt;&lt;?php _e( 'Enter the destination URL:' ); ?&gt;&lt;/p&gt;
</span><span class="lines">@@ -204,12 +115,12 @@
</span><span class="cx">         &lt;/div&gt;
</span><span class="cx"> &lt;/div&gt;
</span><span class="cx"> &lt;div class=&quot;submitbox&quot;&gt;
</span><del>-        &lt;div id=&quot;wp-cancel&quot;&gt;
</del><ins>+        &lt;div id=&quot;wp-link-cancel&quot;&gt;
</ins><span class="cx">                 &lt;a class=&quot;submitdelete deletion&quot;&gt;&lt;?php _e( 'Cancel' ); ?&gt;&lt;/a&gt;
</span><span class="cx">         &lt;/div&gt;
</span><del>-        &lt;div id=&quot;wp-update&quot;&gt;
</del><ins>+        &lt;div id=&quot;wp-link-update&quot;&gt;
</ins><span class="cx">                 &lt;a class=&quot;button-primary&quot;&gt;&lt;?php _e( 'Update' ); ?&gt;&lt;/a&gt;
</span><span class="cx">         &lt;/div&gt;
</span><span class="cx"> &lt;/div&gt;
</span><del>-&lt;/body&gt;
-&lt;/html&gt;
</del><span class="cx">\ No newline at end of file
</span><ins>+&lt;/div&gt;
+&lt;?php } ?&gt;
</ins><span class="cx">\ No newline at end of file
</span></span></pre></div>
<a id="trunkwpincludesjstinymcewptinymcejsgz"></a>
<div class="binary"><h4>Modified: trunk/wp-includes/js/tinymce/wp-tinymce.js.gz</h4>
<pre class="diff"><span>
<span class="cx">(Binary files differ)
</span></span></pre></div>
<a id="trunkwpincludesscriptloaderphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/script-loader.php (16456 => 16457)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/script-loader.php        2010-11-18 05:38:53 UTC (rev 16456)
+++ trunk/wp-includes/script-loader.php        2010-11-18 06:22:13 UTC (rev 16457)
</span><span class="lines">@@ -268,6 +268,14 @@
</span><span class="cx">                 'url' =&gt; __( 'URL:' ),
</span><span class="cx">                 'noShortlink' =&gt; __( 'No shortlink available for this page.' ),
</span><span class="cx">         ) );
</span><ins>+        
+        $scripts-&gt;add( 'wplink', &quot;/wp-includes/js/tinymce/plugins/wplink/js/wplink$suffix.js&quot;, array('jquery'), '20101117' );
+        $scripts-&gt;localize( 'wplink', 'wpLinkL10n', array(
+                'untitled' =&gt; __('Untitled'),
+                'noMatchesFound' =&gt; __('No matches found.'),
+        ) );
+        
+        $scripts-&gt;add( 'wpdialogsPopup', &quot;/wp-includes/js/tinymce/plugins/wpdialogs/js/popup$suffix.js&quot;, false, '20101117' );
</ins><span class="cx"> 
</span><span class="cx">         if ( is_admin() ) {
</span><span class="cx">                 $scripts-&gt;add( 'ajaxcat', &quot;/wp-admin/js/cat$suffix.js&quot;, array( 'wp-lists' ), '20090102' );
</span><span class="lines">@@ -504,6 +512,11 @@
</span><span class="cx"> 
</span><span class="cx">         // Admin bar
</span><span class="cx">         $styles-&gt;add( 'admin-bar', &quot;/wp-includes/css/admin-bar$suffix.css&quot;, array(), '20101117' );
</span><ins>+        
+        // WP jQuery UI Dialog 
+        $styles-&gt;add( 'wp-jquery-ui-dialog', &quot;/wp-includes/css/jquery-ui-dialog$suffix.css&quot;, array(), '20101117' );
+        // WPLink TinyMCE plugin
+        $styles-&gt;add( 'wplink', &quot;/wp-includes/js/tinymce/plugins/wplink/css/wplink$suffix.css&quot;, array(), '20101117' );
</ins><span class="cx"> 
</span><span class="cx">         foreach ( $rtl_styles as $rtl_style ) {
</span><span class="cx">                 $styles-&gt;add_data( $rtl_style, 'rtl', true );
</span></span></pre>
</div>
</div>

</body>
</html>