X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/d3b1ea255664edd2deef17f900a655613d20820d..refs/tags/wordpress-3.0.5:/wp-admin/js/post.dev.js diff --git a/wp-admin/js/post.dev.js b/wp-admin/js/post.dev.js index dcb12a43..9a39e08f 100644 --- a/wp-admin/js/post.dev.js +++ b/wp-admin/js/post.dev.js @@ -1,3 +1,5 @@ +var tagBox, commentsBox, editPermalink, makeSlugeditClickable, WPSetThumbnailHTML, WPSetThumbnailID, WPRemoveThumbnail; + // return an array with any duplicate, whitespace or values removed function array_unique_noempty(a) { var out = []; @@ -9,480 +11,614 @@ function array_unique_noempty(a) { return out; } -function new_tag_remove_tag() { - var id = jQuery( this ).attr( 'id' ), num = id.split('-check-num-')[1], taxbox = jQuery(this).parents('.tagsdiv'), current_tags = taxbox.find( '.the-tags' ).val().split(','), new_tags = []; - delete current_tags[num]; +(function($){ - jQuery.each( current_tags, function(key, val) { - val = jQuery.trim(val); - if ( val ) { - new_tags.push(val); - } - }); +tagBox = { + clean : function(tags) { + return tags.replace(/\s*,\s*/g, ',').replace(/,+/g, ',').replace(/[,\s]+$/, '').replace(/^[,\s]+/, ''); + }, - taxbox.find('.the-tags').val( new_tags.join(',').replace(/\s*,+\s*/, ',').replace(/,+/, ',').replace(/,+\s+,+/, ',').replace(/,+\s*$/, '').replace(/^\s*,+/, '') ); + parseTags : function(el) { + var id = el.id, num = id.split('-check-num-')[1], taxbox = $(el).closest('.tagsdiv'), thetags = taxbox.find('.the-tags'), current_tags = thetags.val().split(','), new_tags = []; + delete current_tags[num]; - tag_update_quickclicks(taxbox); - return false; -} + $.each( current_tags, function(key, val) { + val = $.trim(val); + if ( val ) { + new_tags.push(val); + } + }); -function tag_update_quickclicks(taxbox) { - if ( jQuery(taxbox).find('.the-tags').length == 0 ) - return; + thetags.val( this.clean( new_tags.join(',') ) ); - var current_tags = jQuery(taxbox).find('.the-tags').val().split(','); - jQuery(taxbox).find('.tagchecklist').empty(); - shown = false; + this.quickClicks(taxbox); + return false; + }, - jQuery.each( current_tags, function( key, val ) { - var txt, button_id; + quickClicks : function(el) { + var thetags = $('.the-tags', el), + tagchecklist = $('.tagchecklist', el), + id = $(el).attr('id'), + current_tags, disabled; - val = jQuery.trim(val); - if ( !val.match(/^\s+$/) && '' != val ) { - button_id = jQuery(taxbox).attr('id') + '-check-num-' + key; - txt = 'X ' + val + ' '; - jQuery(taxbox).find('.tagchecklist').append(txt); - jQuery( '#' + button_id ).click( new_tag_remove_tag ); - } - }); - if ( shown ) - jQuery(taxbox).find('.tagchecklist').prepend(''+postL10n.tagsUsed+'
'); -} + if ( !thetags.length ) + return; -function tag_flush_to_text(id, a) { - a = a || false; - var taxbox, text, tags, newtags; + disabled = thetags.attr('disabled'); - taxbox = jQuery('#'+id); - text = a ? jQuery(a).text() : taxbox.find('input.newtag').val(); + current_tags = thetags.val().split(','); + tagchecklist.empty(); - // is the input box empty (i.e. showing the 'Add new tag' tip)? - if ( taxbox.find('input.newtag').hasClass('form-input-tip') && ! a ) - return false; + $.each( current_tags, function( key, val ) { + var span, xbutton; - tags = taxbox.find('.the-tags').val(); - newtags = tags ? tags + ',' + text : text; + val = $.trim( val ); - // massage - newtags = newtags.replace(/\s+,+\s*/g, ',').replace(/,+/g, ',').replace(/,+\s+,+/g, ',').replace(/,+\s*$/g, '').replace(/^\s*,+/g, ''); - newtags = array_unique_noempty(newtags.split(',')).join(','); - taxbox.find('.the-tags').val(newtags); - tag_update_quickclicks(taxbox); + if ( ! val ) + return; - if ( ! a ) - taxbox.find('input.newtag').val('').focus(); + // Create a new span, and ensure the text is properly escaped. + span = $('').text( val ); - return false; -} + // If tags editing isn't disabled, create the X button. + if ( ! disabled ) { + xbutton = $( 'X' ); + xbutton.click( function(){ tagBox.parseTags(this); }); + span.prepend(' ').prepend( xbutton ); + } -function tag_save_on_publish() { - jQuery('.tagsdiv').each( function(i) { - if ( !jQuery(this).find('input.newtag').hasClass('form-input-tip') ) - tag_flush_to_text(jQuery(this).parents('.tagsdiv').attr('id')); - } ); -} + // Append the span to the tag list. + tagchecklist.append( span ); + }); + }, -function tag_press_key( e ) { - if ( 13 == e.which ) { - tag_flush_to_text(jQuery(e.target).parents('.tagsdiv').attr('id')); - return false; - } -}; + flushTags : function(el, a, f) { + a = a || false; + var text, tags = $('.the-tags', el), newtag = $('input.newtag', el), newtags; -function tag_init() { - - jQuery('.ajaxtag').show(); - jQuery('.tagsdiv').each( function(i) { - tag_update_quickclicks(this); - } ); - - // add the quickadd form - jQuery('.ajaxtag input.tagadd').click(function(){tag_flush_to_text(jQuery(this).parents('.tagsdiv').attr('id'));}); - jQuery('.ajaxtag input.newtag').focus(function() { - if ( !this.cleared ) { - this.cleared = true; - jQuery(this).val( '' ).removeClass( 'form-input-tip' ); - } - }); - - jQuery('.ajaxtag input.newtag').blur(function() { - if ( this.value == '' ) { - this.cleared = false; - jQuery(this).val( postL10n.addTag ).addClass( 'form-input-tip' ); - } - }); - - // auto-save tags on post save/publish - jQuery('#publish').click( tag_save_on_publish ); - jQuery('#save-post').click( tag_save_on_publish ); - - // catch the enter key - jQuery('.ajaxtag input.newtag').keypress( tag_press_key ); -} + text = a ? $(a).text() : newtag.val(); + tagsval = tags.val(); + newtags = tagsval ? tagsval + ',' + text : text; -var commentsBox, tagCloud; -(function($){ + newtags = this.clean( newtags ); + newtags = array_unique_noempty( newtags.split(',') ).join(','); + tags.val(newtags); + this.quickClicks(el); - commentsBox = { - st : 0, - - get : function(total, num) { - var st = this.st, data; - if ( ! num ) - num = 20; - - this.st += num; - this.total = total; - $('#commentsdiv img.waiting').show(); - - data = { - 'action' : 'get-comments', - 'mode' : 'single', - '_ajax_nonce' : $('#add_comment_nonce').val(), - 'post_ID' : $('#post_ID').val(), - 'start' : st, - 'num' : num - }; - - $.post(ajaxurl, data, - function(r) { - r = wpAjax.parseAjaxResponse(r); - $('#commentsdiv .widefat').show(); - $('#commentsdiv img.waiting').hide(); - - if ( 'object' == typeof r && r.responses[0] ) { - $('#the-comment-list').append( r.responses[0].data ); - - theList = theExtraList = null; - $("a[className*=':']").unbind(); - setCommentsList(); - - if ( commentsBox.st > commentsBox.total ) - $('#show-comments').hide(); - else - $('#show-comments').html(postL10n.showcomm); - return; - } else if ( 1 == r ) { - $('#show-comments').parent().html(postL10n.endcomm); - return; - } + if ( !a ) + newtag.val(''); + if ( 'undefined' == typeof(f) ) + newtag.focus(); - $('#the-comment-list').append(''+wpAjax.broken+''); - } - ); + return false; + }, - return false; - } - }; - - tagCloud = { - init : function() { - $('.tagcloud-link').click(function(){ - tagCloud.get($(this).attr('id')); - $(this).unbind().click(function(){ - $(this).siblings('.the-tagcloud').toggle(); - return false; - }); + get : function(id) { + var tax = id.substr(id.indexOf('-')+1); + + $.post(ajaxurl, {'action':'get-tagcloud','tax':tax}, function(r, stat) { + if ( 0 == r || 'success' != stat ) + r = wpAjax.broken; + + r = $('

