]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-includes/js/autosave.dev.js
Wordpress 3.0
[autoinstalls/wordpress.git] / wp-includes / js / autosave.dev.js
index 7aac86bcaa86dd86a7f34b8def9be9b83092bc69..ee5c4e4b8566c692b6ed40ad35f260c2dd6ce99e 100644 (file)
@@ -2,7 +2,7 @@ var autosave, autosaveLast = '', autosavePeriodical, autosaveOldMessage = '', au
 
 jQuery(document).ready( function($) {
        var dotabkey = true;
-       
+
        autosaveLast = $('#post #title').val() + $('#post #content').val();
        autosavePeriodical = $.schedule({time: autosaveL10n.autosaveInterval * 1000, func: function() { autosave(); }, repeat: true, protect: true});
 
@@ -39,7 +39,7 @@ jQuery(document).ready( function($) {
 
        // preview
        $('#post-preview').click(function(){
-               if ( 1 > $('#post_ID').val() && notSaved ) {
+               if ( $('#auto_draft').val() == '1' && notSaved ) {
                        autosaveDelayPreview = true;
                        autosave();
                        return false;
@@ -58,7 +58,7 @@ jQuery(document).ready( function($) {
        if ( typeof tinyMCE != 'undefined' ) {
                $('#title')[$.browser.opera ? 'keypress' : 'keydown'](function (e) {
                        if ( e.which == 9 && !e.shiftKey && !e.controlKey && !e.altKey ) {
-                               if ( ($("#post_ID").val() < 1) && ($("#title").val().length > 0) ) { autosave(); }
+                               if ( ($('#auto_draft').val() == '1') && ($("#title").val().length > 0) ) { autosave(); }
                                if ( tinyMCE.activeEditor && ! tinyMCE.activeEditor.isHidden() && dotabkey ) {
                                        e.preventDefault();
                                        dotabkey = false;
@@ -70,11 +70,10 @@ jQuery(document).ready( function($) {
        }
 
        // autosave new posts after a title is typed but not if Publish or Save Draft is clicked
-       if ( 0 > $('#post_ID').val() ) {
+       if ( '1' == $('#auto_draft').val() ) {
                $('#title').blur( function() {
-                       if ( !this.value || 0 < $('#post_ID').val() )
+                       if ( !this.value || $('#auto_draft').val() != '1' )
                                return;
-
                        delayed_autosave();
                });
        }
@@ -121,24 +120,23 @@ function autosave_parse_response(response) {
 
 // called when autosaving pre-existing post
 function autosave_saved(response) {
+       blockSave = false;
        autosave_parse_response(response); // parse the ajax response
        autosave_enable_buttons(); // re-enable disabled form buttons
 }
 
 // called when autosaving new post
 function autosave_saved_new(response) {
+       blockSave = false;
        var res = autosave_parse_response(response), tempID, postID;
-       // if no errors: update post_ID from the temporary value, grab new save-nonce for that new ID
        if ( res && res.responses.length && !res.errors ) {
-               tempID = jQuery('#post_ID').val();
+               // An ID is sent only for real auto-saves, not for autosave=0 "keepalive" saves
                postID = parseInt( res.responses[0].id, 10 );
-               autosave_update_post_ID( postID ); // disabled form buttons are re-enabled here
-               if ( tempID < 0 && postID > 0 ) { // update media buttons
+               if ( !isNaN(postID) && postID > 0 ) {
                        notSaved = false;
-                       jQuery('#media-buttons a').each(function(){
-                               this.href = this.href.replace(tempID, postID);
-                       });
+                       jQuery('#auto_draft').val('0'); // No longer an auto-draft
                }
+               autosave_enable_buttons();
                if ( autosaveDelayPreview ) {
                        autosaveDelayPreview = false;
                        doPreview();
@@ -148,28 +146,6 @@ function autosave_saved_new(response) {
        }
 }
 
-function autosave_update_post_ID( postID ) {
-       if ( !isNaN(postID) && postID > 0 ) {
-               if ( postID == parseInt(jQuery('#post_ID').val(), 10) ) { return; } // no need to do this more than once
-               jQuery('#post_ID').attr({name: "post_ID"});
-               jQuery('#post_ID').val(postID);
-               // We need new nonces
-               jQuery.post(autosaveL10n.requestFile, {
-                       action: "autosave-generate-nonces",
-                       post_ID: postID,
-                       autosavenonce: jQuery('#autosavenonce').val(),
-                       post_type: jQuery('#post_type').val()
-               }, function(html) {
-                       jQuery('#_wpnonce').val(html.updateNonce);
-                       jQuery('#delete-action a.submitdelete').attr('href', html.deleteURL);
-                       autosave_enable_buttons(); // re-enable disabled form buttons
-                       jQuery('#delete-action a.submitdelete').fadeIn();
-               },
-               'json');
-               jQuery('#hiddenaction').val('editpost');
-       }
-}
-
 function autosave_update_slug(post_id) {
        // create slug area only if not already there
        if ( 'undefined' != makeSlugeditClickable && jQuery.isFunction(makeSlugeditClickable) && !jQuery('#edit-slug-box > *').size() ) {
@@ -217,6 +193,7 @@ function delayed_autosave() {
 
 autosave = function() {
        // (bool) is rich editor enabled and active
+       blockSave = true;
        var rich = (typeof tinyMCE != "undefined") && tinyMCE.activeEditor && !tinyMCE.activeEditor.isHidden(), post_data, doAutoSave, ed, origStatus, successCallback;
 
        autosave_disable_buttons();
@@ -280,23 +257,25 @@ autosave = function() {
                post_data["excerpt"] = jQuery("#excerpt").val();
        if ( jQuery("#post_author").size() )
                post_data["post_author"] = jQuery("#post_author").val();
+       if ( jQuery("#parent_id").val() ) 
+               post_data["parent_id"] = jQuery("#parent_id").val(); 
        post_data["user_ID"] = jQuery("#user-id").val();
+       if ( jQuery('#auto_draft').val() == '1' )
+               post_data["auto_draft"] = '1';
 
        if ( doAutoSave ) {
-               autosaveLast = jQuery("#title").val()+jQuery("#content").val();
+               autosaveLast = jQuery("#title").val() + jQuery("#content").val();
        } else {
                post_data['autosave'] = 0;
        }
 
-       if ( parseInt(post_data["post_ID"], 10) < 1 ) {
-               post_data["temp_ID"] = post_data["post_ID"];
+       if ( post_data["auto_draft"] == '1' ) {
                successCallback = autosave_saved_new; // new post
        } else {
                successCallback = autosave_saved; // pre-existing post
        }
 
        autosaveOldMessage = jQuery('#autosave').html();
-
        jQuery.ajax({
                data: post_data,
                beforeSend: doAutoSave ? autosave_loading : null,