<!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>[12060] trunk: Merge set-post-thumbnail-handler.js with post.js,
  move Post Thumbnail meta-box to /includes/meta-boxes.php, see #10928</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/12060">12060</a></dd>
<dt>Author</dt> <dd>azaozz</dd>
<dt>Date</dt> <dd>2009-10-19 20:23:35 +0000 (Mon, 19 Oct 2009)</dd>
</dl>

<h3>Log Message</h3>
<pre>Merge set-post-thumbnail-handler.js with post.js, move Post Thumbnail meta-box to /includes/meta-boxes.php, see <a href="http://trac.wordpress.org/ticket/10928">#10928</a></pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpadminincludesmediaphp">trunk/wp-admin/includes/media.php</a></li>
<li><a href="#trunkwpadminincludesmetaboxesphp">trunk/wp-admin/includes/meta-boxes.php</a></li>
<li><a href="#trunkwpadminincludespostphp">trunk/wp-admin/includes/post.php</a></li>
<li><a href="#trunkwpadminincludesupdatecorephp">trunk/wp-admin/includes/update-core.php</a></li>
<li><a href="#trunkwpadminjspostdevjs">trunk/wp-admin/js/post.dev.js</a></li>
<li><a href="#trunkwpadminjspostjs">trunk/wp-admin/js/post.js</a></li>
<li><a href="#trunkwpincludesscriptloaderphp">trunk/wp-includes/script-loader.php</a></li>
</ul>

