2008-01-28 22:34:42 +01:00
|
|
|
// this file contains all the scripts used in the post/edit page
|
2008-01-03 02:34:11 +01:00
|
|
|
|
|
|
|
function new_tag_remove_tag() {
|
|
|
|
var id = jQuery( this ).attr( 'id' );
|
|
|
|
var num = id.substr( 10 );
|
|
|
|
var current_tags = jQuery( '#tags-input' ).val().split(',');
|
|
|
|
delete current_tags[num];
|
|
|
|
var new_tags = [];
|
|
|
|
jQuery.each( current_tags, function( key, val ) {
|
|
|
|
if ( val && !val.match(/^\s+$/) && '' != val ) {
|
|
|
|
new_tags = new_tags.concat( val );
|
|
|
|
}
|
|
|
|
});
|
|
|
|
jQuery( '#tags-input' ).val( new_tags.join( ',' ).replace( /\s*,+\s*/, ',' ).replace( /,+/, ',' ).replace( /,+\s+,+/, ',' ).replace( /,+\s*$/, '' ).replace( /^\s*,+/, '' ) );
|
|
|
|
tag_update_quickclicks();
|
2008-03-03 22:12:17 +01:00
|
|
|
jQuery('#newtag').focus();
|
2008-01-03 02:34:11 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
function tag_update_quickclicks() {
|
2008-05-14 22:01:09 +02:00
|
|
|
if ( jQuery( '#tags-input' ).length == 0 )
|
|
|
|
return;
|
2008-01-03 02:34:11 +01:00
|
|
|
var current_tags = jQuery( '#tags-input' ).val().split(',');
|
|
|
|
jQuery( '#tagchecklist' ).empty();
|
|
|
|
shown = false;
|
|
|
|
// jQuery.merge( current_tags, current_tags ); // this doesn't work anymore, need something to array_unique
|
|
|
|
jQuery.each( current_tags, function( key, val ) {
|
|
|
|
val = val.replace( /^\s+/, '' ).replace( /\s+$/, '' ); // trim
|
2008-03-02 21:17:30 +01:00
|
|
|
if ( !val.match(/^\s+$/) && '' != val ) {
|
2008-01-03 02:34:11 +01:00
|
|
|
txt = '<span><a id="tag-check-' + key + '" class="ntdelbutton">X</a> ' + val + '</span> ';
|
|
|
|
jQuery( '#tagchecklist' ).append( txt );
|
|
|
|
jQuery( '#tag-check-' + key ).click( new_tag_remove_tag );
|
|
|
|
shown = true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
if ( shown )
|
2008-01-09 18:46:13 +01:00
|
|
|
jQuery( '#tagchecklist' ).prepend( '<strong>'+postL10n.tagsUsed+'</strong><br />' );
|
2008-01-03 02:34:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function tag_flush_to_text() {
|
|
|
|
var newtags = jQuery('#tags-input').val() + ',' + jQuery('#newtag').val();
|
|
|
|
// massage
|
|
|
|
newtags = newtags.replace( /\s+,+\s*/g, ',' ).replace( /,+/g, ',' ).replace( /,+\s+,+/g, ',' ).replace( /,+\s*$/g, '' ).replace( /^\s*,+/g, '' );
|
|
|
|
jQuery('#tags-input').val( newtags );
|
|
|
|
tag_update_quickclicks();
|
|
|
|
jQuery('#newtag').val('');
|
2008-03-03 22:12:17 +01:00
|
|
|
jQuery('#newtag').focus();
|
2008-01-03 02:34:11 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-02-14 01:51:28 +01:00
|
|
|
function tag_save_on_publish() {
|
|
|
|
if ( jQuery('#newtag').val() != postL10n.addTag )
|
|
|
|
tag_flush_to_text();
|
|
|
|
}
|
|
|
|
|
2008-01-03 02:34:11 +01:00
|
|
|
function tag_press_key( e ) {
|
|
|
|
if ( 13 == e.keyCode ) {
|
|
|
|
tag_flush_to_text();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-08-25 12:17:41 +02:00
|
|
|
jQuery(document).ready( function($) {
|
2008-03-26 21:06:18 +01:00
|
|
|
// close postboxes that should be closed
|
|
|
|
jQuery('.if-js-closed').removeClass('if-js-closed').addClass('closed');
|
|
|
|
|
2008-01-28 22:34:42 +01:00
|
|
|
// postboxes
|
2008-08-20 23:42:31 +02:00
|
|
|
postboxes.add_postbox_toggles('post');
|
2008-01-28 22:34:42 +01:00
|
|
|
|
|
|
|
// Editable slugs
|
|
|
|
make_slugedit_clickable();
|
2008-03-02 21:17:30 +01:00
|
|
|
|
2008-02-21 21:19:34 +01:00
|
|
|
// hide advanced slug field
|
|
|
|
jQuery('#slugdiv').hide();
|
2008-01-28 22:34:42 +01:00
|
|
|
|
2008-01-03 02:34:11 +01:00
|
|
|
jQuery('#tags-input').hide();
|
|
|
|
tag_update_quickclicks();
|
|
|
|
// add the quickadd form
|
2008-03-22 22:25:21 +01:00
|
|
|
jQuery('#jaxtag').prepend('<span id="ajaxtag"><input type="text" name="newtag" id="newtag" class="form-input-tip" size="16" autocomplete="off" value="'+postL10n.addTag+'" /><input type="button" class="button" id="tagadd" value="' + postL10n.add + '" tabindex="3" /><input type="hidden"/><input type="hidden"/><span class="howto">'+postL10n.separate+'</span></span>');
|
2008-01-03 02:34:11 +01:00
|
|
|
jQuery('#tagadd').click( tag_flush_to_text );
|
|
|
|
jQuery('#newtag').focus(function() {
|
2008-01-10 21:19:58 +01:00
|
|
|
if ( this.value == postL10n.addTag )
|
|
|
|
jQuery(this).val( '' ).removeClass( 'form-input-tip' );
|
2008-01-03 02:34:11 +01:00
|
|
|
});
|
|
|
|
jQuery('#newtag').blur(function() {
|
2008-01-10 21:19:58 +01:00
|
|
|
if ( this.value == '' )
|
|
|
|
jQuery(this).val( postL10n.addTag ).addClass( 'form-input-tip' );
|
2008-01-03 02:34:11 +01:00
|
|
|
});
|
|
|
|
|
2008-02-14 01:51:28 +01:00
|
|
|
// auto-save tags on post save/publish
|
|
|
|
jQuery('#publish').click( tag_save_on_publish );
|
|
|
|
jQuery('#save-post').click( tag_save_on_publish );
|
|
|
|
|
2008-03-19 06:38:58 +01:00
|
|
|
jQuery('#title').blur( function() { if ( (jQuery("#post_ID").val() > 0) || (jQuery("#title").val().length == 0) ) return; autosave(); } );
|
|
|
|
|
2008-01-03 02:34:11 +01:00
|
|
|
// auto-suggest stuff
|
2008-06-30 02:04:22 +02:00
|
|
|
jQuery('#newtag').suggest( 'admin-ajax.php?action=ajax-tag-search', { delay: 500, minchars: 2, multiple: true, multipleSep: ", " } );
|
2008-01-12 16:54:44 +01:00
|
|
|
jQuery('#newtag').keypress( tag_press_key );
|
2008-01-09 18:46:13 +01:00
|
|
|
|
2008-01-10 10:39:35 +01:00
|
|
|
// category tabs
|
2008-04-17 21:32:38 +02:00
|
|
|
var categoryTabs =jQuery('#category-tabs').tabs();
|
|
|
|
|
|
|
|
// Ajax Cat
|
|
|
|
var newCat = jQuery('#newcat').one( 'focus', function() { jQuery(this).val( '' ).removeClass( 'form-input-tip' ) } );
|
|
|
|
jQuery('#category-add-sumbit').click( function() { newCat.focus(); } );
|
|
|
|
var newCatParent = false;
|
|
|
|
var newCatParentOption = false;
|
|
|
|
var noSyncChecks = false; // prophylactic. necessary?
|
|
|
|
var syncChecks = function() {
|
|
|
|
if ( noSyncChecks )
|
|
|
|
return;
|
|
|
|
noSyncChecks = true;
|
|
|
|
var th = jQuery(this);
|
|
|
|
var c = th.is(':checked');
|
|
|
|
var id = th.val().toString();
|
|
|
|
jQuery('#in-category-' + id + ', #in-popular-category-' + id).attr( 'checked', c );
|
|
|
|
noSyncChecks = false;
|
|
|
|
};
|
2008-05-19 23:35:18 +02:00
|
|
|
var popularCats = jQuery('#categorychecklist-pop :checkbox').map( function() { return parseInt(jQuery(this).val(), 10); } ).get().join(',');
|
2008-04-17 21:32:38 +02:00
|
|
|
var catAddBefore = function( s ) {
|
2008-05-19 23:35:18 +02:00
|
|
|
s.data += '&popular_ids=' + popularCats + '&' + jQuery( '#categorychecklist :checked' ).serialize();
|
2008-04-17 21:32:38 +02:00
|
|
|
return s;
|
|
|
|
};
|
|
|
|
var catAddAfter = function( r, s ) {
|
|
|
|
if ( !newCatParent ) newCatParent = jQuery('#newcat_parent');
|
|
|
|
if ( !newCatParentOption ) newCatParentOption = newCatParent.find( 'option[value=-1]' );
|
|
|
|
jQuery(s.what + ' response_data', r).each( function() {
|
|
|
|
var t = jQuery(jQuery(this).text());
|
|
|
|
t.find( 'label' ).each( function() {
|
2008-04-15 20:00:52 +02:00
|
|
|
var th = jQuery(this);
|
2008-04-17 21:32:38 +02:00
|
|
|
var val = th.find('input').val();
|
|
|
|
var id = th.find('input')[0].id
|
2008-04-23 00:45:53 +02:00
|
|
|
jQuery('#' + id).change( syncChecks ).change();
|
2008-04-17 21:32:38 +02:00
|
|
|
if ( newCatParent.find( 'option[value=' + val + ']' ).size() )
|
|
|
|
return;
|
|
|
|
var name = jQuery.trim( th.text() );
|
|
|
|
var o = jQuery( '<option value="' + parseInt( val, 10 ) + '"></option>' ).text( name );
|
|
|
|
newCatParent.prepend( o );
|
2008-01-10 21:19:58 +01:00
|
|
|
} );
|
2008-04-17 21:32:38 +02:00
|
|
|
newCatParentOption.attr( 'selected', true );
|
|
|
|
} );
|
|
|
|
};
|
|
|
|
jQuery('#categorychecklist').wpList( {
|
|
|
|
alt: '',
|
|
|
|
response: 'category-ajax-response',
|
|
|
|
addBefore: catAddBefore,
|
|
|
|
addAfter: catAddAfter
|
2008-01-10 10:39:35 +01:00
|
|
|
} );
|
|
|
|
jQuery('#category-add-toggle').click( function() {
|
|
|
|
jQuery(this).parents('div:first').toggleClass( 'wp-hidden-children' );
|
2008-05-19 23:35:18 +02:00
|
|
|
// categoryTabs.tabs( 'select', '#categories-all' ); // this is broken (in the UI beta?)
|
|
|
|
categoryTabs.find( 'a[href="#categories-all"]' ).click();
|
2008-03-03 22:12:17 +01:00
|
|
|
jQuery('#newcat').focus();
|
2008-01-10 10:39:35 +01:00
|
|
|
return false;
|
|
|
|
} );
|
2008-04-17 21:32:38 +02:00
|
|
|
jQuery('.categorychecklist .popular-category :checkbox').change( syncChecks ).filter( ':checked' ).change();
|
2008-09-14 14:58:00 +02:00
|
|
|
var stamp = $('#timestamp').html();
|
2008-02-18 23:07:57 +01:00
|
|
|
|
2008-09-14 14:58:00 +02:00
|
|
|
$('.edit-timestamp').click(function () {
|
|
|
|
if ($('#timestampdiv').is(":hidden")) {
|
|
|
|
$('#timestampdiv').slideDown("normal");
|
|
|
|
$('.edit-timestamp').hide();
|
2008-02-18 23:07:57 +01:00
|
|
|
}
|
2008-09-14 14:58:00 +02:00
|
|
|
|
2008-02-22 07:12:10 +01:00
|
|
|
return false;
|
2008-08-20 23:42:31 +02:00
|
|
|
});
|
2008-03-22 09:15:48 +01:00
|
|
|
|
2008-09-14 14:58:00 +02:00
|
|
|
$('.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());
|
|
|
|
$('#timestamp').html(stamp);
|
|
|
|
$('.edit-timestamp').show();
|
|
|
|
|
2008-10-29 20:22:56 +01:00
|
|
|
var attemptedDate = new Date( $('#aa').val(), $('#mm').val() -1, $('#jj').val(), $('#hh').val(), $('#mn').val() );
|
|
|
|
var currentDate = new Date( $('#cur_aa').val(), $('#cur_mm').val() -1, $('#cur_jj').val(), $('#cur_hh').val(), $('#cur_mn').val() );
|
|
|
|
if ( attemptedDate > currentDate ) {
|
|
|
|
$('#publish').val( postL10n.schedule );
|
|
|
|
} else if ( $('#original_post_status').val() != 'publish' ) {
|
|
|
|
$('#publish').val( postL10n.publish );
|
|
|
|
} else {
|
|
|
|
$('#publish').val( postL10n.update );
|
|
|
|
}
|
|
|
|
|
2008-09-14 14:58:00 +02:00
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
$('.save-timestamp').click(function () { // crazyhorse - multiple ok cancels
|
|
|
|
$('#timestampdiv').slideUp("normal");
|
|
|
|
$('.edit-timestamp').show();
|
2008-10-29 20:22:56 +01:00
|
|
|
var attemptedDate = new Date( $('#aa').val(), $('#mm').val() -1, $('#jj').val(), $('#hh').val(), $('#mn').val() );
|
|
|
|
var currentDate = new Date( $('#cur_aa').val(), $('#cur_mm').val() -1, $('#cur_jj').val(), $('#cur_hh').val(), $('#cur_mn').val() );
|
|
|
|
if ( attemptedDate > currentDate ) {
|
|
|
|
var publishOn = postL10n.publishOnFuture;
|
|
|
|
$('#publish').val( postL10n.schedule );
|
|
|
|
} else if ( $('#original_post_status').val() != 'publish' ) {
|
|
|
|
var publishOn = postL10n.publishOn;
|
|
|
|
$('#publish').val( postL10n.publish );
|
|
|
|
} else {
|
|
|
|
var publishOn = postL10n.publishOnPast;
|
|
|
|
$('#publish').val( postL10n.update );
|
|
|
|
}
|
2008-09-14 14:58:00 +02:00
|
|
|
$('#timestamp').html(
|
2008-10-29 20:22:56 +01:00
|
|
|
publishOn + '<br />' +
|
2008-09-14 14:58:00 +02:00
|
|
|
$( '#mm option[value=' + $('#mm').val() + ']' ).text() + ' ' +
|
|
|
|
$('#jj').val() + ', ' +
|
|
|
|
$('#aa').val() + ' @ ' +
|
|
|
|
$('#hh').val() + ':' +
|
|
|
|
$('#mn').val() + ' '
|
|
|
|
);
|
|
|
|
|
2008-08-20 23:42:31 +02:00
|
|
|
return false;
|
2008-03-22 09:15:48 +01:00
|
|
|
});
|
|
|
|
|
2008-09-14 14:58:00 +02:00
|
|
|
$('.edit-post-status').click(function() {
|
|
|
|
if ($('#post-status-select').is(":hidden")) {
|
|
|
|
$('#post-status-select').slideDown("normal");
|
|
|
|
$(this).hide();
|
2008-09-12 15:12:28 +02:00
|
|
|
}
|
2008-09-14 14:58:00 +02:00
|
|
|
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
$('.save-post-status').click(function() {
|
|
|
|
$('#post-status-select').slideUp("normal");
|
|
|
|
$('#post-status-display').html($('#post_status :selected').text());
|
|
|
|
$('.edit-post-status').show();
|
2008-10-29 20:22:56 +01:00
|
|
|
if ( $('#post_status :selected').val() == 'pending' ) {
|
|
|
|
$('#save-post').val( postL10n.savePending );
|
|
|
|
} else {
|
|
|
|
$('#save-post').val( postL10n.saveDraft );
|
|
|
|
}
|
2008-09-12 15:12:28 +02:00
|
|
|
return false;
|
|
|
|
});
|
2008-10-17 11:44:22 +02:00
|
|
|
|
2008-09-14 14:58:00 +02:00
|
|
|
$('.cancel-post-status').click(function() {
|
|
|
|
$('#post-status-select').slideUp("normal");
|
|
|
|
$('#post_status').val($('#hidden_post_status').val());
|
|
|
|
$('#post-status-display').html($('#post_status :selected').text());
|
|
|
|
$('.edit-post-status').show();
|
2008-10-29 20:22:56 +01:00
|
|
|
if ( $('#post_status :selected').val() == 'pending' ) {
|
|
|
|
$('#save-post').val( postL10n.savePending );
|
|
|
|
} else {
|
|
|
|
$('#save-post').val( postL10n.saveDraft );
|
|
|
|
}
|
2008-10-17 11:44:22 +02:00
|
|
|
|
2008-09-14 14:58:00 +02:00
|
|
|
return false;
|
|
|
|
});
|
2008-10-31 06:38:31 +01:00
|
|
|
|
|
|
|
// Custom Fields
|
|
|
|
jQuery('#the-list').wpList( { addAfter: function( xml, s ) {
|
|
|
|
if ( jQuery.isFunction( autosave_update_post_ID ) ) {
|
|
|
|
autosave_update_post_ID(s.parsed.responses[0].supplemental.postid);
|
|
|
|
}
|
|
|
|
}, addBefore: function( s ) {
|
|
|
|
s.data += '&post_id=' + jQuery('#post_ID').val();
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
});
|
2008-10-31 23:47:07 +01:00
|
|
|
|
|
|
|
// preview
|
|
|
|
$('#post-preview').click(function(e){
|
|
|
|
$('input#wp-preview').val('dopreview');
|
|
|
|
$('form#post').attr('target', 'wp-preview').submit().attr('target', '');
|
|
|
|
$('input#wp-preview').val('');
|
|
|
|
});
|
|
|
|
|
2008-03-03 22:12:17 +01:00
|
|
|
});
|
2008-10-17 11:44:22 +02:00
|
|
|
|
|
|
|
(function($){
|
|
|
|
commentsBox = {
|
|
|
|
st : 0,
|
|
|
|
|
2008-10-18 19:00:20 +02:00
|
|
|
get : function(total, num) {
|
2008-10-17 11:44:22 +02:00
|
|
|
var st = this.st;
|
2008-10-18 19:00:20 +02:00
|
|
|
if ( ! num )
|
|
|
|
num = 20;
|
2008-10-17 11:44:22 +02:00
|
|
|
|
2008-10-18 19:00:20 +02:00
|
|
|
this.st += num;
|
|
|
|
this.total = total;
|
2008-10-17 11:44:22 +02:00
|
|
|
$('.waiting').show();
|
|
|
|
|
|
|
|
var data = {
|
|
|
|
'action' : 'get-comments',
|
|
|
|
'mode' : 'single',
|
|
|
|
'_ajax_nonce' : $('#add_comment_nonce').val(),
|
|
|
|
'post_ID' : $('#post_ID').val(),
|
|
|
|
'start' : st,
|
2008-10-18 19:00:20 +02:00
|
|
|
'num' : num
|
2008-10-17 11:44:22 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
$.post('admin-ajax.php', data,
|
|
|
|
function(r) {
|
|
|
|
var r = wpAjax.parseAjaxResponse(r);
|
2008-10-30 16:50:21 +01:00
|
|
|
$('#commentstatusdiv .widefat').show();
|
2008-10-17 11:44:22 +02:00
|
|
|
$('.waiting').hide();
|
|
|
|
|
|
|
|
if ( 'object' == typeof r && r.responses[0] ) {
|
|
|
|
$('#the-comment-list').append( r.responses[0].data );
|
|
|
|
$('#the-comment-list .hide-if-no-js').removeClass('hide-if-no-js');
|
|
|
|
|
|
|
|
theList = theExtraList = null;
|
|
|
|
$("a[className*=':']").unbind();
|
|
|
|
setCommentsList();
|
2008-10-18 19:00:20 +02:00
|
|
|
|
|
|
|
if ( commentsBox.st > commentsBox.total )
|
|
|
|
$('#show-comments').hide();
|
|
|
|
else
|
|
|
|
$('#show-comments').html(postL10n.showcomm);
|
2008-10-17 11:44:22 +02:00
|
|
|
return;
|
|
|
|
} else if ( 1 == r ) {
|
|
|
|
$('#show-comments').parent().html(postL10n.endcomm);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-10-30 16:50:21 +01:00
|
|
|
$('#the-comment-list').append('<tr><td colspan="5">'+wpAjax.broken+'</td></tr>');
|
2008-10-17 11:44:22 +02:00
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2008-10-31 23:47:07 +01:00
|
|
|
};
|
|
|
|
|
2008-10-17 11:44:22 +02:00
|
|
|
})(jQuery);
|
|
|
|
|