]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/js/inline-edit-post.dev.js
Wordpress 2.9
[autoinstalls/wordpress.git] / wp-admin / js / inline-edit-post.dev.js
index ecc93b6b68400983af2d8460f61f8da73100aa39..f1380ee675af2fd965148f218824edd0390d8c62 100644 (file)
@@ -8,9 +8,6 @@ inlineEditPost = {
                t.type = $('table.widefat').hasClass('page') ? 'page' : 'post';
                t.what = '#'+t.type+'-';
 
-               // get all editable rows
-               t.rows = $('tr.iedit');
-
                // prepare the edit rows
                qeRow.keyup(function(e) { if(e.which == 27) return inlineEditPost.revert(); });
                bulkRow.keyup(function(e) { if (e.which == 27) return inlineEditPost.revert(); });
@@ -31,7 +28,7 @@ inlineEditPost = {
                });
 
                // add events
-               t.addEvents(t.rows);
+               $('a.editinline').live('click', function() { inlineEditPost.edit(this); return false; });
 
                $('#bulk-title-div').parents('fieldset').after(
                        $('#inline-edit fieldset.inline-edit-categories').clone()
@@ -76,15 +73,8 @@ inlineEditPost = {
                $(t.what+t.getId(el)).css('display') == 'none' ? t.revert() : t.edit(el);
        },
 
-       addEvents : function(r) {
-               r.each(function() {
-                       var row = $(this);
-                       $('a.editinline', row).click(function() { inlineEditPost.edit(this); return false; });
-               });
-       },
-
        setBulk : function() {
-               var te = '', type = this.type, tax;
+               var te = '', type = this.type, tax, c = true;
                this.revert();
 
                $('#bulk-edit td').attr('colspan', $('.widefat:first thead th:visible').length);
@@ -93,12 +83,16 @@ inlineEditPost = {
 
                $('tbody th.check-column input[type="checkbox"]').each(function(i){
                        if ( $(this).attr('checked') ) {
+                               c = false;
                                var id = $(this).val(), theTitle;
                                theTitle = $('#inline_'+id+' .post_title').text() || inlineEditL10n.notitle;
                                te += '<div id="ttle'+id+'"><a id="_'+id+'" class="ntdelbutton" title="'+inlineEditL10n.ntdeltitle+'">X</a>'+theTitle+'</div>';
                        }
                });
 
+               if ( c )
+                       return this.revert();
+
                $('#bulk-titles').html(te);
                $('#bulk-titles a').click(function() {
                        var id = $(this).attr('id').substr(1);
@@ -136,6 +130,11 @@ inlineEditPost = {
 
                // populate the data
                rowData = $('#inline_'+id);
+               if ( !$(':input[name="post_author"] option[value=' + $('.post_author', rowData).text() + ']', editRow).val() ) {
+                       // author no longer has edit caps, so we need to add them to the list of authors
+                       $(':input[name="post_author"]', editRow).prepend('<option value="' + $('.post_author', rowData).text() + '">' + $('#' + t.type + '-' + id + ' .author').text() + '</option>');
+               }
+
                for ( f = 0; f < fields.length; f++ ) {
                        $(':input[name="'+fields[f]+'"]', editRow).val( $('.'+fields[f], rowData).text() );
                }
@@ -191,7 +190,7 @@ inlineEditPost = {
        },
 
        save : function(id) {
-               var params, fields;
+               var params, fields, page = $('.post_status_page').val() || '';
 
                if( typeof(id) == 'object' )
                        id = this.getId(id);
@@ -202,10 +201,11 @@ inlineEditPost = {
                        action: 'inline-save',
                        post_type: this.type,
                        post_ID: id,
-                       edit_date: 'true'
+                       edit_date: 'true',
+                       post_status: page
                };
 
-               fields = $('#edit-'+id+' :input').fieldSerialize();
+               fields = $('#edit-'+id+' :input').serialize();
                params = fields + '&' + $.param(params);
 
                // make ajax request
@@ -217,15 +217,7 @@ inlineEditPost = {
                                        if ( -1 != r.indexOf('<tr') ) {
                                                $(inlineEditPost.what+id).remove();
                                                $('#edit-'+id).before(r).remove();
-
-                                               var row = $(inlineEditPost.what+id);
-                                               row.hide();
-
-                                               if ( 'draft' == $('input[name="post_status"]').val() )
-                                                       row.find('td.column-comments').hide();
-
-                                               inlineEditPost.addEvents(row);
-                                               row.fadeIn();
+                                               $(inlineEditPost.what+id).hide().fadeIn();
                                        } else {
                                                r = r.replace( /<.[^<>]*?>/g, '' );
                                                $('#edit-'+id+' .inline-edit-save').append('<span class="error">'+r+'</span>');