<h3>Removed Paths</h3>
<ul>
<li><a href="#trunkwpadminjssetpostthumbnailhandlerdevjs">trunk/wp-admin/js/set-post-thumbnail-handler.dev.js</a></li>
<li><a href="#trunkwpadminjssetpostthumbnailhandlerjs">trunk/wp-admin/js/set-post-thumbnail-handler.js</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpadminincludesmediaphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/includes/media.php (12059 => 12060)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/includes/media.php        2009-10-19 16:36:21 UTC (rev 12059)
+++ trunk/wp-admin/includes/media.php        2009-10-19 20:23:35 UTC (rev 12060)
</span><span class="lines">@@ -114,26 +114,6 @@
</span><span class="cx">         return $html;
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-function _wp_post_thumbnail_html( $thumbnail_id = NULL ) {
-        $content = '&lt;p class=&quot;hide-if-no-js&quot;&gt;&lt;a href=&quot;#&quot; id=&quot;set-post-thumbnail&quot; onclick=&quot;jQuery(\'#add_image\').click();return false;&quot;&gt;' . esc_html__( 'Set thumbnail' ) . '&lt;/a&gt;&lt;/p&gt;';
-
-        if ( $thumbnail_id &amp;&amp; get_post( $thumbnail_id ) ) {
-                $thumbnail_html = wp_get_attachment_image($thumbnail_id, array( 266, 266 ) );
-                if ( !empty( $thumbnail_html ) ) {
-                        $content = '&lt;a href=&quot;#&quot; id=&quot;set-post-thumbnail&quot; onclick=&quot;jQuery(\'#add_image\').click();return false;&quot;&gt;' . $thumbnail_html . '&lt;/a&gt;';
-                        $content .= '&lt;p class=&quot;hide-if-no-js&quot;&gt;&lt;a href=&quot;#&quot; id=&quot;remove-post-thumbnail&quot; onclick=&quot;WPRemoveThumbnail();return false;&quot;&gt;' . esc_html__( 'Remove thumbnail' ) . '&lt;/a&gt;&lt;/p&gt;';
-                }
-        }
-
-        return apply_filters( 'admin_post_thumbnail_html', $content );
-}
-
-function post_thumbnail_meta_box() {
-        global $post;
-        $thumbnail_id = get_post_meta( $post-&gt;ID, '_thumbnail_id', true );
-        echo _wp_post_thumbnail_html( $thumbnail_id );
-}
-
</del><span class="cx"> /**
</span><span class="cx">  * {@internal Missing Short Description}}
</span><span class="cx">  *
</span></span></pre></div>
<a id="trunkwpadminincludesmetaboxesphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/includes/meta-boxes.php (12059 => 12060)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/includes/meta-boxes.php        2009-10-19 16:36:21 UTC (rev 12059)
+++ trunk/wp-admin/includes/meta-boxes.php        2009-10-19 20:23:35 UTC (rev 12060)
</span><span class="lines">@@ -807,3 +807,14 @@
</span><span class="cx"> &lt;/table&gt;
</span><span class="cx"> &lt;?php
</span><span class="cx"> }
</span><ins>+
+/**
+ * Display post thumbnail meta box.
+ *
+ * @since 2.9.0
+ */
+function post_thumbnail_meta_box() {
+        global $post;
+        $thumbnail_id = get_post_meta( $post-&gt;ID, '_thumbnail_id', true );
+        echo _wp_post_thumbnail_html( $thumbnail_id );
+}
</ins></span></pre></div>
<a id="trunkwpadminincludespostphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/includes/post.php (12059 => 12060)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/includes/post.php        2009-10-19 16:36:21 UTC (rev 12059)
+++ trunk/wp-admin/includes/post.php        2009-10-19 20:23:35 UTC (rev 12060)
</span><span class="lines">@@ -1029,6 +1029,28 @@
</span><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> /**
</span><ins>+ * Output HTML for the post thumbnail meta-box.
+ *
+ * @since 2.9.0
+ *
+ * @param int $thumbnail_id ID of the attachment used for thumbnail
+ * @return string html
+ */
+function _wp_post_thumbnail_html( $thumbnail_id = NULL ) {
+        $content = '&lt;p class=&quot;hide-if-no-js&quot;&gt;&lt;a href=&quot;#&quot; id=&quot;set-post-thumbnail&quot; onclick=&quot;jQuery(\'#add_image\').click();return false;&quot;&gt;' . esc_html__( 'Set thumbnail' ) . '&lt;/a&gt;&lt;/p&gt;';
+
+        if ( $thumbnail_id &amp;&amp; get_post( $thumbnail_id ) ) {
+                $thumbnail_html = wp_get_attachment_image($thumbnail_id, array( 266, 266 ) );
+                if ( !empty( $thumbnail_html ) ) {
+                        $content = '&lt;a href=&quot;#&quot; id=&quot;set-post-thumbnail&quot; onclick=&quot;jQuery(\'#add_image\').click();return false;&quot;&gt;' . $thumbnail_html . '&lt;/a&gt;';
+                        $content .= '&lt;p class=&quot;hide-if-no-js&quot;&gt;&lt;a href=&quot;#&quot; id=&quot;remove-post-thumbnail&quot; onclick=&quot;WPRemoveThumbnail();return false;&quot;&gt;' . esc_html__( 'Remove thumbnail' ) . '&lt;/a&gt;&lt;/p&gt;';
+                }
+        }
+
+        return apply_filters( 'admin_post_thumbnail_html', $content );
+}
+
+/**
</ins><span class="cx">  * Check to see if the post is currently being edited by another user.
</span><span class="cx">  *
</span><span class="cx">  * @since 2.5.0
</span></span></pre></div>
<a id="trunkwpadminincludesupdatecorephp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/includes/update-core.php (12059 => 12060)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/includes/update-core.php        2009-10-19 16:36:21 UTC (rev 12059)
+++ trunk/wp-admin/includes/update-core.php        2009-10-19 20:23:35 UTC (rev 12060)
</span><span class="lines">@@ -55,6 +55,12 @@
</span><span class="cx"> 'wp-admin/js/link-cat.js',
</span><span class="cx"> 'wp-admin/js/forms.js',
</span><span class="cx"> 'wp-admin/js/upload.js',
</span><ins>+'wp-admin/js/set-post-thumbnail-handler.js',
+'wp-admin/js/set-post-thumbnail-handler.dev.js',
+'wp-admin/js/page.js',
+'wp-admin/js/page.dev.js',
+'wp-admin/js/slug.js',
+'wp-admin/js/slug.dev.js',
</ins><span class="cx"> 'wp-admin/profile-update.php',
</span><span class="cx"> 'wp-admin/templates.php',
</span><span class="cx"> 'wp-includes/images/audio.png',
</span></span></pre></div>
<a id="trunkwpadminjspostdevjs"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/js/post.dev.js (12059 => 12060)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/js/post.dev.js        2009-10-19 16:36:21 UTC (rev 12059)
+++ trunk/wp-admin/js/post.dev.js        2009-10-19 20:23:35 UTC (rev 12060)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-var tagBox, commentsBox, editPermalink, makeSlugeditClickable;
</del><ins>+var tagBox, commentsBox, editPermalink, makeSlugeditClickable, WPSetThumbnailHTML, WPSetThumbnailID, WPRemoveThumbnail;
</ins><span class="cx"> 
</span><span class="cx"> // return an array with any duplicate, whitespace or values removed
</span><span class="cx"> function array_unique_noempty(a) {
</span><span class="lines">@@ -57,7 +57,7 @@
</span><span class="cx">                 });
</span><span class="cx">         },
</span><span class="cx"> 
</span><del>-        flushTags : function(el, a) {
</del><ins>+        flushTags : function(el, a, f) {
</ins><span class="cx">                 a = a || false;
</span><span class="cx">                 var text, tags = $('.the-tags', el), newtag = $('input.newtag', el), newtags;
</span><span class="cx"> 
</span><span class="lines">@@ -71,7 +71,9 @@
</span><span class="cx">                 this.quickClicks(el);
</span><span class="cx"> 
</span><span class="cx">                 if ( !a )
</span><del>-                        newtag.val('').focus();
</del><ins>+                        newtag.val('');
+                if ( 'undefined' == f )
+                        newtag.focus();
</ins><span class="cx"> 
</span><span class="cx">                 return false;
</span><span class="cx">         },
</span><span class="lines">@@ -128,7 +130,7 @@
</span><span class="cx">             // save tags on post save/publish
</span><span class="cx">             $('#post').submit(function(){
</span><span class="cx">                         $('div.tagsdiv').each( function() {
</span><del>-                        tagBox.flushTags(this);
</del><ins>+                        tagBox.flushTags(this, false, 1);
</ins><span class="cx">                         });
</span><span class="cx">                 });
</span><span class="cx"> 
</span><span class="lines">@@ -196,6 +198,30 @@
</span><span class="cx">         }
</span><span class="cx"> };
</span><span class="cx"> 
</span><ins>+WPSetThumbnailHTML = function(html){
+        $('.inside', '#postthumbnaildiv').html(html);
+};
+
+WPSetThumbnailID = function(id){
+        var field = $('input[value=_thumbnail_id]', '#list-table');
+        if ( field.size() &gt; 0 ) {
+                $('#meta\\[' + field.attr('id').match(/[0-9]+/) + '\\]\\[value\\]').text(id);
+        }
+};
+
+WPRemoveThumbnail = function(){
+        $.post(ajaxurl, {
+                action:&quot;set-post-thumbnail&quot;, post_id: $('#post_ID').val(), thumbnail_id: -1, cookie: encodeURIComponent(document.cookie)
+        }, function(str){
+                if ( str == '0' ) {
+                        alert( setPostThumbnailL10n.error );
+                } else {
+                        WPSetThumbnailHTML(str);
+                }
+        }
+        );
+};
+
</ins><span class="cx"> })(jQuery);
</span><span class="cx"> 
</span><span class="cx"> jQuery(document).ready( function($) {
</span></span></pre></div>
<a id="trunkwpadminjspostjs"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/js/post.js (12059 => 12060)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/js/post.js        2009-10-19 16:36:21 UTC (rev 12059)
+++ trunk/wp-admin/js/post.js        2009-10-19 20:23:35 UTC (rev 12060)
</span><span class="lines">@@ -1 +1 @@
</span><del>-var tagBox,commentsBox,editPermalink,makeSlugeditClickable;function array_unique_noempty(b){var c=[];jQuery.each(b,function(a,d){d=jQuery.trim(d);if(d&amp;&amp;jQuery.inArray(d,c)==-1){c.push(d)}});return c}(function(a){tagBox={clean:function(b){return b.replace(/\s*,\s*/g,&quot;,&quot;).replace(/,+/g,&quot;,&quot;).replace(/[,\s]+$/,&quot;&quot;).replace(/^[,\s]+/,&quot;&quot;)},parseTags:function(e){var h=e.id,b=h.split(&quot;-check-num-&quot;)[1],d=a(e).closest(&quot;.tagsdiv&quot;),g=d.find(&quot;.the-tags&quot;),c=g.val().split(&quot;,&quot;),f=[];delete c[b];a.each(c,function(i,j){j=a.trim(j);if(j){f.push(j)}});g.val(this.clean(f.join(&quot;,&quot;)));this.quickClicks(d);return false},quickClicks:function(c){var e=a(&quot;.the-tags&quot;,c),d=a(&quot;.tagchecklist&quot;,c),b;if(!e.length){return}b=e.val().split(&quot;,&quot;);d.empty();a.each(b,function(h,i){var f,g,j=a(c).attr(&quot;id&quot;);i=a.trim(i);if(!i.match(/^\s+$/)&amp;&amp;&quot;&quot;!=i){g=j+&quot;-check-num-&quot;+h;f='&lt;span&gt;&lt;a id=&quot;'+g+'&quot; class=&quot;ntdelbutton&quot;&gt;X&lt;/a&gt;&amp;nbsp;'+i+&quot;&lt;/span&gt; &quot;;d.append(f);a(&quot;#&quot;+g).click(function(){tagBox.parseTags(this)})}})},flushTags:function(e,b){b=b||false;var g,c=a(&quot;.the-tags&quot;,e),f=a(&quot;input.newtag&quot;,e),d;g=b?a(b).text():f.val();tagsval=c.val();d=tagsval?tagsval+&quot;,&quot;+g:g;d=this.clean(d);d=array_unique_noempty(d.split(&quot;,&quot;)).join(&quot;,&quot;);c.val(d);this.quickClicks(e);if(!b){f.val(&quot;&quot;).focus()}return false},get:function(c){var b=c.substr(c.indexOf(&quot;-&quot;)+1);a.post(ajaxurl,{action:&quot;get-tagcloud&quot;,tax:b},function(e,d){if(0==e||&quot;success&quot;!=d){e=wpAjax.broken}e=a('&lt;p id=&quot;tagcloud-'+b+'&quot; class=&quot;the-tagcloud&quot;&gt;'+e+&quot;&lt;/p&gt;&quot;);a(&quot;a&quot;,e).click(function(){tagBox.flushTags(a(this).closest(&quot;.inside&quot;).children(&quot;.tagsdiv&quot;),this);return false});a(&quot;#&quot;+c).after(e)})},init:function(){var b=this,c=a(&quot;div.ajaxtag&quot;);a(&quot;.tagsdiv&quot;).each(function(){tagBox.quickClicks(this)});a(&quot;input.tagadd&quot;,c).click(function(){b.flushTags(a(this).closest(&quot;.tagsdiv&quot;))});a(&quot;input.newtag&quot;,c).blur(function(){var d=a(this).siblings(&quot;.taghint&quot;);if(this.value==&quot;&quot;){d.css(&quot;visibility&quot;,&quot;&quot;)}else{d.css(&quot;visibility&quot;,&quot;hidden&quot;)}}).keyup(function(d){if(13==d.which){tagBox.flushTags(a(this).closest(&quot;.tagsdiv&quot;));return false}}).keypress(function(d){if(13==d.which){d.preventDefault();return false}}).each(function(){var d=a(this).closest(&quot;div.tagsdiv&quot;).attr(&quot;id&quot;);a(this).suggest(ajaxurl+&quot;?action=ajax-tag-search&amp;tax=&quot;+d,{delay:500,minchars:2,multiple:true,multipleSep:&quot;, &quot;})});a(&quot;#post&quot;).submit(function(){a(&quot;div.tagsdiv&quot;).each(function(){tagBox.flushTags(this)})});a(&quot;a.tagcloud-link&quot;).click(function(){tagBox.get(a(this).attr(&quot;id&quot;));a(this).unbind().click(function(){a(this).siblings(&quot;.the-tagcloud&quot;).toggle();return false});return false})}};commentsBox={st:0,get:function(d,c){var b=this.st,e;if(!c){c=20}this.st+=c;this.total=d;a(&quot;#commentsdiv img.waiting&quot;).show();e={action:&quot;get-comments&quot;,mode:&quot;single&quot;,_ajax_nonce:a(&quot;#add_comment_nonce&quot;).val(),post_ID:a(&quot;#post_ID&quot;).val(),start:b,num:c};a.post(ajaxurl,e,function(f){f=wpAjax.parseAjaxResponse(f);a(&quot;#commentsdiv .widefat&quot;).show();a(&quot;#commentsdiv img.waiting&quot;).hide();if(&quot;object&quot;==typeof f&amp;&amp;f.responses[0]){a(&quot;#the-comment-list&quot;).append(f.responses[0].data);theList=theExtraList=null;a(&quot;a[className*=':']&quot;).unbind();setCommentsList();if(commentsBox.st&gt;commentsBox.total){a(&quot;#show-comments&quot;).hide()}else{a(&quot;#show-comments&quot;).html(postL10n.showcomm)}return}else{if(1==f){a(&quot;#show-comments&quot;).parent().html(postL10n.endcomm);return}}a(&quot;#the-comment-list&quot;).append('&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;'+wpAjax.broken+&quot;&lt;/td&gt;&lt;/tr&gt;&quot;)});return false}}})(jQuery);jQuery(document).ready(function(f){var d,a,b,h=&quot;&quot;,i=&quot;post&quot;==pagenow||&quot;post-new&quot;==pagenow,g=&quot;page&quot;==pagenow||&quot;page-new&quot;==pagenow;if(i){postboxes.add_postbox_toggles(&quot;post&quot;)}else{if(g){postboxes.add_postbox_toggles(&quot;page&quot;)}}if(f(&quot;#tagsdiv-post_tag&quot;).length){tagBox.init()}else{f(&quot;#side-sortables, #normal-sortables, #advanced-sortables&quot;).children(&quot;div.postbox&quot;).each(function(){if(this.id.indexOf(&quot;tagsdiv-&quot;)===0){tagBox.init();return false}})}if(f(&quot;#categorydiv&quot;).length){f(&quot;a&quot;,&quot;#category-tabs&quot;).click(function(){var j=f(this).attr(&quot;href&quot;);f(this).parent().addClass(&quot;tabs&quot;).siblings(&quot;li&quot;).removeClass(&quot;tabs&quot;);f(&quot;#category-tabs&quot;).siblings(&quot;.tabs-panel&quot;).hide();f(j).show();if(&quot;#categories-all&quot;==j){deleteUserSetting(&quot;cats&quot;)}else{setUserSetting(&quot;cats&quot;,&quot;pop&quot;)}return false});if(getUserSetting(&quot;cats&quot;)){f('a[href=&quot;#categories-pop&quot;]',&quot;#category-tabs&quot;).click()}f(&quot;#newcat&quot;).one(&quot;focus&quot;,function(){f(this).val(&quot;&quot;).removeClass(&quot;form-input-tip&quot;)});f(&quot;#category-add-sumbit&quot;).click(function(){f(&quot;#newcat&quot;).focus()});catAddBefore=function(j){if(!f(&quot;#newcat&quot;).val()){return false}j.data+=&quot;&amp;&quot;+f(&quot;:checked&quot;,&quot;#categorychecklist&quot;).serialize();return j};d=function(m,l){var k,j=f(&quot;#newcat_parent&quot;);if(&quot;undefined&quot;!=l.parsed.responses[0]&amp;&amp;(k=l.parsed.responses[0].supplemental.newcat_parent)){j.before(k);j.remove()}};f(&quot;#categorychecklist&quot;).wpList({alt:&quot;&quot;,response:&quot;category-ajax-response&quot;,addBefore:catAddBefore,addAfter:d});f(&quot;#category-add-toggle&quot;).click(function(){f(&quot;#category-adder&quot;).toggleClass(&quot;wp-hidden-children&quot;);f('a[href=&quot;#categories-all&quot;]',&quot;#category-tabs&quot;).click();return false});f(&quot;#categorychecklist&quot;).children(&quot;li.popular-category&quot;).add(f(&quot;#categorychecklist-pop&quot;).children()).find(&quot;:checkbox&quot;).live(&quot;click&quot;,function(){var j=f(this),l=j.is(&quot;:checked&quot;),k=j.val();f(&quot;#in-category-&quot;+k+&quot;, #in-popular-category-&quot;+k).attr(&quot;checked&quot;,l)})}if(f(&quot;#postcustom&quot;).length){f(&quot;#the-list&quot;).wpList({addAfter:function(j,k){f(&quot;table#list-table&quot;).show();if(typeof(autosave_update_post_ID)!=&quot;undefined&quot;){autosave_update_post_ID(k.parsed.responses[0].supplemental.postid)}},addBefore:function(j){j.data+=&quot;&amp;post_id=&quot;+f(&quot;#post_ID&quot;).val();return j}})}if(f(&quot;#submitdiv&quot;).length){a=f(&quot;#timestamp&quot;).html();b=f(&quot;#post-visibility-display&quot;).html();function e(){var j=f(&quot;#post-visibility-select&quot;);if(f(&quot;input:radio:checked&quot;,j).val()!=&quot;public&quot;){f(&quot;#sticky&quot;).attr(&quot;checked&quot;,false);f(&quot;#sticky-span&quot;).hide()}else{f(&quot;#sticky-span&quot;).show()}if(f(&quot;input:radio:checked&quot;,j).val()!=&quot;password&quot;){f(&quot;#password-span&quot;).hide()}else{f(&quot;#password-span&quot;).show()}}function c(){var j,m,k,o,l=f(&quot;#post_status&quot;),n=f(&quot;option[value=publish]&quot;,l);j=new Date(f(&quot;#aa&quot;).val(),f(&quot;#mm&quot;).val()-1,f(&quot;#jj&quot;).val(),f(&quot;#hh&quot;).val(),f(&quot;#mn&quot;).val());m=new Date(f(&quot;#hidden_aa&quot;).val(),f(&quot;#hidden_mm&quot;).val()-1,f(&quot;#hidden_jj&quot;).val(),f(&quot;#hidden_hh&quot;).val(),f(&quot;#hidden_mn&quot;).val());k=new Date(f(&quot;#cur_aa&quot;).val(),f(&quot;#cur_mm&quot;).val()-1,f(&quot;#cur_jj&quot;).val(),f(&quot;#cur_hh&quot;).val(),f(&quot;#cur_mn&quot;).val());if(j&gt;k&amp;&amp;f(&quot;#original_post_status&quot;).val()!=&quot;future&quot;){o=postL10n.publishOnFuture;f(&quot;#publish&quot;).val(postL10n.schedule)}else{if(j&lt;=k&amp;&amp;f(&quot;#original_post_status&quot;).val()!=&quot;publish&quot;){o=postL10n.publishOn;f(&quot;#publish&quot;).val(postL10n.publish)}else{o=postL10n.publishOnPast;if(g){f(&quot;#publish&quot;).val(postL10n.updatePage)}else{f(&quot;#publish&quot;).val(postL10n.updatePost)}}}if(m.toUTCString()==j.toUTCString()){f(&quot;#timestamp&quot;).html(a)}else{f(&quot;#timestamp&quot;).html(o+&quot; &lt;b&gt;&quot;+f(&quot;option[value=&quot;+f(&quot;#mm&quot;).val()+&quot;]&quot;,&quot;#mm&quot;).text()+&quot; &quot;+f(&quot;#jj&quot;).val()+&quot;, &quot;+f(&quot;#aa&quot;).val()+&quot; @ &quot;+f(&quot;#hh&quot;).val()+&quot;:&quot;+f(&quot;#mn&quot;).val()+&quot;&lt;/b&gt; &quot;)}if(f(&quot;input:radio:checked&quot;,&quot;#post-visibility-select&quot;).val()==&quot;private&quot;){if(g){f(&quot;#publish&quot;).val(postL10n.updatePage)}else{f(&quot;#publish&quot;).val(postL10n.updatePost)}if(n.length==0){l.append('&lt;option value=&quot;publish&quot;&gt;'+postL10n.privatelyPublished+&quot;&lt;/option&gt;&quot;)}else{n.html(postL10n.privatelyPublished)}f(&quot;option[value=publish]&quot;,l).attr(&quot;selected&quot;,true);f(&quot;.edit-post-status&quot;,&quot;#misc-publishing-actions&quot;).hide()}else{if(f(&quot;#original_post_status&quot;).val()==&quot;future&quot;||f(&quot;#original_post_status&quot;).val()==&quot;draft&quot;){if(n.length){n.remove();l.val(f(&quot;#hidden_post_status&quot;).val())}}else{n.html(postL10n.published)}f(&quot;.edit-post-status&quot;,&quot;#misc-publishing-actions&quot;).show()}f(&quot;#post-status-display&quot;).html(f(&quot;option:selected&quot;,l).text());if(f(&quot;option:selected&quot;,l).val()==&quot;private&quot;||f(&quot;option:selected&quot;,l).val()==&quot;publish&quot;){f(&quot;#save-post&quot;).hide()}else{f(&quot;#save-post&quot;).show();if(f(&quot;option:selected&quot;,l).val()==&quot;pending&quot;){f(&quot;#save-post&quot;).show().val(postL10n.savePending)}else{f(&quot;#save-post&quot;).show().val(postL10n.saveDraft)}}}f(&quot;.edit-visibility&quot;,&quot;#visibility&quot;).click(function(){if(f(&quot;#post-visibility-select&quot;).is(&quot;:hidden&quot;)){e();f(&quot;#post-visibility-select&quot;).slideDown(&quot;normal&quot;);f(this).hide()}return false});f(&quot;.cancel-post-visibility&quot;,&quot;#post-visibility-select&quot;).click(function(){f(&quot;#post-visibility-select&quot;).slideUp(&quot;normal&quot;);f(&quot;#visibility-radio-&quot;+f(&quot;#hidden-post-visibility&quot;).val()).attr(&quot;checked&quot;,true);f(&quot;#post_password&quot;).val(f(&quot;#hidden_post_password&quot;).val());f(&quot;#sticky&quot;).attr(&quot;checked&quot;,f(&quot;#hidden-post-sticky&quot;).attr(&quot;checked&quot;));f(&quot;#post-visibility-display&quot;).html(b);f(&quot;.edit-visibility&quot;,&quot;#visibility&quot;).show();c();return false});f(&quot;.save-post-visibility&quot;,&quot;#post-visibility-select&quot;).click(function(){var j=f(&quot;#post-visibility-select&quot;);j.slideUp(&quot;normal&quot;);f(&quot;.edit-visibility&quot;,&quot;#visibility&quot;).show();c();if(f(&quot;input:radio:checked&quot;,j).val()!=&quot;public&quot;){f(&quot;#sticky&quot;).attr(&quot;checked&quot;,false)}if(true==f(&quot;#sticky&quot;).attr(&quot;checked&quot;)){h=&quot;Sticky&quot;}else{h=&quot;&quot;}f(&quot;#post-visibility-display&quot;).html(postL10n[f(&quot;input:radio:checked&quot;,j).val()+h]);return false});f(&quot;input:radio&quot;,&quot;#post-visibility-select&quot;).change(function(){e()});f(&quot;#timestampdiv&quot;).siblings(&quot;a.edit-timestamp&quot;).click(function(){if(f(&quot;#timestampdiv&quot;).is(&quot;:hidden&quot;)){f(&quot;#timestampdiv&quot;).slideDown(&quot;normal&quot;);f(this).hide()}return false});f(&quot;.cancel-timestamp&quot;,&quot;#timestampdiv&quot;).click(function(){f(&quot;#timestampdiv&quot;).slideUp(&quot;normal&quot;);f(&quot;#mm&quot;).val(f(&quot;#hidden_mm&quot;).val());f(&quot;#jj&quot;).val(f(&quot;#hidden_jj&quot;).val());f(&quot;#aa&quot;).val(f(&quot;#hidden_aa&quot;).val());f(&quot;#hh&quot;).val(f(&quot;#hidden_hh&quot;).val());f(&quot;#mn&quot;).val(f(&quot;#hidden_mn&quot;).val());f(&quot;#timestampdiv&quot;).siblings(&quot;a.edit-timestamp&quot;).show();c();return false});f(&quot;.save-timestamp&quot;,&quot;#timestampdiv&quot;).click(function(){f(&quot;#timestampdiv&quot;).slideUp(&quot;normal&quot;);f(&quot;#timestampdiv&quot;).siblings(&quot;a.edit-timestamp&quot;).show();c();return false});f(&quot;#post-status-select&quot;).siblings(&quot;a.edit-post-status&quot;).click(function(){if(f(&quot;#post-status-select&quot;).is(&quot;:hidden&quot;)){f(&quot;#post-status-select&quot;).slideDown(&quot;normal&quot;);f(this).hide()}return false});f(&quot;.save-post-status&quot;,&quot;#post-status-select&quot;).click(function(){f(&quot;#post-status-select&quot;).slideUp(&quot;normal&quot;);f(&quot;#post-status-select&quot;).siblings(&quot;a.edit-post-status&quot;).show();c();return false});f(&quot;.cancel-post-status&quot;,&quot;#post-status-select&quot;).click(function(){f(&quot;#post-status-select&quot;).slideUp(&quot;normal&quot;);f(&quot;#post_status&quot;).val(f(&quot;#hidden_post_status&quot;).val());f(&quot;#post-status-select&quot;).siblings(&quot;a.edit-post-status&quot;).show();c();return false})}if(f(&quot;#edit-slug-box&quot;).length){editPermalink=function(j){var k,n=0,m=f(&quot;#editable-post-name&quot;),o=m.html(),r=f(&quot;#post_name&quot;),s=r.html(),p=f(&quot;#edit-slug-buttons&quot;),q=p.html(),l=f(&quot;#editable-post-name-full&quot;).html();f(&quot;#view-post-btn&quot;).hide();p.html('&lt;a href=&quot;#&quot; class=&quot;save button&quot;&gt;'+postL10n.ok+'&lt;/a&gt; &lt;a class=&quot;cancel&quot; href=&quot;#&quot;&gt;'+postL10n.cancel+&quot;&lt;/a&gt;&quot;);p.children(&quot;.save&quot;).click(function(){var t=m.children(&quot;input&quot;).val();f.post(ajaxurl,{action:&quot;sample-permalink&quot;,post_id:j,new_slug:t,new_title:f(&quot;#title&quot;).val(),samplepermalinknonce:f(&quot;#samplepermalinknonce&quot;).val()},function(u){f(&quot;#edit-slug-box&quot;).html(u);p.html(q);r.attr(&quot;value&quot;,t);makeSlugeditClickable();f(&quot;#view-post-btn&quot;).show()});return false});f(&quot;.cancel&quot;,&quot;#edit-slug-buttons&quot;).click(function(){f(&quot;#view-post-btn&quot;).show();m.html(o);p.html(q);r.attr(&quot;value&quot;,s);return false});for(k=0;k&lt;l.length;++k){if(&quot;%&quot;==l.charAt(k)){n++}}slug_value=(n&gt;l.length/4)?&quot;&quot;:l;m.html('&lt;input type=&quot;text&quot; id=&quot;new-post-slug&quot; value=&quot;'+slug_value+'&quot; /&gt;').children(&quot;input&quot;).keypress(function(u){var t=u.keyCode||0;if(13==t){p.children(&quot;.save&quot;).click();return false}if(27==t){p.children(&quot;.cancel&quot;).click();return false}r.attr(&quot;value&quot;,this.value)}).focus()};makeSlugeditClickable=function(){f(&quot;#editable-post-name&quot;).click(function(){f(&quot;#edit-slug-buttons&quot;).children(&quot;.edit-slug&quot;).click()})};makeSlugeditClickable()}});
</del><span class="cx">\ No newline at end of file
</span><ins>+var tagBox,commentsBox,editPermalink,makeSlugeditClickable,WPSetThumbnailHTML,WPSetThumbnailID,WPRemoveThumbnail;function array_unique_noempty(b){var c=[];jQuery.each(b,function(a,d){d=jQuery.trim(d);if(d&amp;&amp;jQuery.inArray(d,c)==-1){c.push(d)}});return c}(function(a){tagBox={clean:function(b){return b.replace(/\s*,\s*/g,&quot;,&quot;).replace(/,+/g,&quot;,&quot;).replace(/[,\s]+$/,&quot;&quot;).replace(/^[,\s]+/,&quot;&quot;)},parseTags:function(e){var h=e.id,b=h.split(&quot;-check-num-&quot;)[1],d=a(e).closest(&quot;.tagsdiv&quot;),g=d.find(&quot;.the-tags&quot;),c=g.val().split(&quot;,&quot;),f=[];delete c[b];a.each(c,function(i,j){j=a.trim(j);if(j){f.push(j)}});g.val(this.clean(f.join(&quot;,&quot;)));this.quickClicks(d);return false},quickClicks:function(c){var e=a(&quot;.the-tags&quot;,c),d=a(&quot;.tagchecklist&quot;,c),b;if(!e.length){return}b=e.val().split(&quot;,&quot;);d.empty();a.each(b,function(h,i){var f,g,j=a(c).attr(&quot;id&quot;);i=a.trim(i);if(!i.match(/^\s+$/)&amp;&amp;&quot;&quot;!=i){g=j+&quot;-check-num-&quot;+h;f='&lt;span&gt;&lt;a id=&quot;'+g+'&quot; class=&quot;ntdelbutton&quot;&gt;X&lt;/a&gt;&amp;nbsp;'+i+&quot;&lt;/span&gt; &quot;;d.append(f);a(&quot;#&quot;+g).click(function(){tagBox.parseTags(this)})}})},flushTags:function(e,b,g){b=b||false;var i,c=a(&quot;.the-tags&quot;,e),h=a(&quot;input.newtag&quot;,e),d;i=b?a(b).text():h.val();tagsval=c.val();d=tagsval?tagsval+&quot;,&quot;+i:i;d=this.clean(d);d=array_unique_noempty(d.split(&quot;,&quot;)).join(&quot;,&quot;);c.val(d);this.quickClicks(e);if(!b){h.val(&quot;&quot;)}if(&quot;undefined&quot;==g){h.focus()}return false},get:function(c){var b=c.substr(c.indexOf(&quot;-&quot;)+1);a.post(ajaxurl,{action:&quot;get-tagcloud&quot;,tax:b},function(e,d){if(0==e||&quot;success&quot;!=d){e=wpAjax.broken}e=a('&lt;p id=&quot;tagcloud-'+b+'&quot; class=&quot;the-tagcloud&quot;&gt;'+e+&quot;&lt;/p&gt;&quot;);a(&quot;a&quot;,e).click(function(){tagBox.flushTags(a(this).closest(&quot;.inside&quot;).children(&quot;.tagsdiv&quot;),this);return false});a(&quot;#&quot;+c).after(e)})},init:function(){var b=this,c=a(&quot;div.ajaxtag&quot;);a(&quot;.tagsdiv&quot;).each(function(){tagBox.quickClicks(this)});a(&quot;input.tagadd&quot;,c).click(function(){b.flushTags(a(this).closest(&quot;.tagsdiv&quot;))});a(&quot;input.newtag&quot;,c).blur(function(){var d=a(this).siblings(&quot;.taghint&quot;);if(this.value==&quot;&quot;){d.css(&quot;visibility&quot;,&quot;&quot;)}else{d.css(&quot;visibility&quot;,&quot;hidden&quot;)}}).keyup(function(d){if(13==d.which){tagBox.flushTags(a(this).closest(&quot;.tagsdiv&quot;));return false}}).keypress(function(d){if(13==d.which){d.preventDefault();return false}}).each(function(){var d=a(this).closest(&quot;div.tagsdiv&quot;).attr(&quot;id&quot;);a(this).suggest(ajaxurl+&quot;?action=ajax-tag-search&amp;tax=&quot;+d,{delay:500,minchars:2,multiple:true,multipleSep:&quot;, &quot;})});a(&quot;#post&quot;).submit(function(){a(&quot;div.tagsdiv&quot;).each(function(){tagBox.flushTags(this,false,1)})});a(&quot;a.tagcloud-link&quot;).click(function(){tagBox.get(a(this).attr(&quot;id&quot;));a(this).unbind().click(function(){a(this).siblings(&quot;.the-tagcloud&quot;).toggle();return false});return false})}};commentsBox={st:0,get:function(d,c){var b=this.st,e;if(!c){c=20}this.st+=c;this.total=d;a(&quot;#commentsdiv img.waiting&quot;).show();e={action:&quot;get-comments&quot;,mode:&quot;single&quot;,_ajax_nonce:a(&quot;#add_comment_nonce&quot;).val(),post_ID:a(&quot;#post_ID&quot;).val(),start:b,num:c};a.post(ajaxurl,e,function(f){f=wpAjax.parseAjaxResponse(f);a(&quot;#commentsdiv .widefat&quot;).show();a(&quot;#commentsdiv img.waiting&quot;).hide();if(&quot;object&quot;==typeof f&amp;&amp;f.responses[0]){a(&quot;#the-comment-list&quot;).append(f.responses[0].data);theList=theExtraList=null;a(&quot;a[className*=':']&quot;).unbind();setCommentsList();if(commentsBox.st&gt;commentsBox.total){a(&quot;#show-comments&quot;).hide()}else{a(&quot;#show-comments&quot;).html(postL10n.showcomm)}return}else{if(1==f){a(&quot;#show-comments&quot;).parent().html(postL10n.endcomm);return}}a(&quot;#the-comment-list&quot;).append('&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;'+wpAjax.broken+&quot;&lt;/td&gt;&lt;/tr&gt;&quot;)});return false}};WPSetThumbnailHTML=function(b){a(&quot;.inside&quot;,&quot;#postthumbnaildiv&quot;).html(b)};WPSetThumbnailID=function(c){var b=a(&quot;input[value=_thumbnail_id]&quot;,&quot;#list-table&quot;);if(b.size()&gt;0){a(&quot;#meta\\[&quot;+b.attr(&quot;id&quot;).match(/[0-9]+/)+&quot;\\]\\[value\\]&quot;).text(c)}};WPRemoveThumbnail=function(){a.post(ajaxurl,{action:&quot;set-post-thumbnail&quot;,post_id:a(&quot;#post_ID&quot;).val(),thumbnail_id:-1,cookie:encodeURIComponent(document.cookie)},function(b){if(b==&quot;0&quot;){alert(setPostThumbnailL10n.error)}else{WPSetThumbnailHTML(b)}})}})(jQuery);jQuery(document).ready(function(f){var d,a,b,h=&quot;&quot;,i=&quot;post&quot;==pagenow||&quot;post-new&quot;==pagenow,g=&quot;page&quot;==pagenow||&quot;page-new&quot;==pagenow;if(i){postboxes.add_postbox_toggles(&quot;post&quot;)}else{if(g){postboxes.add_postbox_toggles(&quot;page&quot;)}}if(f(&quot;#tagsdiv-post_tag&quot;).length){tagBox.init()}else{f(&quot;#side-sortables, #normal-sortables, #advanced-sortables&quot;).children(&quot;div.postbox&quot;).each(function(){if(this.id.indexOf(&quot;tagsdiv-&quot;)===0){tagBox.init();return false}})}if(f(&quot;#categorydiv&quot;).length){f(&quot;a&quot;,&quot;#category-tabs&quot;).click(function(){var j=f(this).attr(&quot;href&quot;);f(this).parent().addClass(&quot;tabs&quot;).siblings(&quot;li&quot;).removeClass(&quot;tabs&quot;);f(&quot;#category-tabs&quot;).siblings(&quot;.tabs-panel&quot;).hide();f(j).show();if(&quot;#categories-all&quot;==j){deleteUserSetting(&quot;cats&quot;)}else{setUserSetting(&quot;cats&quot;,&quot;pop&quot;)}return false});if(getUserSetting(&quot;cats&quot;)){f('a[href=&quot;#categories-pop&quot;]',&quot;#category-tabs&quot;).click()}f(&quot;#newcat&quot;).one(&quot;focus&quot;,function(){f(this).val(&quot;&quot;).removeClass(&quot;form-input-tip&quot;)});f(&quot;#category-add-sumbit&quot;).click(function(){f(&quot;#newcat&quot;).focus()});catAddBefore=function(j){if(!f(&quot;#newcat&quot;).val()){return false}j.data+=&quot;&amp;&quot;+f(&quot;:checked&quot;,&quot;#categorychecklist&quot;).serialize();return j};d=function(m,l){var k,j=f(&quot;#newcat_parent&quot;);if(&quot;undefined&quot;!=l.parsed.responses[0]&amp;&amp;(k=l.parsed.responses[0].supplemental.newcat_parent)){j.before(k);j.remove()}};f(&quot;#categorychecklist&quot;).wpList({alt:&quot;&quot;,response:&quot;category-ajax-response&quot;,addBefore:catAddBefore,addAfter:d});f(&quot;#category-add-toggle&quot;).click(function(){f(&quot;#category-adder&quot;).toggleClass(&quot;wp-hidden-children&quot;);f('a[href=&quot;#categories-all&quot;]',&quot;#category-tabs&quot;).click();return false});f(&quot;#categorychecklist&quot;).children(&quot;li.popular-category&quot;).add(f(&quot;#categorychecklist-pop&quot;).children()).find(&quot;:checkbox&quot;).live(&quot;click&quot;,function(){var j=f(this),l=j.is(&quot;:checked&quot;),k=j.val();f(&quot;#in-category-&quot;+k+&quot;, #in-popular-category-&quot;+k).attr(&quot;checked&quot;,l)})}if(f(&quot;#postcustom&quot;).length){f(&quot;#the-list&quot;).wpList({addAfter:function(j,k){f(&quot;table#list-table&quot;).show();if(typeof(autosave_update_post_ID)!=&quot;undefined&quot;){autosave_update_post_ID(k.parsed.responses[0].supplemental.postid)}},addBefore:function(j){j.data+=&quot;&amp;post_id=&quot;+f(&quot;#post_ID&quot;).val();return j}})}if(f(&quot;#submitdiv&quot;).length){a=f(&quot;#timestamp&quot;).html();b=f(&quot;#post-visibility-display&quot;).html();function e(){var j=f(&quot;#post-visibility-select&quot;);if(f(&quot;input:radio:checked&quot;,j).val()!=&quot;public&quot;){f(&quot;#sticky&quot;).attr(&quot;checked&quot;,false);f(&quot;#sticky-span&quot;).hide()}else{f(&quot;#sticky-span&quot;).show()}if(f(&quot;input:radio:checked&quot;,j).val()!=&quot;password&quot;){f(&quot;#password-span&quot;).hide()}else{f(&quot;#password-span&quot;).show()}}function c(){var j,m,k,o,l=f(&quot;#post_status&quot;),n=f(&quot;option[value=publish]&quot;,l);j=new Date(f(&quot;#aa&quot;).val(),f(&quot;#mm&quot;).val()-1,f(&quot;#jj&quot;).val(),f(&quot;#hh&quot;).val(),f(&quot;#mn&quot;).val());m=new Date(f(&quot;#hidden_aa&quot;).val(),f(&quot;#hidden_mm&quot;).val()-1,f(&quot;#hidden_jj&quot;).val(),f(&quot;#hidden_hh&quot;).val(),f(&quot;#hidden_mn&quot;).val());k=new Date(f(&quot;#cur_aa&quot;).val(),f(&quot;#cur_mm&quot;).val()-1,f(&quot;#cur_jj&quot;).val(),f(&quot;#cur_hh&quot;).val(),f(&quot;#cur_mn&quot;).val());if(j&gt;k&amp;&amp;f(&quot;#original_post_status&quot;).val()!=&quot;future&quot;){o=postL10n.publishOnFuture;f(&quot;#publish&quot;).val(postL10n.schedule)}else{if(j&lt;=k&amp;&amp;f(&quot;#original_post_status&quot;).val()!=&quot;publish&quot;){o=postL10n.publishOn;f(&quot;#publish&quot;).val(postL10n.publish)}else{o=postL10n.publishOnPast;if(g){f(&quot;#publish&quot;).val(postL10n.updatePage)}else{f(&quot;#publish&quot;).val(postL10n.updatePost)}}}if(m.toUTCString()==j.toUTCString()){f(&quot;#timestamp&quot;).html(a)}else{f(&quot;#timestamp&quot;).html(o+&quot; &lt;b&gt;&quot;+f(&quot;option[value=&quot;+f(&quot;#mm&quot;).val()+&quot;]&quot;,&quot;#mm&quot;).text()+&quot; &quot;+f(&quot;#jj&quot;).val()+&quot;, &quot;+f(&quot;#aa&quot;).val()+&quot; @ &quot;+f(&quot;#hh&quot;).val()+&quot;:&quot;+f(&quot;#mn&quot;).val()+&quot;&lt;/b&gt; &quot;)}if(f(&quot;input:radio:checked&quot;,&quot;#post-visibility-select&quot;).val()==&quot;private&quot;){if(g){f(&quot;#publish&quot;).val(postL10n.updatePage)}else{f(&quot;#publish&quot;).val(postL10n.updatePost)}if(n.length==0){l.append('&lt;option value=&quot;publish&quot;&gt;'+postL10n.privatelyPublished+&quot;&lt;/option&gt;&quot;)}else{n.html(postL10n.privatelyPublished)}f(&quot;option[value=publish]&quot;,l).attr(&quot;selected&quot;,true);f(&quot;.edit-post-status&quot;,&quot;#misc-publishing-actions&quot;).hide()}else{if(f(&quot;#original_post_status&quot;).val()==&quot;future&quot;||f(&quot;#original_post_status&quot;).val()==&quot;draft&quot;){if(n.length){n.remove();l.val(f(&quot;#hidden_post_status&quot;).val())}}else{n.html(postL10n.published)}f(&quot;.edit-post-status&quot;,&quot;#misc-publishing-actions&quot;).show()}f(&quot;#post-status-display&quot;).html(f(&quot;option:selected&quot;,l).text());if(f(&quot;option:selected&quot;,l).val()==&quot;private&quot;||f(&quot;option:selected&quot;,l).val()==&quot;publish&quot;){f(&quot;#save-post&quot;).hide()}else{f(&quot;#save-post&quot;).show();if(f(&quot;option:selected&quot;,l).val()==&quot;pending&quot;){f(&quot;#save-post&quot;).show().val(postL10n.savePending)}else{f(&quot;#save-post&quot;).show().val(postL10n.saveDraft)}}}f(&quot;.edit-visibility&quot;,&quot;#visibility&quot;).click(function(){if(f(&quot;#post-visibility-select&quot;).is(&quot;:hidden&quot;)){e();f(&quot;#post-visibility-select&quot;).slideDown(&quot;normal&quot;);f(this).hide()}return false});f(&quot;.cancel-post-visibility&quot;,&quot;#post-visibility-select&quot;).click(function(){f(&quot;#post-visibility-select&quot;).slideUp(&quot;normal&quot;);f(&quot;#visibility-radio-&quot;+f(&quot;#hidden-post-visibility&quot;).val()).attr(&quot;checked&quot;,true);f(&quot;#post_password&quot;).val(f(&quot;#hidden_post_password&quot;).val());f(&quot;#sticky&quot;).attr(&quot;checked&quot;,f(&quot;#hidden-post-sticky&quot;).attr(&quot;checked&quot;));f(&quot;#post-visibility-display&quot;).html(b);f(&quot;.edit-visibility&quot;,&quot;#visibility&quot;).show();c();return false});f(&quot;.save-post-visibility&quot;,&quot;#post-visibility-select&quot;).click(function(){var j=f(&quot;#post-visibility-select&quot;);j.slideUp(&quot;normal&quot;);f(&quot;.edit-visibility&quot;,&quot;#visibility&quot;).show();c();if(f(&quot;input:radio:checked&quot;,j).val()!=&quot;public&quot;){f(&quot;#sticky&quot;).attr(&quot;checked&quot;,false)}if(true==f(&quot;#sticky&quot;).attr(&quot;checked&quot;)){h=&quot;Sticky&quot;}else{h=&quot;&quot;}f(&quot;#post-visibility-display&quot;).html(postL10n[f(&quot;input:radio:checked&quot;,j).val()+h]);return false});f(&quot;input:radio&quot;,&quot;#post-visibility-select&quot;).change(function(){e()});f(&quot;#timestampdiv&quot;).siblings(&quot;a.edit-timestamp&quot;).click(function(){if(f(&quot;#timestampdiv&quot;).is(&quot;:hidden&quot;)){f(&quot;#timestampdiv&quot;).slideDown(&quot;normal&quot;);f(this).hide()}return false});f(&quot;.cancel-timestamp&quot;,&quot;#timestampdiv&quot;).click(function(){f(&quot;#timestampdiv&quot;).slideUp(&quot;normal&quot;);f(&quot;#mm&quot;).val(f(&quot;#hidden_mm&quot;).val());f(&quot;#jj&quot;).val(f(&quot;#hidden_jj&quot;).val());f(&quot;#aa&quot;).val(f(&quot;#hidden_aa&quot;).val());f(&quot;#hh&quot;).val(f(&quot;#hidden_hh&quot;).val());f(&quot;#mn&quot;).val(f(&quot;#hidden_mn&quot;).val());f(&quot;#timestampdiv&quot;).siblings(&quot;a.edit-timestamp&quot;).show();c();return false});f(&quot;.save-timestamp&quot;,&quot;#timestampdiv&quot;).click(function(){f(&quot;#timestampdiv&quot;).slideUp(&quot;normal&quot;);f(&quot;#timestampdiv&quot;).siblings(&quot;a.edit-timestamp&quot;).show();c();return false});f(&quot;#post-status-select&quot;).siblings(&quot;a.edit-post-status&quot;).click(function(){if(f(&quot;#post-status-select&quot;).is(&quot;:hidden&quot;)){f(&quot;#post-status-select&quot;).slideDown(&quot;normal&quot;);f(this).hide()}return false});f(&quot;.save-post-status&quot;,&quot;#post-status-select&quot;).click(function(){f(&quot;#post-status-select&quot;).slideUp(&quot;normal&quot;);f(&quot;#post-status-select&quot;).siblings(&quot;a.edit-post-status&quot;).show();c();return false});f(&quot;.cancel-post-status&quot;,&quot;#post-status-select&quot;).click(function(){f(&quot;#post-status-select&quot;).slideUp(&quot;normal&quot;);f(&quot;#post_status&quot;).val(f(&quot;#hidden_post_status&quot;).val());f(&quot;#post-status-select&quot;).siblings(&quot;a.edit-post-status&quot;).show();c();return false})}if(f(&quot;#edit-slug-box&quot;).length){editPermalink=function(j){var k,n=0,m=f(&quot;#editable-post-name&quot;),o=m.html(),r=f(&quot;#post_name&quot;),s=r.html(),p=f(&quot;#edit-slug-buttons&quot;),q=p.html(),l=f(&quot;#editable-post-name-full&quot;).html();f(&quot;#view-post-btn&quot;).hide();p.html('&lt;a href=&quot;#&quot; class=&quot;save button&quot;&gt;'+postL10n.ok+'&lt;/a&gt; &lt;a class=&quot;cancel&quot; href=&quot;#&quot;&gt;'+postL10n.cancel+&quot;&lt;/a&gt;&quot;);p.children(&quot;.save&quot;).click(function(){var t=m.children(&quot;input&quot;).val();f.post(ajaxurl,{action:&quot;sample-permalink&quot;,post_id:j,new_slug:t,new_title:f(&quot;#title&quot;).val(),samplepermalinknonce:f(&quot;#samplepermalinknonce&quot;).val()},function(u){f(&quot;#edit-slug-box&quot;).html(u);p.html(q);r.attr(&quot;value&quot;,t);makeSlugeditClickable();f(&quot;#view-post-btn&quot;).show()});return false});f(&quot;.cancel&quot;,&quot;#edit-slug-buttons&quot;).click(function(){f(&quot;#view-post-btn&quot;).show();m.html(o);p.html(q);r.attr(&quot;value&quot;,s);return false});for(k=0;k&lt;l.length;++k){if(&quot;%&quot;==l.charAt(k)){n++}}slug_value=(n&gt;l.length/4)?&quot;&quot;:l;m.html('&lt;input type=&quot;text&quot; id=&quot;new-post-slug&quot; value=&quot;'+slug_value+'&quot; /&gt;').children(&quot;input&quot;).keypress(function(u){var t=u.keyCode||0;if(13==t){p.children(&quot;.save&quot;).click();return false}if(27==t){p.children(&quot;.cancel&quot;).click();return false}r.attr(&quot;value&quot;,this.value)}).focus()};makeSlugeditClickable=function(){f(&quot;#editable-post-name&quot;).click(function(){f(&quot;#edit-slug-buttons&quot;).children(&quot;.edit-slug&quot;).click()})};makeSlugeditClickable()}});
</ins><span class="cx">\ No newline at end of file
</span></span></pre></div>
<a id="trunkwpadminjssetpostthumbnailhandlerdevjs"></a>
<div class="delfile"><h4>Deleted: trunk/wp-admin/js/set-post-thumbnail-handler.dev.js (12059 => 12060)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/js/set-post-thumbnail-handler.dev.js        2009-10-19 16:36:21 UTC (rev 12059)
+++ trunk/wp-admin/js/set-post-thumbnail-handler.dev.js        2009-10-19 20:23:35 UTC (rev 12060)
</span><span class="lines">@@ -1,22 +0,0 @@
</span><del>-function WPSetThumbnailHTML(html){
-        jQuery('#postthumbnaildiv .inside').html(html);
-}
-
-function WPSetThumbnailID(id){
-        if ( jQuery('input[value=_thumbnail_id]').size() &gt; 0 ) {
-                jQuery('#meta\\[' + jQuery('input[value=_thumbnail_id]').attr('id').match(/[0-9]+/) + '\\]\\[value\\]' ).text(id);
-        }
-}
-
-function WPRemoveThumbnail(){
-        jQuery.post(ajaxurl, {
-                action:&quot;set-post-thumbnail&quot;, post_id: jQuery('#post_ID').val(), thumbnail_id: -1, cookie: encodeURIComponent(document.cookie)
-        }, function(str){
-                if ( str == '0' ) {
-                        alert( setPostThumbnailL10n.error );
-                } else {
-                        WPSetThumbnailHTML(str);
-                }
-        }
-        );
-}
</del></span></pre></div>
<a id="trunkwpadminjssetpostthumbnailhandlerjs"></a>
<div class="delfile"><h4>Deleted: trunk/wp-admin/js/set-post-thumbnail-handler.js (12059 => 12060)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/js/set-post-thumbnail-handler.js        2009-10-19 16:36:21 UTC (rev 12059)
+++ trunk/wp-admin/js/set-post-thumbnail-handler.js        2009-10-19 20:23:35 UTC (rev 12060)
</span><span class="lines">@@ -1 +0,0 @@
</span><del>-function WPSetThumbnailHTML(html){jQuery(&quot;#postthumbnaildiv .inside&quot;).html(html)}function WPSetThumbnailID(id){if(jQuery(&quot;input[value=_thumbnail_id]&quot;).size()&gt;0){jQuery(&quot;#meta\\[&quot;+jQuery(&quot;input[value=_thumbnail_id]&quot;).attr(&quot;id&quot;).match(/[0-9]+/)+&quot;\\]\\[value\\]&quot;).text(id)}}function WPRemoveThumbnail(){jQuery.post(ajaxurl,{action:&quot;set-post-thumbnail&quot;,post_id:jQuery(&quot;#post_ID&quot;).val(),thumbnail_id:-1,cookie:encodeURIComponent(document.cookie)},function(str){if(str==&quot;0&quot;){alert(setPostThumbnailL10n.error)}else{WPSetThumbnailHTML(str)}})};
</del><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 (12059 => 12060)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/script-loader.php        2009-10-19 16:36:21 UTC (rev 12059)
+++ trunk/wp-includes/script-loader.php        2009-10-19 20:23:35 UTC (rev 12060)
</span><span class="lines">@@ -265,7 +265,7 @@
</span><span class="cx">                 $scripts-&gt;add( 'postbox', &quot;/wp-admin/js/postbox$suffix.js&quot;, array('jquery-ui-sortable'), '20091012' );
</span><span class="cx">                 $scripts-&gt;add_data( 'postbox', 'group', 1 );
</span><span class="cx"> 
</span><del>-                $scripts-&gt;add( 'post', &quot;/wp-admin/js/post$suffix.js&quot;, array('suggest', 'wp-lists', 'postbox'), '20091014' );
</del><ins>+                $scripts-&gt;add( 'post', &quot;/wp-admin/js/post$suffix.js&quot;, array('suggest', 'wp-lists', 'postbox'), '20091019' );
</ins><span class="cx">                 $scripts-&gt;add_data( 'post', 'group', 1 );
</span><span class="cx">                 $scripts-&gt;localize( 'post', 'postL10n', array(
</span><span class="cx">                         'tagsUsed' =&gt;  __('Tags used on this post:'),
</span><span class="lines">@@ -380,9 +380,6 @@
</span><span class="cx">                         'error' =&gt; __( 'Could not set that as the thumbnail image. Try a different attachment.' )
</span><span class="cx">                 ) );
</span><span class="cx"> 
</span><del>-                $scripts-&gt;add( 'set-post-thumbnail-handler', &quot;/wp-admin/js/set-post-thumbnail-handler$suffix.js&quot;, array( 'jquery' ), '20091015' );
-                $scripts-&gt;add_data( 'set-post-thumbnail-handler', 'group', 1 );
-
</del><span class="cx">         }
</span><span class="cx"> }
</span><span class="cx"> 
</span></span></pre>
</div>
</div>

</body>
</html>