<!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>[13833] trunk: Remove 'Turbo' link from admin header.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/13833">13833</a></dd>
<dt>Author</dt> <dd>nacin</dd>
<dt>Date</dt> <dd>2010-03-26 20:59:57 +0000 (Fri, 26 Mar 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>Remove 'Turbo' link from admin header. see <a href="http://trac.wordpress.org/ticket/11301">#11301</a></pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpadminadminheaderphp">trunk/wp-admin/admin-header.php</a></li>
<li><a href="#trunkwpadminjscommondevjs">trunk/wp-admin/js/common.dev.js</a></li>
<li><a href="#trunkwpadminjscommonjs">trunk/wp-admin/js/common.js</a></li>
<li><a href="#trunkwpincludesscriptloaderphp">trunk/wp-includes/script-loader.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpadminadminheaderphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/admin-header.php (13832 => 13833)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/admin-header.php        2010-03-26 19:55:48 UTC (rev 13832)
+++ trunk/wp-admin/admin-header.php        2010-03-26 20:59:57 UTC (rev 13833)
</span><span class="lines">@@ -113,8 +113,6 @@
</span><span class="cx"> &lt;p&gt;&lt;?php
</span><span class="cx"> $links = array();
</span><span class="cx"> $links[5] = sprintf(__('Howdy, &lt;a href=&quot;%1$s&quot; title=&quot;Edit your profile&quot;&gt;%2$s&lt;/a&gt;'), 'profile.php', $user_identity);
</span><del>-if ( ! $is_opera )
-        $links[10] = '&lt;span class=&quot;turbo-nag hidden&quot;&gt; | &lt;a href=&quot;tools.php&quot;&gt;' . __('Turbo') . '&lt;/a&gt;&lt;/span&gt;';
</del><span class="cx"> $links[15] = '| &lt;a href=&quot;' . wp_logout_url() . '&quot; title=&quot;' . __('Log Out') . '&quot;&gt;' . __('Log Out') . '&lt;/a&gt;';
</span><span class="cx"> 
</span><span class="cx"> $links = apply_filters('admin_user_info_links', $links, $current_user);
</span></span></pre></div>
<a id="trunkwpadminjscommondevjs"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/js/common.dev.js (13832 => 13833)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/js/common.dev.js        2010-03-26 19:55:48 UTC (rev 13832)
+++ trunk/wp-admin/js/common.dev.js        2010-03-26 20:59:57 UTC (rev 13833)
</span><span class="lines">@@ -300,24 +300,4 @@
</span><span class="cx">                 if ( this.lastKey &amp;&amp; 9 == this.lastKey )
</span><span class="cx">                         this.focus();
</span><span class="cx">         });
</span><del>-});
-
-jQuery(document).ready( function($){
-        var turboNag = $('span.turbo-nag', '#user_info');
-
-        if ( !turboNag.length || ('undefined' != typeof(google) &amp;&amp; google.gears) )
-                return;
-
-        if ( 'undefined' != typeof GearsFactory ) {
-                return;
-        } else {
-                try {
-                        if ( ( 'undefined' != typeof window.ActiveXObject &amp;&amp; ActiveXObject('Gears.Factory') ) ||
-                                ( 'undefined' != typeof navigator.mimeTypes &amp;&amp; navigator.mimeTypes['application/x-googlegears'] ) ) {
-                                        return;
-                        }
-                } catch(e){}
-        }
-
-        turboNag.show();
-});
</del><ins>+});
</ins><span class="cx">\ No newline at end of file
</span></span></pre></div>
<a id="trunkwpadminjscommonjs"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/js/common.js (13832 => 13833)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/js/common.js        2010-03-26 19:55:48 UTC (rev 13832)
+++ trunk/wp-admin/js/common.js        2010-03-26 20:59:57 UTC (rev 13833)
</span><span class="lines">@@ -1 +1 @@
</span><del>-var showNotice,adminMenu,columns,validateForm;(function($){adminMenu={init:function(){var menu=$(&quot;#adminmenu&quot;);$(&quot;.wp-menu-toggle&quot;,menu).each(function(){var t=$(this),sub=t.siblings(&quot;.wp-submenu&quot;);if(sub.length){t.click(function(){adminMenu.toggle(sub)})}else{t.hide()}});this.favorites();$(&quot;.separator&quot;,menu).click(function(){if($(&quot;body&quot;).hasClass(&quot;folded&quot;)){adminMenu.fold(1);deleteUserSetting(&quot;mfold&quot;)}else{adminMenu.fold();setUserSetting(&quot;mfold&quot;,&quot;f&quot;)}return false});if($(&quot;body&quot;).hasClass(&quot;folded&quot;)){this.fold()}this.restoreMenuState()},restoreMenuState:function(){$(&quot;li.wp-has-submenu&quot;,&quot;#adminmenu&quot;).each(function(i,e){var v=getUserSetting(&quot;m&quot;+i);if($(e).hasClass(&quot;wp-has-current-submenu&quot;)){return true}if(&quot;o&quot;==v){$(e).addClass(&quot;wp-menu-open&quot;)}else{if(&quot;c&quot;==v){$(e).removeClass(&quot;wp-menu-open&quot;)}}})},toggle:function(el){var id=el.slideToggle(150,function(){el.css(&quot;display&quot;,&quot;&quot;)}).parent().toggleClass(&quot;wp-menu-open&quot;).attr(&quot;id&quot;);if(id){$(&quot;li.wp-has-submenu&quot;,&quot;#adminmenu&quot;).each(function(i,e){if(id==e.id){var v=$(e).hasClass(&quot;wp-menu-open&quot;)?&quot;o&quot;:&quot;c&quot;;setUserSetting(&quot;m&quot;+i,v)}})}return false},fold:function(off){if(off){$(&quot;body&quot;).removeClass(&quot;folded&quot;);$(&quot;#adminmenu li.wp-has-submenu&quot;).unbind()}else{$(&quot;body&quot;).addClass(&quot;folded&quot;);$(&quot;#adminmenu li.wp-has-submenu&quot;).hoverIntent({over:function(e){var m,b,h,o,f;m=$(this).find(&quot;.wp-submenu&quot;);b=$(this).offset().top+m.height()+1;h=$(&quot;#wpwrap&quot;).height();o=60+b-h;f=$(window).height()+$(window).scrollTop()-15;if(f&lt;(b-o)){o=b-f}if(o&gt;1){m.css({marginTop:&quot;-&quot;+o+&quot;px&quot;})}else{if(m.css(&quot;marginTop&quot;)){m.css({marginTop:&quot;&quot;})}}m.addClass(&quot;sub-open&quot;)},out:function(){$(this).find(&quot;.wp-submenu&quot;).removeClass(&quot;sub-open&quot;).css({marginTop:&quot;&quot;})},timeout:220,sensitivity:8,interval:100})}},favorites:function(){$(&quot;#favorite-inside&quot;).width($(&quot;#favorite-actions&quot;).width()-4);$(&quot;#favorite-toggle, #favorite-inside&quot;).bind(&quot;mouseenter&quot;,function(){$(&quot;#favorite-inside&quot;).removeClass(&quot;slideUp&quot;).addClass(&quot;slideDown&quot;);setTimeout(function(){if($(&quot;#favorite-inside&quot;).hasClass(&quot;slideDown&quot;)){$(&quot;#favorite-inside&quot;).slideDown(100);$(&quot;#favorite-first&quot;).addClass(&quot;slide-down&quot;)}},200)}).bind(&quot;mouseleave&quot;,function(){$(&quot;#favorite-inside&quot;).removeClass(&quot;slideDown&quot;).addClass(&quot;slideUp&quot;);setTimeout(function(){if($(&quot;#favorite-inside&quot;).hasClass(&quot;slideUp&quot;)){$(&quot;#favorite-inside&quot;).slideUp(100,function(){$(&quot;#favorite-first&quot;).removeClass(&quot;slide-down&quot;)})}},300)})}};$(document).ready(function(){adminMenu.init()});columns={init:function(){$(&quot;.hide-column-tog&quot;,&quot;#adv-settings&quot;).click(function(){var column=$(this).val();if($(this).attr(&quot;checked&quot;)){$(&quot;.column-&quot;+column).show()}else{$(&quot;.column-&quot;+column).hide()}columns.save_manage_columns_state()})},save_manage_columns_state:function(){var hidden=$(&quot;.manage-column&quot;).filter(&quot;:hidden&quot;).map(function(){return this.id}).get().join(&quot;,&quot;);$.post(ajaxurl,{action:&quot;hidden-columns&quot;,hidden:hidden,screenoptionnonce:$(&quot;#screenoptionnonce&quot;).val(),page:pagenow})}};$(document).ready(function(){columns.init()});validateForm=function(form){return !$(form).find(&quot;.form-required&quot;).filter(function(){return $(&quot;input:visible&quot;,this).val()==&quot;&quot;}).addClass(&quot;form-invalid&quot;).find(&quot;input:visible&quot;).change(function(){$(this).closest(&quot;.form-invalid&quot;).removeClass(&quot;form-invalid&quot;)}).size()}})(jQuery);showNotice={warn:function(){var msg=commonL10n.warnDelete||&quot;&quot;;if(confirm(msg)){return true}return false},note:function(text){alert(text)}};jQuery(document).ready(function($){var lastClicked=false,checks,first,last,checked;$(&quot;div.wrap h2:first&quot;).nextAll(&quot;div.updated, div.error&quot;).addClass(&quot;below-h2&quot;);$(&quot;div.updated, div.error&quot;).not(&quot;.below-h2, .inline&quot;).insertAfter($(&quot;div.wrap h2:first&quot;));$(&quot;#show-settings-link&quot;).click(function(){if(!$(&quot;#screen-options-wrap&quot;).hasClass(&quot;screen-options-open&quot;)){$(&quot;#contextual-help-link-wrap&quot;).css(&quot;visibility&quot;,&quot;hidden&quot;)}$(&quot;#screen-options-wrap&quot;).slideToggle(&quot;fast&quot;,function(){if($(this).hasClass(&quot;screen-options-open&quot;)){$(&quot;#show-settings-link&quot;).css({backgroundImage:'url(&quot;images/screen-options-right.gif&quot;)'});$(&quot;#contextual-help-link-wrap&quot;).css(&quot;visibility&quot;,&quot;&quot;);$(this).removeClass(&quot;screen-options-open&quot;)}else{$(&quot;#show-settings-link&quot;).css({backgroundImage:'url(&quot;images/screen-options-right-up.gif&quot;)'});$(this).addClass(&quot;screen-options-open&quot;)}});return false});$(&quot;#contextual-help-link&quot;).click(function(){if(!$(&quot;#contextual-help-wrap&quot;).hasClass(&quot;contextual-help-open&quot;)){$(&quot;#screen-options-link-wrap&quot;).css(&quot;visibility&quot;,&quot;hidden&quot;)}$(&quot;#contextual-help-wrap&quot;).slideToggle(&quot;fast&quot;,function(){if($(this).hasClass(&quot;contextual-help-open&quot;)){$(&quot;#contextual-help-link&quot;).css({backgroundImage:'url(&quot;images/screen-options-right.gif&quot;)'});$(&quot;#screen-options-link-wrap&quot;).css(&quot;visibility&quot;,&quot;&quot;);$(this).removeClass(&quot;contextual-help-open&quot;)}else{$(&quot;#contextual-help-link&quot;).css({backgroundImage:'url(&quot;images/screen-options-right-up.gif&quot;)'});$(this).addClass(&quot;contextual-help-open&quot;)}});return false});$(&quot;tbody&quot;).children().children(&quot;.check-column&quot;).find(&quot;:checkbox&quot;).click(function(e){if(&quot;undefined&quot;==e.shiftKey){return true}if(e.shiftKey){if(!lastClicked){return true}checks=$(lastClicked).closest(&quot;form&quot;).find(&quot;:checkbox&quot;);first=checks.index(lastClicked);last=checks.index(this);checked=$(this).attr(&quot;checked&quot;);if(0&lt;first&amp;&amp;0&lt;last&amp;&amp;first!=last){checks.slice(first,last).attr(&quot;checked&quot;,function(){if($(this).closest(&quot;tr&quot;).is(&quot;:visible&quot;)){return checked?&quot;checked&quot;:&quot;&quot;}return&quot;&quot;})}}lastClicked=this;return true});$(&quot;thead, tfoot&quot;).find(&quot;:checkbox&quot;).click(function(e){var c=$(this).attr(&quot;checked&quot;),kbtoggle=&quot;undefined&quot;==typeof toggleWithKeyboard?false:toggleWithKeyboard,toggle=e.shiftKey||kbtoggle;$(this).closest(&quot;table&quot;).children(&quot;tbody&quot;).filter(&quot;:visible&quot;).children().children(&quot;.check-column&quot;).find(&quot;:checkbox&quot;).attr(&quot;checked&quot;,function(){if($(this).closest(&quot;tr&quot;).is(&quot;:hidden&quot;)){return&quot;&quot;}if(toggle){return $(this).attr(&quot;checked&quot;)?&quot;&quot;:&quot;checked&quot;}else{if(c){return&quot;checked&quot;}}return&quot;&quot;});$(this).closest(&quot;table&quot;).children(&quot;thead,  tfoot&quot;).filter(&quot;:visible&quot;).children().children(&quot;.check-column&quot;).find(&quot;:checkbox&quot;).attr(&quot;checked&quot;,function(){if(toggle){return&quot;&quot;}else{if(c){return&quot;checked&quot;}}return&quot;&quot;})});$(&quot;#default-password-nag-no&quot;).click(function(){setUserSetting(&quot;default_password_nag&quot;,&quot;hide&quot;);$(&quot;div.default-password-nag&quot;).hide();return false});$(&quot;#newcontent&quot;).keydown(function(e){if(e.keyCode!=9){return true}var el=e.target,selStart=el.selectionStart,selEnd=el.selectionEnd,val=el.value,scroll,sel;try{this.lastKey=9}catch(err){}if(document.selection){el.focus();sel=document.selection.createRange();sel.text=&quot;\t&quot;}else{if(selStart&gt;=0){scroll=this.scrollTop;el.value=val.substring(0,selStart).concat(&quot;\t&quot;,val.substring(selEnd));el.selectionStart=el.selectionEnd=selStart+1;this.scrollTop=scroll}}if(e.stopPropagation){e.stopPropagation()}if(e.preventDefault){e.preventDefault()}});$(&quot;#newcontent&quot;).blur(function(e){if(this.lastKey&amp;&amp;9==this.lastKey){this.focus()}})});jQuery(document).ready(function($){var turboNag=$(&quot;span.turbo-nag&quot;,&quot;#user_info&quot;);if(!turboNag.length||(&quot;undefined&quot;!=typeof(google)&amp;&amp;google.gears)){return}if(&quot;undefined&quot;!=typeof GearsFactory){return}else{try{if((&quot;undefined&quot;!=typeof window.ActiveXObject&amp;&amp;ActiveXObject(&quot;Gears.Factory&quot;))||(&quot;undefined&quot;!=typeof navigator.mimeTypes&amp;&amp;navigator.mimeTypes[&quot;application/x-googlegears&quot;])){return}}catch(e){}}turboNag.show()});
</del><span class="cx">\ No newline at end of file
</span><ins>+var showNotice,adminMenu,columns,validateForm;(function(a){adminMenu={init:function(){var b=a(&quot;#adminmenu&quot;);a(&quot;.wp-menu-toggle&quot;,b).each(function(){var c=a(this),d=c.siblings(&quot;.wp-submenu&quot;);if(d.length){c.click(function(){adminMenu.toggle(d)})}else{c.hide()}});this.favorites();a(&quot;.separator&quot;,b).click(function(){if(a(&quot;body&quot;).hasClass(&quot;folded&quot;)){adminMenu.fold(1);deleteUserSetting(&quot;mfold&quot;)}else{adminMenu.fold();setUserSetting(&quot;mfold&quot;,&quot;f&quot;)}return false});if(a(&quot;body&quot;).hasClass(&quot;folded&quot;)){this.fold()}this.restoreMenuState()},restoreMenuState:function(){a(&quot;li.wp-has-submenu&quot;,&quot;#adminmenu&quot;).each(function(c,d){var b=getUserSetting(&quot;m&quot;+c);if(a(d).hasClass(&quot;wp-has-current-submenu&quot;)){return true}if(&quot;o&quot;==b){a(d).addClass(&quot;wp-menu-open&quot;)}else{if(&quot;c&quot;==b){a(d).removeClass(&quot;wp-menu-open&quot;)}}})},toggle:function(b){var c=b.slideToggle(150,function(){b.css(&quot;display&quot;,&quot;&quot;)}).parent().toggleClass(&quot;wp-menu-open&quot;).attr(&quot;id&quot;);if(c){a(&quot;li.wp-has-submenu&quot;,&quot;#adminmenu&quot;).each(function(f,g){if(c==g.id){var d=a(g).hasClass(&quot;wp-menu-open&quot;)?&quot;o&quot;:&quot;c&quot;;setUserSetting(&quot;m&quot;+f,d)}})}return false},fold:function(b){if(b){a(&quot;body&quot;).removeClass(&quot;folded&quot;);a(&quot;#adminmenu li.wp-has-submenu&quot;).unbind()}else{a(&quot;body&quot;).addClass(&quot;folded&quot;);a(&quot;#adminmenu li.wp-has-submenu&quot;).hoverIntent({over:function(j){var d,c,g,k,i;d=a(this).find(&quot;.wp-submenu&quot;);c=a(this).offset().top+d.height()+1;g=a(&quot;#wpwrap&quot;).height();k=60+c-g;i=a(window).height()+a(window).scrollTop()-15;if(i&lt;(c-k)){k=c-i}if(k&gt;1){d.css({marginTop:&quot;-&quot;+k+&quot;px&quot;})}else{if(d.css(&quot;marginTop&quot;)){d.css({marginTop:&quot;&quot;})}}d.addClass(&quot;sub-open&quot;)},out:function(){a(this).find(&quot;.wp-submenu&quot;).removeClass(&quot;sub-open&quot;).css({marginTop:&quot;&quot;})},timeout:220,sensitivity:8,interval:100})}},favorites:function(){a(&quot;#favorite-inside&quot;).width(a(&quot;#favorite-actions&quot;).width()-4);a(&quot;#favorite-toggle, #favorite-inside&quot;).bind(&quot;mouseenter&quot;,function(){a(&quot;#favorite-inside&quot;).removeClass(&quot;slideUp&quot;).addClass(&quot;slideDown&quot;);setTimeout(function(){if(a(&quot;#favorite-inside&quot;).hasClass(&quot;slideDown&quot;)){a(&quot;#favorite-inside&quot;).slideDown(100);a(&quot;#favorite-first&quot;).addClass(&quot;slide-down&quot;)}},200)}).bind(&quot;mouseleave&quot;,function(){a(&quot;#favorite-inside&quot;).removeClass(&quot;slideDown&quot;).addClass(&quot;slideUp&quot;);setTimeout(function(){if(a(&quot;#favorite-inside&quot;).hasClass(&quot;slideUp&quot;)){a(&quot;#favorite-inside&quot;).slideUp(100,function(){a(&quot;#favorite-first&quot;).removeClass(&quot;slide-down&quot;)})}},300)})}};a(document).ready(function(){adminMenu.init()});columns={init:function(){a(&quot;.hide-column-tog&quot;,&quot;#adv-settings&quot;).click(function(){var b=a(this).val();if(a(this).attr(&quot;checked&quot;)){a(&quot;.column-&quot;+b).show()}else{a(&quot;.column-&quot;+b).hide()}columns.save_manage_columns_state()})},save_manage_columns_state:function(){var b=a(&quot;.manage-column&quot;).filter(&quot;:hidden&quot;).map(function(){return this.id}).get().join(&quot;,&quot;);a.post(ajaxurl,{action:&quot;hidden-columns&quot;,hidden:b,screenoptionnonce:a(&quot;#screenoptionnonce&quot;).val(),page:pagenow})}};a(document).ready(function(){columns.init()});validateForm=function(b){return !a(b).find(&quot;.form-required&quot;).filter(function(){return a(&quot;input:visible&quot;,this).val()==&quot;&quot;}).addClass(&quot;form-invalid&quot;).find(&quot;input:visible&quot;).change(function(){a(this).closest(&quot;.form-invalid&quot;).removeClass(&quot;form-invalid&quot;)}).size()}})(jQuery);showNotice={warn:function(){var a=commonL10n.warnDelete||&quot;&quot;;if(confirm(a)){return true}return false},note:function(a){alert(a)}};jQuery(document).ready(function(d){var f=false,a,e,c,b;d(&quot;div.wrap h2:first&quot;).nextAll(&quot;div.updated, div.error&quot;).addClass(&quot;below-h2&quot;);d(&quot;div.updated, div.error&quot;).not(&quot;.below-h2, .inline&quot;).insertAfter(d(&quot;div.wrap h2:first&quot;));d(&quot;#show-settings-link&quot;).click(function(){if(!d(&quot;#screen-options-wrap&quot;).hasClass(&quot;screen-options-open&quot;)){d(&quot;#contextual-help-link-wrap&quot;).css(&quot;visibility&quot;,&quot;hidden&quot;)}d(&quot;#screen-options-wrap&quot;).slideToggle(&quot;fast&quot;,function(){if(d(this).hasClass(&quot;screen-options-open&quot;)){d(&quot;#show-settings-link&quot;).css({backgroundImage:'url(&quot;images/screen-options-right.gif&quot;)'});d(&quot;#contextual-help-link-wrap&quot;).css(&quot;visibility&quot;,&quot;&quot;);d(this).removeClass(&quot;screen-options-open&quot;)}else{d(&quot;#show-settings-link&quot;).css({backgroundImage:'url(&quot;images/screen-options-right-up.gif&quot;)'});d(this).addClass(&quot;screen-options-open&quot;)}});return false});d(&quot;#contextual-help-link&quot;).click(function(){if(!d(&quot;#contextual-help-wrap&quot;).hasClass(&quot;contextual-help-open&quot;)){d(&quot;#screen-options-link-wrap&quot;).css(&quot;visibility&quot;,&quot;hidden&quot;)}d(&quot;#contextual-help-wrap&quot;).slideToggle(&quot;fast&quot;,function(){if(d(this).hasClass(&quot;contextual-help-open&quot;)){d(&quot;#contextual-help-link&quot;).css({backgroundImage:'url(&quot;images/screen-options-right.gif&quot;)'});d(&quot;#screen-options-link-wrap&quot;).css(&quot;visibility&quot;,&quot;&quot;);d(this).removeClass(&quot;contextual-help-open&quot;)}else{d(&quot;#contextual-help-link&quot;).css({backgroundImage:'url(&quot;images/screen-options-right-up.gif&quot;)'});d(this).addClass(&quot;contextual-help-open&quot;)}});return false});d(&quot;tbody&quot;).children().children(&quot;.check-column&quot;).find(&quot;:checkbox&quot;).click(function(g){if(&quot;undefined&quot;==g.shiftKey){return true}if(g.shiftKey){if(!f){return true}a=d(f).closest(&quot;form&quot;).find(&quot;:checkbox&quot;);e=a.index(f);c=a.index(this);b=d(this).attr(&quot;checked&quot;);if(0&lt;e&amp;&amp;0&lt;c&amp;&amp;e!=c){a.slice(e,c).attr(&quot;checked&quot;,function(){if(d(this).closest(&quot;tr&quot;).is(&quot;:visible&quot;)){return b?&quot;checked&quot;:&quot;&quot;}return&quot;&quot;})}}f=this;return true});d(&quot;thead, tfoot&quot;).find(&quot;:checkbox&quot;).click(function(i){var j=d(this).attr(&quot;checked&quot;),h=&quot;undefined&quot;==typeof toggleWithKeyboard?false:toggleWithKeyboard,g=i.shiftKey||h;d(this).closest(&quot;table&quot;).children(&quot;tbody&quot;).filter(&quot;:visible&quot;).children().children(&quot;.check-column&quot;).find(&quot;:checkbox&quot;).attr(&quot;checked&quot;,function(){if(d(this).closest(&quot;tr&quot;).is(&quot;:hidden&quot;)){return&quot;&quot;}if(g){return d(this).attr(&quot;checked&quot;)?&quot;&quot;:&quot;checked&quot;}else{if(j){return&quot;checked&quot;}}return&quot;&quot;});d(this).closest(&quot;table&quot;).children(&quot;thead,  tfoot&quot;).filter(&quot;:visible&quot;).children().children(&quot;.check-column&quot;).find(&quot;:checkbox&quot;).attr(&quot;checked&quot;,function(){if(g){return&quot;&quot;}else{if(j){return&quot;checked&quot;}}return&quot;&quot;})});d(&quot;#default-password-nag-no&quot;).click(function(){setUserSetting(&quot;default_password_nag&quot;,&quot;hide&quot;);d(&quot;div.default-password-nag&quot;).hide();return false});d(&quot;#newcontent&quot;).keydown(function(l){if(l.keyCode!=9){return true}var i=l.target,n=i.selectionStart,h=i.selectionEnd,m=i.value,g,k;try{this.lastKey=9}catch(j){}if(document.selection){i.focus();k=document.selection.createRange();k.text=&quot;\t&quot;}else{if(n&gt;=0){g=this.scrollTop;i.value=m.substring(0,n).concat(&quot;\t&quot;,m.substring(h));i.selectionStart=i.selectionEnd=n+1;this.scrollTop=g}}if(l.stopPropagation){l.stopPropagation()}if(l.preventDefault){l.preventDefault()}});d(&quot;#newcontent&quot;).blur(function(g){if(this.lastKey&amp;&amp;9==this.lastKey){this.focus()}})});
</ins><span class="cx">\ No newline at end of file
</span></span></pre></div>
<a id="trunkwpincludesscriptloaderphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/script-loader.php (13832 => 13833)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/script-loader.php        2010-03-26 19:55:48 UTC (rev 13832)
+++ trunk/wp-includes/script-loader.php        2010-03-26 20:59:57 UTC (rev 13833)
</span><span class="lines">@@ -60,7 +60,7 @@
</span><span class="cx"> 
</span><span class="cx">         $scripts-&gt;add( 'utils', &quot;/wp-admin/js/utils$suffix.js&quot;, false, '20090102' );
</span><span class="cx"> 
</span><del>-        $scripts-&gt;add( 'common', &quot;/wp-admin/js/common$suffix.js&quot;, array('jquery', 'hoverIntent', 'utils'), '20100302' );
</del><ins>+        $scripts-&gt;add( 'common', &quot;/wp-admin/js/common$suffix.js&quot;, array('jquery', 'hoverIntent', 'utils'), '20100326' );
</ins><span class="cx">         $scripts-&gt;add_data( 'common', 'group', 1 );
</span><span class="cx">         $scripts-&gt;localize( 'common', 'commonL10n', array(
</span><span class="cx">                 'warnDelete' =&gt; __(&quot;You are about to permanently delete the selected items.\n  'Cancel' to stop, 'OK' to delete.&quot;),
</span></span></pre>
</div>
</div>

</body>
</html>