'+r+'

'); + $('a', r).click(function(){ + tagBox.flushTags( $(this).closest('.inside').children('.tagsdiv'), this); return false; }); - }, - get : function(id) { - var tax = id.substr(id.indexOf('-')+1); + $('#'+id).after(r); + }); + }, + + init : function() { + var t = this, ajaxtag = $('div.ajaxtag'); + + $('.tagsdiv').each( function() { + tagBox.quickClicks(this); + }); + + $('input.tagadd', ajaxtag).click(function(){ + t.flushTags( $(this).closest('.tagsdiv') ); + }); + + $('div.taghint', ajaxtag).click(function(){ + $(this).css('visibility', 'hidden').parent().siblings('.newtag').focus(); + }); + + $('input.newtag', ajaxtag).blur(function() { + if ( this.value == '' ) + $(this).parent().siblings('.taghint').css('visibility', ''); + }).focus(function(){ + $(this).parent().siblings('.taghint').css('visibility', 'hidden'); + }).keyup(function(e){ + if ( 13 == e.which ) { + tagBox.flushTags( $(this).closest('.tagsdiv') ); + return false; + } + }).keypress(function(e){ + if ( 13 == e.which ) { + e.preventDefault(); + return false; + } + }).each(function(){ + var tax = $(this).closest('div.tagsdiv').attr('id'); + $(this).suggest( ajaxurl + '?action=ajax-tag-search&tax=' + tax, { delay: 500, minchars: 2, multiple: true, multipleSep: "," } ); + }); + + // save tags on post save/publish + $('#post').submit(function(){ + $('div.tagsdiv').each( function() { + tagBox.flushTags(this, false, 1); + }); + }); - $.post(ajaxurl, {'action':'get-tagcloud','tax':tax}, function(r, stat) { - if ( 0 == r || 'success' != stat ) - r = wpAjax.broken; + // tag cloud + $('a.tagcloud-link').click(function(){ + tagBox.get( $(this).attr('id') ); + $(this).unbind().click(function(){ + $(this).siblings('.the-tagcloud').toggle(); + return false; + }); + return false; + }); + } +}; - r = $('

'+r+'

'); - $('a', r).click(function(){ - var id = $(this).parents('p').attr('id'); - tag_flush_to_text(id.substr(id.indexOf('-')+1), this); - return false; - }); +commentsBox = { + st : 0, + + get : function(total, num) { + var st = this.st, data; + if ( ! num ) + num = 20; + + this.st += num; + this.total = total; + $('#commentsdiv img.waiting').show(); + + data = { + 'action' : 'get-comments', + 'mode' : 'single', + '_ajax_nonce' : $('#add_comment_nonce').val(), + 'post_ID' : $('#post_ID').val(), + 'start' : st, + 'num' : num + }; + + $.post(ajaxurl, data, + function(r) { + r = wpAjax.parseAjaxResponse(r); + $('#commentsdiv .widefat').show(); + $('#commentsdiv img.waiting').hide(); + + if ( 'object' == typeof r && r.responses[0] ) { + $('#the-comment-list').append( r.responses[0].data ); + + theList = theExtraList = null; + $("a[className*=':']").unbind(); + setCommentsList(); + + if ( commentsBox.st > commentsBox.total ) + $('#show-comments').hide(); + else + $('#show-comments').html(postL10n.showcomm); + return; + } else if ( 1 == r ) { + $('#show-comments').parent().html(postL10n.endcomm); + return; + } - $('#'+id).after(r); - }); - } - }; + $('#the-comment-list').append(''+wpAjax.broken+''); + } + ); - $(document).ready(function(){tagCloud.init();}); -})(jQuery); + return false; + } +}; -jQuery(document).ready( function($) { - var noSyncChecks = false, syncChecks, catAddAfter, stamp = $('#timestamp').html(), visibility = $('#post-visibility-display').html(), sticky = ''; +WPSetThumbnailHTML = function(html){ + $('.inside', '#postimagediv').html(html); +}; - // for Press This - if ( typeof autosave != 'function' ) - autosave = function(){}; +WPSetThumbnailID = function(id){ + var field = $('input[value=_thumbnail_id]', '#list-table'); + if ( field.size() > 0 ) { + $('#meta\\[' + field.attr('id').match(/[0-9]+/) + '\\]\\[value\\]').text(id); + } +}; - // postboxes - postboxes.add_postbox_toggles('post'); +WPRemoveThumbnail = function(nonce){ + $.post(ajaxurl, { + action:"set-post-thumbnail", post_id: $('#post_ID').val(), thumbnail_id: -1, _ajax_nonce: nonce, cookie: encodeURIComponent(document.cookie) + }, function(str){ + if ( str == '0' ) { + alert( setPostThumbnailL10n.error ); + } else { + WPSetThumbnailHTML(str); + } + } + ); +}; - // Editable slugs - make_slugedit_clickable(); +})(jQuery); - // prepare the tag UI - tag_init(); +jQuery(document).ready( function($) { + var stamp, visibility, sticky = ''; - $('#title').blur( function() { if ( ($("#post_ID").val() > 0) || ($("#title").val().length == 0) ) return; autosave(); } ); + postboxes.add_postbox_toggles(pagenow); - // auto-suggest stuff - $('.newtag').each(function(){ - var tax = $(this).parents('div.tagsdiv').attr('id'); - $(this).suggest( 'admin-ajax.php?action=ajax-tag-search&tax='+tax, { delay: 500, minchars: 2, multiple: true, multipleSep: ", " } ); - }); + // multi-taxonomies + if ( $('#tagsdiv-post_tag').length ) { + tagBox.init(); + } else { + $('#side-sortables, #normal-sortables, #advanced-sortables').children('div.postbox').each(function(){ + if ( this.id.indexOf('tagsdiv-') === 0 ) { + tagBox.init(); + return false; + } + }); + } - // category tabs - $('#category-tabs a').click(function(){ - var t = $(this).attr('href'); - $(this).parent().addClass('tabs').siblings('li').removeClass('tabs'); - $('.tabs-panel').hide(); - $(t).show(); - if ( '#categories-all' == t ) - deleteUserSetting('cats'); - else - setUserSetting('cats','pop'); - return false; - }); - if ( getUserSetting('cats') ) - $('#category-tabs a[href="#categories-pop"]').click(); + // categories + $('.categorydiv').each( function(){ + var this_id = $(this).attr('id'), noSyncChecks = false, syncChecks, catAddAfter, taxonomyParts, taxonomy, settingName; + + taxonomyParts = this_id.split('-'); + taxonomyParts.shift(); + taxonomy = taxonomyParts.join('-'); + settingName = taxonomy + '_tab'; + if ( taxonomy == 'category' ) + settingName = 'cats'; + + // TODO: move to jQuery 1.3+, support for multiple hierarchical taxonomies, see wp-lists.dev.js + $('a', '#' + taxonomy + '-tabs').click( function(){ + var t = $(this).attr('href'); + $(this).parent().addClass('tabs').siblings('li').removeClass('tabs'); + $('#' + taxonomy + '-tabs').siblings('.tabs-panel').hide(); + $(t).show(); + if ( '#' + taxonomy + '-all' == t ) + deleteUserSetting(settingName); + else + setUserSetting(settingName, 'pop'); + return false; + }); + + if ( getUserSetting(settingName) ) + $('a[href="#' + taxonomy + '-pop"]', '#' + taxonomy + '-tabs').click(); + + // Ajax Cat + $('#new' + taxonomy).one( 'focus', function() { $(this).val( '' ).removeClass( 'form-input-tip' ) } ); + $('#' + taxonomy + '-add-submit').click( function(){ $('#new' + taxonomy).focus(); }); + + syncChecks = function() { + if ( noSyncChecks ) + return; + noSyncChecks = true; + var th = jQuery(this), c = th.is(':checked'), id = th.val().toString(); + $('#in-' + taxonomy + '-' + id + ', #in-' + taxonomy + '-category-' + id).attr( 'checked', c ); + noSyncChecks = false; + }; + + catAddBefore = function( s ) { + if ( !$('#new'+taxonomy).val() ) + return false; + s.data += '&' + $( ':checked', '#'+taxonomy+'checklist' ).serialize(); + return s; + }; - // Ajax Cat - $('#newcat').one( 'focus', function() { $(this).val( '' ).removeClass( 'form-input-tip' ) } ); - $('#category-add-sumbit').click(function(){$('#newcat').focus();}); + catAddAfter = function( r, s ) { + var sup, drop = $('#new'+taxonomy+'_parent'); - syncChecks = function() { - if ( noSyncChecks ) - return; - noSyncChecks = true; - var th = jQuery(this), c = th.is(':checked'), id = th.val().toString(); - $('#in-category-' + id + ', #in-popular-category-' + id).attr( 'checked', c ); - noSyncChecks = false; - }; - - popularCats = $('#categorychecklist-pop :checkbox').map( function() { return parseInt(jQuery(this).val(), 10); } ).get().join(','); - catAddBefore = function( s ) { - if ( !$('#newcat').val() ) + if ( 'undefined' != s.parsed.responses[0] && (sup = s.parsed.responses[0].supplemental.newcat_parent) ) { + drop.before(sup); + drop.remove(); + } + }; + + $('#' + taxonomy + 'checklist').wpList({ + alt: '', + response: taxonomy + '-ajax-response', + addBefore: catAddBefore, + addAfter: catAddAfter + }); + + $('#' + taxonomy + '-add-toggle').click( function() { + $('#' + taxonomy + '-adder').toggleClass( 'wp-hidden-children' ); + $('a[href="#' + taxonomy + '-all"]', '#' + taxonomy + '-tabs').click(); + $('#new'+taxonomy).focus(); return false; - s.data += '&popular_ids=' + popularCats + '&' + jQuery( '#categorychecklist :checked' ).serialize(); - return s; - }; - - catAddAfter = function( r, s ) { - var newCatParent = jQuery('#newcat_parent'), newCatParentOption = newCatParent.find( 'option[value="-1"]' ); - $(s.what + ' response_data', r).each( function() { - var t = $($(this).text()); - t.find( 'label' ).each( function() { - var th = $(this), val = th.find('input').val(), id = th.find('input')[0].id, name, o; - $('#' + id).change( syncChecks ).change(); - if ( newCatParent.find( 'option[value="' + val + '"]' ).size() ) - return; - name = $.trim( th.text() ); - o = $( '' ).text( name ); - newCatParent.prepend( o ); - } ); - newCatParentOption.attr( 'selected', 'selected' ); - } ); - }; - - $('#categorychecklist').wpList( { - alt: '', - response: 'category-ajax-response', - addBefore: catAddBefore, - addAfter: catAddAfter - } ); - - $('#category-add-toggle').click( function() { - $('#category-adder').toggleClass( 'wp-hidden-children' ); - $('#category-tabs a[href="#categories-all"]').click(); - return false; - } ); + }); - $('.categorychecklist .popular-category :checkbox').change( syncChecks ).filter( ':checked' ).change(), sticky = ''; + $('#' + taxonomy + 'checklist li.popular-category :checkbox, #' + taxonomy + 'checklist-pop :checkbox').live( 'click', function(){ + var t = $(this), c = t.is(':checked'), id = t.val(); + if ( id && t.parents('#taxonomy-'+taxonomy).length ) + $('#in-' + taxonomy + '-' + id + ', #in-popular-' + taxonomy + '-' + id).attr( 'checked', c ); + }); - function updateVisibility() { - if ( $('#post-visibility-select input:radio:checked').val() != 'public' ) { - $('#sticky').attr('checked', false); - $('#sticky-span').hide(); - } else { - $('#sticky-span').show(); - } - if ( $('#post-visibility-select input:radio:checked').val() != 'password' ) { - $('#password-span').hide(); - } else { - $('#password-span').show(); + }); // end cats + + // Custom Fields + if ( $('#postcustom').length ) { + $('#the-list').wpList( { addAfter: function( xml, s ) { + $('table#list-table').show(); + }, addBefore: function( s ) { + s.data += '&post_id=' + $('#post_ID').val(); + return s; } + }); } - function updateText() { - var attemptedDate, originalDate, currentDate, publishOn; - - attemptedDate = new Date( $('#aa').val(), $('#mm').val() -1, $('#jj').val(), $('#hh').val(), $('#mn').val()); - originalDate = new Date( $('#hidden_aa').val(), $('#hidden_mm').val() -1, $('#hidden_jj').val(), $('#hidden_hh').val(), $('#hidden_mn').val()); - currentDate = new Date( $('#cur_aa').val(), $('#cur_mm').val() -1, $('#cur_jj').val(), $('#cur_hh').val(), $('#cur_mn').val()); - if ( attemptedDate > currentDate && $('#original_post_status').val() != 'future' ) { - publishOn = postL10n.publishOnFuture; - $('#publish').val( postL10n.schedule ); - } else if ( attemptedDate <= currentDate && $('#original_post_status').val() != 'publish' ) { - publishOn = postL10n.publishOn; - $('#publish').val( postL10n.publish ); - } else { - publishOn = postL10n.publishOnPast; - $('#publish').val( postL10n.update ); - } - if ( originalDate.toUTCString() == attemptedDate.toUTCString() ) { //hack - $('#timestamp').html(stamp); - } else { - $('#timestamp').html( - publishOn + ' ' + - $( '#mm option[value=' + $('#mm').val() + ']' ).text() + ' ' + - $('#jj').val() + ', ' + - $('#aa').val() + ' @ ' + - $('#hh').val() + ':' + - $('#mn').val() + ' ' - ); - } + // submitdiv + if ( $('#submitdiv').length ) { + stamp = $('#timestamp').html(); + visibility = $('#post-visibility-display').html(); - if ( $('#post-visibility-select input:radio:checked').val() == 'private' ) { - $('#publish').val( postL10n.update ); - if ( $('#post_status option[value=publish]').length == 0 ) { - $('#post_status').append(''); + function updateVisibility() { + var pvSelect = $('#post-visibility-select'); + if ( $('input:radio:checked', pvSelect).val() != 'public' ) { + $('#sticky').attr('checked', false); + $('#sticky-span').hide(); + } else { + $('#sticky-span').show(); } - $('#post_status option[value=publish]').html( postL10n.privatelyPublished ); - $('#post_status option[value=publish]').attr('selected', true); - $('.edit-post-status').hide(); - } else { - if ( $('#original_post_status').val() == 'future' || $('#original_post_status').val() == 'draft' ) { - if ( $('#post_status option[value=publish]').length != 0 ) { - $('#post_status option[value=publish]').remove(); - $('#post_status').val($('#hidden_post_status').val()); - } + if ( $('input:radio:checked', pvSelect).val() != 'password' ) { + $('#password-span').hide(); } else { - $('#post_status option[value=publish]').html( postL10n.published ); + $('#password-span').show(); } - $('.edit-post-status').show(); } - $('#post-status-display').html($('#post_status :selected').text()); - if ( $('#post_status :selected').val() == 'private' || $('#post_status :selected').val() == 'publish' ) { - $('#save-post').hide(); - } else { - $('#save-post').show(); - if ( $('#post_status :selected').val() == 'pending' ) { - $('#save-post').show().val( postL10n.savePending ); + + function updateText() { + var attemptedDate, originalDate, currentDate, publishOn, page = 'page' == pagenow || 'page-new' == pagenow, + postStatus = $('#post_status'), optPublish = $('option[value=publish]', postStatus), aa = $('#aa').val(), + mm = $('#mm').val(), jj = $('#jj').val(), hh = $('#hh').val(), mn = $('#mn').val(); + + attemptedDate = new Date( aa, mm - 1, jj, hh, mn ); + originalDate = new Date( $('#hidden_aa').val(), $('#hidden_mm').val() -1, $('#hidden_jj').val(), $('#hidden_hh').val(), $('#hidden_mn').val() ); + currentDate = new Date( $('#cur_aa').val(), $('#cur_mm').val() -1, $('#cur_jj').val(), $('#cur_hh').val(), $('#cur_mn').val() ); + + if ( attemptedDate.getFullYear() != aa || (1 + attemptedDate.getMonth()) != mm || attemptedDate.getDate() != jj || attemptedDate.getMinutes() != mn ) { + $('.timestamp-wrap', '#timestampdiv').addClass('form-invalid'); + return false; } else { - $('#save-post').show().val( postL10n.saveDraft ); + $('.timestamp-wrap', '#timestampdiv').removeClass('form-invalid'); } - } - } - $('.edit-visibility').click(function () { - if ($('#post-visibility-select').is(":hidden")) { - updateVisibility(); - $('#post-visibility-select').slideDown("normal"); - $('.edit-visibility').hide(); + if ( attemptedDate > currentDate && $('#original_post_status').val() != 'future' ) { + publishOn = postL10n.publishOnFuture; + $('#publish').val( postL10n.schedule ); + } else if ( attemptedDate <= currentDate && $('#original_post_status').val() != 'publish' ) { + publishOn = postL10n.publishOn; + $('#publish').val( postL10n.publish ); + } else { + publishOn = postL10n.publishOnPast; + if ( page ) + $('#publish').val( postL10n.updatePage ); + else + $('#publish').val( postL10n.updatePost ); + } + if ( originalDate.toUTCString() == attemptedDate.toUTCString() ) { //hack + $('#timestamp').html(stamp); + } else { + $('#timestamp').html( + publishOn + ' ' + + $('option[value=' + $('#mm').val() + ']', '#mm').text() + ' ' + + jj + ', ' + + aa + ' @ ' + + hh + ':' + + mn + ' ' + ); + } + + if ( $('input:radio:checked', '#post-visibility-select').val() == 'private' ) { + if ( page ) + $('#publish').val( postL10n.updatePage ); + else + $('#publish').val( postL10n.updatePost ); + if ( optPublish.length == 0 ) { + postStatus.append(''); + } else { + optPublish.html( postL10n.privatelyPublished ); + } + $('option[value=publish]', postStatus).attr('selected', true); + $('.edit-post-status', '#misc-publishing-actions').hide(); + } else { + if ( $('#original_post_status').val() == 'future' || $('#original_post_status').val() == 'draft' ) { + if ( optPublish.length ) { + optPublish.remove(); + postStatus.val($('#hidden_post_status').val()); + } + } else { + optPublish.html( postL10n.published ); + } + if ( postStatus.is(':hidden') ) + $('.edit-post-status', '#misc-publishing-actions').show(); + } + $('#post-status-display').html($('option:selected', postStatus).text()); + if ( $('option:selected', postStatus).val() == 'private' || $('option:selected', postStatus).val() == 'publish' ) { + $('#save-post').hide(); + } else { + $('#save-post').show(); + if ( $('option:selected', postStatus).val() == 'pending' ) { + $('#save-post').show().val( postL10n.savePending ); + } else { + $('#save-post').show().val( postL10n.saveDraft ); + } + } + return true; } - return false; - }); - $('.cancel-post-visibility').click(function () { - $('#post-visibility-select').slideUp("normal"); - $('#visibility-radio-' + $('#hidden-post-visibility').val()).attr('checked', true); - $('#post_password').val($('#hidden_post_password').val()); - $('#sticky').attr('checked', $('#hidden-post-sticky').attr('checked')); - $('#post-visibility-display').html(visibility); - $('.edit-visibility').show(); - updateText(); - return false; - }); + $('.edit-visibility', '#visibility').click(function () { + if ($('#post-visibility-select').is(":hidden")) { + updateVisibility(); + $('#post-visibility-select').slideDown("normal"); + $(this).hide(); + } + return false; + }); + + $('.cancel-post-visibility', '#post-visibility-select').click(function () { + $('#post-visibility-select').slideUp("normal"); + $('#visibility-radio-' + $('#hidden-post-visibility').val()).attr('checked', true); + $('#post_password').val($('#hidden_post_password').val()); + $('#sticky').attr('checked', $('#hidden-post-sticky').attr('checked')); + $('#post-visibility-display').html(visibility); + $('.edit-visibility', '#visibility').show(); + updateText(); + return false; + }); - $('.save-post-visibility').click(function () { // crazyhorse - multiple ok cancels - $('#post-visibility-select').slideUp("normal"); - $('.edit-visibility').show(); - updateText(); - if ( $('#post-visibility-select input:radio:checked').val() != 'public' ) { - $('#sticky').attr('checked', false); - } + $('.save-post-visibility', '#post-visibility-select').click(function () { // crazyhorse - multiple ok cancels + var pvSelect = $('#post-visibility-select'); - if ( true == $('#sticky').attr('checked') ) { - sticky = 'Sticky'; - } else { - sticky = ''; - } + pvSelect.slideUp("normal"); + $('.edit-visibility', '#visibility').show(); + updateText(); - $('#post-visibility-display').html( - postL10n[$('#post-visibility-select input:radio:checked').val() + sticky] - ); + if ( $('input:radio:checked', pvSelect).val() != 'public' ) { + $('#sticky').attr('checked', false); + } // WEAPON LOCKED - return false; - }); + if ( true == $('#sticky').attr('checked') ) { + sticky = 'Sticky'; + } else { + sticky = ''; + } - $('#post-visibility-select input:radio').change(function() { - updateVisibility(); - }); + $('#post-visibility-display').html( postL10n[$('input:radio:checked', pvSelect).val() + sticky] ); + return false; + }); - $('.edit-timestamp').click(function () { - if ($('#timestampdiv').is(":hidden")) { - $('#timestampdiv').slideDown("normal"); - $('.edit-timestamp').hide(); - } + $('input:radio', '#post-visibility-select').change(function() { + updateVisibility(); + }); - return false; - }); + $('#timestampdiv').siblings('a.edit-timestamp').click(function() { + if ($('#timestampdiv').is(":hidden")) { + $('#timestampdiv').slideDown("normal"); + $(this).hide(); + } + return false; + }); + + $('.cancel-timestamp', '#timestampdiv').click(function() { + $('#timestampdiv').slideUp("normal"); + $('#mm').val($('#hidden_mm').val()); + $('#jj').val($('#hidden_jj').val()); + $('#aa').val($('#hidden_aa').val()); + $('#hh').val($('#hidden_hh').val()); + $('#mn').val($('#hidden_mn').val()); + $('#timestampdiv').siblings('a.edit-timestamp').show(); + updateText(); + return false; + }); - $('.cancel-timestamp').click(function() { - $('#timestampdiv').slideUp("normal"); - $('#mm').val($('#hidden_mm').val()); - $('#jj').val($('#hidden_jj').val()); - $('#aa').val($('#hidden_aa').val()); - $('#hh').val($('#hidden_hh').val()); - $('#mn').val($('#hidden_mn').val()); - $('.edit-timestamp').show(); - updateText(); - return false; - }); + $('.save-timestamp', '#timestampdiv').click(function () { // crazyhorse - multiple ok cancels + if ( updateText() ) { + $('#timestampdiv').slideUp("normal"); + $('#timestampdiv').siblings('a.edit-timestamp').show(); + } + return false; + }); - $('.save-timestamp').click(function () { // crazyhorse - multiple ok cancels - $('#timestampdiv').slideUp("normal"); - $('.edit-timestamp').show(); - updateText(); + $('#post-status-select').siblings('a.edit-post-status').click(function() { + if ($('#post-status-select').is(":hidden")) { + $('#post-status-select').slideDown("normal"); + $(this).hide(); + } + return false; + }); - return false; - }); + $('.save-post-status', '#post-status-select').click(function() { + $('#post-status-select').slideUp("normal"); + $('#post-status-select').siblings('a.edit-post-status').show(); + updateText(); + return false; + }); - $('.edit-post-status').click(function() { - if ($('#post-status-select').is(":hidden")) { - $('#post-status-select').slideDown("normal"); - $(this).hide(); - } + $('.cancel-post-status', '#post-status-select').click(function() { + $('#post-status-select').slideUp("normal"); + $('#post_status').val($('#hidden_post_status').val()); + $('#post-status-select').siblings('a.edit-post-status').show(); + updateText(); + return false; + }); + } // end submitdiv + + // permalink + if ( $('#edit-slug-box').length ) { + editPermalink = function(post_id) { + var i, c = 0, e = $('#editable-post-name'), revert_e = e.html(), real_slug = $('#post_name'), revert_slug = real_slug.val(), b = $('#edit-slug-buttons'), revert_b = b.html(), full = $('#editable-post-name-full').html(); + + $('#view-post-btn').hide(); + b.html(''+postL10n.ok+' '+postL10n.cancel+''); + b.children('.save').click(function() { + var new_slug = e.children('input').val(); + $.post(ajaxurl, { + action: 'sample-permalink', + post_id: post_id, + new_slug: new_slug, + new_title: $('#title').val(), + samplepermalinknonce: $('#samplepermalinknonce').val() + }, function(data) { + $('#edit-slug-box').html(data); + b.html(revert_b); + real_slug.attr('value', new_slug); + makeSlugeditClickable(); + $('#view-post-btn').show(); + }); + return false; + }); - return false; - }); + $('.cancel', '#edit-slug-buttons').click(function() { + $('#view-post-btn').show(); + e.html(revert_e); + b.html(revert_b); + real_slug.attr('value', revert_slug); + return false; + }); - $('.save-post-status').click(function() { - $('#post-status-select').slideUp("normal"); - $('.edit-post-status').show(); - updateText(); - return false; - }); + for ( i = 0; i < full.length; ++i ) { + if ( '%' == full.charAt(i) ) + c++; + } - $('.cancel-post-status').click(function() { - $('#post-status-select').slideUp("normal"); - $('#post_status').val($('#hidden_post_status').val()); - $('.edit-post-status').show(); - updateText(); - return false; - }); + slug_value = ( c > full.length / 4 ) ? '' : full; + e.html('').children('input').keypress(function(e){ + var key = e.keyCode || 0; + // on enter, just save the new slug, don't save the post + if ( 13 == key ) { + b.children('.save').click(); + return false; + } + if ( 27 == key ) { + b.children('.cancel').click(); + return false; + } + real_slug.attr('value', this.value); + }).focus(); + } - // Custom Fields - $('#the-list').wpList( { addAfter: function( xml, s ) { - $('table#list-table').show(); - if ( $.isFunction( autosave_update_post_ID ) ) { - autosave_update_post_ID(s.parsed.responses[0].supplemental.postid); + makeSlugeditClickable = function() { + $('#editable-post-name').click(function() { + $('#edit-slug-buttons').children('.edit-slug').click(); + }); } - }, addBefore: function( s ) { - s.data += '&post_id=' + $('#post_ID').val(); - return s; + makeSlugeditClickable(); } + + if ( $('#title').val() == '' ) + $('#title').siblings('#title-prompt-text').css('visibility', ''); + $('#title-prompt-text').click(function(){ + $(this).css('visibility', 'hidden').siblings('#title').focus(); + }); + $('#title').blur(function(){ + if (this.value == '') + $(this).siblings('#title-prompt-text').css('visibility', ''); + }).focus(function(){ + $(this).siblings('#title-prompt-text').css('visibility', 'hidden'); + }).keydown(function(e){ + $(this).siblings('#title-prompt-text').css('visibility', 'hidden'); + $(this).unbind(e); }); });