Make WordPress Core

Ticket #23497: 23497.16.diff

File 23497.16.diff, 29.8 KB (added by adamsilverstein, 12 years ago)

model load optimizations

  • wp-includes/post-template.php

     
    14681468        else :
    14691469                echo "<ul class='post-revisions'>\n";
    14701470                echo $rows;
     1471                if ( $restored_from_meta = get_post_meta( $post->ID, '_post_restored_from', true ) ) {
     1472                        $author = get_the_author_meta( 'display_name', $restored_from_meta[ 'restored_by_user' ] );
     1473                        /* translators: revision date format, see http://php.net/date */
     1474                        $datef = _x( 'j F, Y @ G:i:s', 'revision date format');
     1475                        $date = date_i18n( $datef, strtotime( $restored_from_meta[ 'restored_time' ] ) );
     1476                        $timesince = human_time_diff( $restored_from_meta[ 'restored_time' ], current_time( 'timestamp' ) ) . __( ' ago ' );
     1477                        ?>
     1478                        <hr />
     1479                        <div id="revisions-meta-restored">
     1480                                <?php
     1481                                printf( 'Previously restored from Revision ID %d, %s by %s (%s)',
     1482                                $restored_from_meta[ 'restored_revision_id'],
     1483                                $timesince,
     1484                                $author,
     1485                                $date );
     1486                                ?>
     1487                        </div>
     1488                        <?php
    14711489                echo "</ul>";
     1490                }
     1491
    14721492        endif;
    14731493
    14741494}
  • wp-includes/pluggable.php

     
    17221722
    17231723        $r  = "<table class='diff'>\n";
    17241724
    1725         if ( isset( $args[ 'showsplitview' ] ) && 'true' == $args[ 'showsplitview' ] ) {
     1725        if ( ! empty( $args[ 'show_split_view' ] ) ) {
    17261726                $r .= "<col class='content diffsplit left' /><col class='content diffsplit middle' /><col class='content diffsplit right' />";
    17271727        } else {
    17281728                $r .= "<col class='content' />";
  • wp-admin/includes/ajax-actions.php

     
    21312131function wp_ajax_revisions_data() {
    21322132        check_ajax_referer( 'revisions-ajax-nonce', 'nonce' );
    21332133
    2134         $compareto = isset( $_GET['compareto'] ) ? absint( $_GET['compareto'] ) : 0;
    2135         $showautosaves = isset( $_GET['showautosaves'] ) ? $_GET['showautosaves'] : '';
    2136         $showsplitview = isset( $_GET['showsplitview'] ) ? $_GET['showsplitview'] : '';
    2137         $postid = isset( $_GET['post_id'] ) ? absint( $_GET['post_id'] ) : '';
     2134        $compare_to = isset( $_GET['compare_to'] ) ? absint( $_GET['compare_to'] ) : 0;
     2135        $show_autosaves = isset( $_GET['show_autosaves'] ) ? $_GET['show_autosaves'] : '';
     2136        $show_split_view = isset( $_GET['show_split_view'] ) ? $_GET['show_split_view'] : '';
     2137        $post_id = isset( $_GET['post_id'] ) ? absint( $_GET['post_id'] ) : '';
     2138        $right_handle_at = isset( $_GET['right_handle_at'] ) ? $_GET['right_handle_at'] : 0;
     2139        $left_handle_at = isset( $_GET['left_handle_at'] ) ? $_GET['left_handle_at'] : 0;
    21382140
    2139         $comparetwomode = ( '' == $postid ) ? false : true;
     2141        $compare_two_mode = ( '' == $post_id ) ? false : true;
    21402142        //
    2141         //TODO: currently code returns all possible comparisons for the indicated 'compareto' revision
     2143        //TODO: currently code returns all possible comparisons for the indicated 'compare_to' revision
    21422144        //however, the front end prevents users from pulling the right handle past the left or the left pass the right,
    21432145        //so only the possible diffs need be generated
    21442146        //
    21452147        $alltherevisions = array();
    2146         if ( '' == $postid )
    2147                 $postid = $compareto;
     2148        if ( '' == $post_id )
     2149                $post_id = $compare_to;
    21482150
    2149         if ( ! current_user_can( 'read_post', $postid ) )
     2151        if ( ! current_user_can( 'read_post', $post_id ) )
    21502152                continue;
    21512153
    2152         if ( ! $revisions = wp_get_post_revisions( $postid ) )
     2154        if ( ! $revisions = wp_get_post_revisions( $post_id ) )
    21532155                return;
    21542156
    21552157
    21562158        //if we are comparing two revisions, the first 'revision' represented by the leftmost
    21572159        //slider position is the current revision, prepend a comparison to this revision
    2158         if ( $comparetwomode )
    2159                 array_unshift( $revisions, get_post( $postid ) );
     2160        if ( $compare_two_mode )
     2161                array_unshift( $revisions, get_post( $post_id ) );
    21602162
    2161         $count = 1;
     2163        $count = -1;
    21622164        foreach ( $revisions as $revision ) :
    2163         if ( 'true' != $showautosaves && wp_is_post_autosave( $revision ) )
     2165                if ( ! empty( $show_autosaves ) && wp_is_post_autosave( $revision ) )
     2166                                continue;
     2167
     2168                $revision_from_date_author = '';
     2169                $count++;
     2170                // return blank data for diffs to the left of the left handle (for right handel model)
     2171                // or to the right of the right handle (for left handel model)
     2172                if ( ( 0 != $left_handle_at && $count <= $left_handle_at ) ||
     2173                         ( 0 != $right_handle_at && $count > $right_handle_at )) {
     2174                        $alltherevisions[] = array (
     2175                                'ID' => $revision->ID,
     2176                                'revision_date_author' => '',
     2177                                'revisiondiff' => '',
     2178                                'restoreaction' => '',
     2179                                'revision_from_date_author' => ''
     2180                        );
     2181                       
    21642182                        continue;
     2183                }
     2184               
    21652185
    2166         $revision_from_date_author = '';
     2186                $left_revision = get_post( $compare_to );
     2187                $right_revision = get_post( $revision );
    21672188
     2189                $author = get_the_author_meta( 'display_name', $revision->post_author );
     2190                /* translators: revision date format, see http://php.net/date */
     2191                $datef = _x( 'j F, Y @ G:i:s', 'revision date format');
    21682192
    2169         $left_revision = get_post( $compareto );
    2170         $right_revision = get_post( $revision );
     2193                $gravatar = get_avatar( $revision->post_author, 18 );
    21712194
    2172         $author = get_the_author_meta( 'display_name', $revision->post_author );
    2173         /* translators: revision date format, see http://php.net/date */
    2174         $datef = _x( 'j F, Y @ G:i:s', 'revision date format');
     2195                $date = date_i18n( $datef, strtotime( $revision->post_modified ) );
     2196                $revision_date_author = sprintf(
     2197                        '%s %s, %s %s (%s)',
     2198                        $gravatar,
     2199                        $author,
     2200                        human_time_diff( strtotime( $revision->post_modified ), current_time( 'timestamp' ) ),
     2201                        __( ' ago ' ),
     2202                        $date
     2203                );
    21752204
    2176         $gravatar = get_avatar( $revision->post_author, 18 );
     2205                if ( $compare_two_mode ) {
     2206                        $compare_to_gravatar = get_avatar( $left_revision->post_author, 18 );
     2207                        $compare_to_author = get_the_author_meta( 'display_name', $left_revision->post_author );
     2208                        $compare_to_date = date_i18n( $datef, strtotime( $left_revision->post_modified ) );
    21772209
    2178         $date = date_i18n( $datef, strtotime( $revision->post_modified ) );
    2179         $revision_date_author = sprintf(
    2180                 '%s %s, %s %s (%s)',
    2181                 $gravatar,
    2182                 $author,
    2183                 human_time_diff( strtotime( $revision->post_modified ), current_time( 'timestamp' ) ),
    2184                 __( ' ago ' ),
    2185                 $date
    2186         );
     2210                        $revision_from_date_author = sprintf(
     2211                                '%s %s, %s %s (%s)',
     2212                                $compare_to_gravatar,
     2213                                $compare_to_author,
     2214                                human_time_diff( strtotime( $left_revision->post_modified ), current_time( 'timestamp' ) ),
     2215                                __( ' ago ' ),
     2216                                $compare_to_date
     2217                        );
     2218                }
    21872219
    2188         if ( $comparetwomode ) {
    2189                 $compareto_gravatar = get_avatar( $left_revision->post_author, 18 );
    2190                 $compareto_author = get_the_author_meta( 'display_name', $left_revision->post_author );
    2191                 $compareto_date = date_i18n( $datef, strtotime( $left_revision->post_modified ) );
    2192 
    2193                 $revision_from_date_author = sprintf(
    2194                         '%s %s, %s %s (%s)',
    2195                         $compareto_gravatar,
    2196                         $compareto_author,
    2197                         human_time_diff( strtotime( $left_revision->post_modified ), current_time( 'timestamp' ) ),
    2198                         __( ' ago ' ),
    2199                         $compareto_date
     2220                $restoreaction = wp_nonce_url(
     2221                        add_query_arg(
     2222                                array( 'revision' => $revision->ID,
     2223                                        'action' => 'restore' ),
     2224                                        '/wp-admin/revision.php'
     2225                        ),
     2226                        "restore-post_{$compare_to}|{$revision->ID}"
    22002227                );
    2201         }
    22022228
    2203         $restoreaction = wp_nonce_url(
    2204                 add_query_arg(
    2205                         array( 'revision' => $revision->ID,
    2206                                 'action' => 'restore' ),
    2207                                 '/wp-admin/revision.php'
    2208                 ),
    2209                 "restore-post_{$compareto}|{$revision->ID}"
    2210         );
     2229                //
     2230                //make sure the left revision is the most recent
     2231                //
     2232                if ( strtotime( $right_revision->post_modified_gmt ) < strtotime( $left_revision->post_modified_gmt ) ) {
     2233                        $temp = $left_revision;
     2234                        $left_revision = $right_revision;
     2235                        $right_revision = $temp;
     2236                }
    22112237
    2212         //
    2213         //make sure the left revision is the most recent
    2214         //
    2215         if ( strtotime( $right_revision->post_modified_gmt ) < strtotime( $left_revision->post_modified_gmt ) ) {
    2216                 $temp = $left_revision;
    2217                 $left_revision = $right_revision;
    2218                 $right_revision = $temp;
    2219         }
     2238                //
     2239                //compare from left to right, passed from application
     2240                //
     2241                $content='';
     2242                foreach ( array_keys( _wp_post_revision_fields() ) as $field ) {
     2243                        $left_content = apply_filters( "_wp_post_revision_field_$field", $left_revision->$field, $field, $left_revision, 'left' );
     2244                        $right_content = apply_filters( "_wp_post_revision_field_$field", $right_revision->$field, $field, $right_revision, 'right' );
    22202245
    2221         //
    2222         //compare from left to right, passed from application
    2223         //
    2224         $content='';
    2225         foreach ( array_keys( _wp_post_revision_fields() ) as $field ) {
    2226                 $left_content = apply_filters( "_wp_post_revision_field_$field", $left_revision->$field, $field, $left_revision, 'left' );
    2227                 $right_content = apply_filters( "_wp_post_revision_field_$field", $right_revision->$field, $field, $right_revision, 'right' );
     2246                        add_filter( "_wp_post_revision_field_$field", 'wp_kses_post' );
    22282247
    2229                 add_filter( "_wp_post_revision_field_$field", 'wp_kses_post' );
     2248                        $args = array();
    22302249
    2231                 $args = array();
     2250                        if ( ! empty( $show_split_view ) )
     2251                                 $args = array( 'show_split_view' => true );
    22322252
    2233                 if ( 'true' == $showsplitview )
    2234                          $args = array( 'showsplitview' => 'true' );
     2253                        $content .= wp_text_diff( $left_content, $right_content, $args );
     2254                }
    22352255
    2236                 $content .= wp_text_diff( $left_content, $right_content, $args );
    2237         }
     2256                //if we are comparing two revisions
     2257                //and we are on the matching revision
     2258                //add an error revision indicating unable to compare to self
     2259                if ( $compare_two_mode && $compare_to == $revision->ID )
     2260                        $alltherevisions[] = array (
     2261                                'ID' => $revision->ID,
     2262                                'revision_date_author' => $revision_date_author,
     2263                                'revisiondiff' => sprintf('<div id="selfcomparisonerror">%s</div>', __( 'Cannot compare revision to itself' ) ),
     2264                                'restoreaction' => urldecode( $restoreaction ),
     2265                                'revision_from_date_author' => ''
     2266                        );
    22382267
    2239         //if we are comparing two revisions
    2240         //and we are on the matching revision
    2241         //add an error revision indicating unable to compare to self
    2242         if ( $comparetwomode && $compareto == $revision->ID )
    2243                 $alltherevisions[] = array (
    2244                         'ID' => $revision->ID,
    2245                         'revision_date_author' => $revision_date_author,
    2246                         'revisiondiff' => sprintf('<div id="selfcomparisonerror">%s</div>', __( 'Cannot compare revision to itself' ) ),
    2247                         'restoreaction' => urldecode( $restoreaction ),
    2248                         'revision_from_date_author' => ''
    2249                 );
     2268                //add to the return data only if there is a difference
     2269                if ( '' != $content )
     2270                        $alltherevisions[] = array (
     2271                                'ID' => $revision->ID,
     2272                                'revision_date_author' => $revision_date_author,
     2273                                'revisiondiff' => $content,
     2274                                'restoreaction' => urldecode( $restoreaction ),
     2275                                'revision_from_date_author' => $revision_from_date_author
     2276                        );
    22502277
    2251         //add to the return data only if there is a difference
    2252         if ( '' != $content )
    2253                 $alltherevisions[] = array (
    2254                         'ID' => $revision->ID,
    2255                         'revision_date_author' => $revision_date_author,
    2256                         'revisiondiff' => $content,
    2257                         'restoreaction' => urldecode( $restoreaction ),
    2258                         'revision_from_date_author' => $revision_from_date_author
    2259                 );
    2260 
    22612278        endforeach;
    22622279
    22632280        echo json_encode( $alltherevisions );
  • wp-admin/js/revisions.js

     
    3030                        _left_diff : 0,
    3131                        _right_diff : 1,
    3232                        _autosaves : false,
    33                         _showsplitview : true,
     33                        _show_split_view : true,
    3434                        _compareoneortwo : 1,
    35                         left_model_loading : false,             //keep track of model loads
    36                         right_model_loading : false,    //disallow slider interaction, also repeat loads, while loading
     35                        _left_model_loading : false,            //keep track of model loads
     36                        _right_model_loading : false,   //disallow slider interaction, also repeat loads, while loading
    3737
    3838                        //TODO add ability to arrive on specific revision
    3939                        routes : {
     
    4545                        },
    4646
    4747                        start_left_model_loading : function() {
    48                                 this.left_model_loading = true;
     48                                this._left_model_loading = true;
    4949                                $('.revisiondiffcontainer').addClass('leftmodelloading');
    5050                        },
    5151
    5252                        stop_left_model_loading : function() {
    53                                 this.left_model_loading = false;
     53                                this._left_model_loading = false;
    5454                                $('.revisiondiffcontainer').removeClass('leftmodelloading');
    5555                        },
    5656
    5757                        start_right_model_loading : function() {
    58                                 this.right_model_loading = true;
     58                                this._right_model_loading = true;
    5959                                $('.revisiondiffcontainer').addClass('rightmodelloading');
    6060                        },
    6161
    6262                        stop_right_model_loading : function() {
    63                                 this.right_model_loading = false;
     63                                this._right_model_loading = false;
    6464                                $('.revisiondiffcontainer').removeClass('rightmodelloading');
    6565                        },
    6666
     
    7474
    7575                        reloadmodelsingle : function() {
    7676                                var self = this;
    77                                 self._revisions.url = ajaxurl + '?action=revisions-data&compareto=' + wpRevisionsSettings.post_id +
    78                                                                                         '&showautosaves=' + self.self_autosaves +
    79                                                                                         '&showsplitview=' +  REVAPP._showsplitview +
     77                                self._revisions.url = ajaxurl + '?action=revisions-data&compare_to=' + wpRevisionsSettings.post_id +
     78                                                                                        '&show_autosaves=' + self._autosaves +
     79                                                                                        '&show_split_view=' +  REVAPP._show_split_view +
    8080                                                                                        '&nonce=' + wpRevisionsSettings.nonce;
    8181                                self.start_right_model_loading();
    8282                                this._revisions.fetch({ //reload revision data
     
    100100                                });
    101101                        },
    102102
    103                         reloadleftright : function() {
     103                        reloadleft : function() {
    104104                                var self = this;
    105105                                self.start_left_model_loading();
    106                                 self.start_right_model_loading();
    107 
    108106                                self._left_handle_revisions = new wp.revisions.Collection();
    109                                 self._right_handle_revisions = new wp.revisions.Collection();
    110 
    111                                 if ( 0 == self._left_diff ) {
    112                                         self._right_handle_revisions.url =
    113                                                 ajaxurl +
    114                                                 '?action=revisions-data&compareto=' + wpRevisionsSettings.post_id +
    115                                                 '&post_id=' + wpRevisionsSettings.post_id +
    116                                                 '&showautosaves=' + self._autosaves +
    117                                                 '&showsplitview=' +  self._showsplitview +
    118                                                 '&nonce=' + wpRevisionsSettings.nonce;
    119                                 } else {
    120                                         self._right_handle_revisions.url =
    121                                                 ajaxurl +
    122                                                 '?action=revisions-data&compareto=' + self._revisions.at( self._left_diff - 1 ).get( 'ID' ) +
    123                                                 '&post_id=' + wpRevisionsSettings.post_id +
    124                                                 '&showautosaves=' + self._autosaves +
    125                                                 '&showsplitview=' +  self._showsplitview +
    126                                                 '&nonce=' + wpRevisionsSettings.nonce;
    127                                 }
    128 
    129107                                self._left_handle_revisions.url =
    130108                                        ajaxurl +
    131                                         '?action=revisions-data&compareto=' + self._revisions.at( self._right_diff - 1 ).get( 'ID' ) +
     109                                        '?action=revisions-data&compare_to=' + self._revisions.at( self._right_diff - 1 ).get( 'ID' ) +
    132110                                        '&post_id=' + wpRevisionsSettings.post_id +
    133                                         '&showautosaves=' + self._autosaves +
    134                                         '&showsplitview=' +  self._showsplitview +
    135                                         '&nonce=' + wpRevisionsSettings.nonce;
     111                                        '&show_autosaves=' + self._autosaves +
     112                                        '&show_split_view=' +  self._show_split_view +
     113                                        '&nonce=' + wpRevisionsSettings.nonce +
     114                                        '&right_handle_at='  + (self._right_diff - 1);
    136115
    137116                                self._left_handle_revisions.fetch({
    138117
    139                                         xhr: function() {
    140                                                 var xhr = $.ajaxSettings.xhr();
    141                                                 xhr.onprogress = self.handleProgress;
    142                                                 return xhr;
    143                                         },
    144 
    145                                         handleProgress: function(evt){
    146                                                 var percentComplete = 0;
    147                                                 if (evt.lengthComputable) {
    148                                                         percentComplete = evt.loaded / evt.total;
    149                                                         window.console && console.log( Math.round( percentComplete * 100) + "%" );
    150                                                 }
    151                                         },
    152 
    153118                                        success : function(){
    154119                                                self.stop_left_model_loading();
    155120                                        },
     
    159124                                                self.stop_left_model_loading();
    160125                                        }
    161126                                });
     127                        },
    162128
     129                        reloadright : function() {
     130                                var self = this;
     131                                self.start_right_model_loading();
     132                                self._right_handle_revisions = new wp.revisions.Collection();
     133                                if ( 0 == self._left_diff ) {
     134                                        self._right_handle_revisions.url =
     135                                                ajaxurl +
     136                                                '?action=revisions-data&compare_to=' + wpRevisionsSettings.post_id +
     137                                                '&post_id=' + wpRevisionsSettings.post_id +
     138                                                '&show_autosaves=' + self._autosaves +
     139                                                '&show_split_view=' +  self._show_split_view +
     140                                                '&nonce=' + wpRevisionsSettings.nonce;
     141                                } else {
     142                                        self._right_handle_revisions.url =
     143                                                ajaxurl +
     144                                                '?action=revisions-data&compare_to=' + self._revisions.at( self._left_diff - 1 ).get( 'ID' ) +
     145                                                '&post_id=' + wpRevisionsSettings.post_id +
     146                                                '&show_autosaves=' + self._autosaves +
     147                                                '&show_split_view=' +  self._show_split_view +
     148                                                '&nonce=' + wpRevisionsSettings.nonce +
     149                                                '&left_handle_at=' + (self._left_diff ) ;
     150                                }
     151
    163152                                self._right_handle_revisions.fetch({
    164153                                       
    165154                                        success : function(){
    166155                                                self.stop_right_model_loading();
    167156                                        },
    168157
    169                                         error : function () {
    170                                                 window.console && console.log( 'Error loading revision data' );
     158                                        error : function ( response ) {
     159                                                window.console && console.log( 'Error loading revision data - ' + response.toSource() );
    171160                                                self.stop_right_model_loading();
    172161                                        }
    173162                                });
     163
    174164                        },
    175165
     166                        reloadleftright : function() {
     167                                this.reloadleft();
     168                                this.reloadright();
     169                        },
     170
    176171                        /*
    177172                         * initialize the revision application
    178173                         */
     
    195190
    196191                        revisionDiffSetup : function() {
    197192                                var self = this, slider;
    198 
    199193                                this._revisionView = new wp.revisions.views.View({
    200194                                        model : this._revisions
    201195                                });
     
    206200                                });
    207201                                this._revisionsInteractions.render();
    208202
     203                                /*
     204                                //Options hidden for now, moving to screen options
    209205                                this._revisionsOptions = new wp.revisions.views.Options({
    210206                                        model : this._revisions
    211207                                });
    212208                                this._revisionsOptions.render();
     209                                */
    213210
    214211                        }
    215212                })
     
    217214
    218215        wp.revisions.Collection = Backbone.Collection.extend({
    219216                model : wp.revisions.Model,
    220                 url : ajaxurl + '?action=revisions-data&compareto=' + wpRevisionsSettings.post_id + '&showautosaves=false&showsplitview=true&nonce=' + wpRevisionsSettings.nonce
     217                url : ajaxurl + '?action=revisions-data&compare_to=' + wpRevisionsSettings.post_id +
     218                        '&show_autosaves=false&show_split_view=true&nonce=' + wpRevisionsSettings.nonce
    221219        });
    222220
    223221        _.extend(wp.revisions.views, {
     
    260258                                                        ) );
    261259                                                }
    262260                                        }
    263                                 } else { //end compare two revisions mode, eg only one slider handel
     261                                } else { //end compare two revisions mode, eg only one slider handle
    264262                                        this.comparetwochecked = '';
    265263                                        if ( this.model.at( REVAPP._right_diff - 1 ) ) {
    266264                                                addhtml = this.template( _.extend(
    267                                                         this.model.at( REVAPP._right_diff-1 ).toJSON(),
    268                                                         { comparetwochecked : this.comparetwochecked } //keep the checkmark checked
     265                                                        this.model.at( REVAPP._right_diff - 1 ).toJSON(),
     266                                                        { comparetwochecked : this.comparetwochecked } //keep the checkmark unchecked
    269267                                                ) );
    270268                                        }
    271269                                }
     
    345343                                var self = this;
    346344
    347345                                if ( $( 'input#showsplitview' ).is( ':checked' ) ) {
    348                                         REVAPP._showsplitview = 'true';
     346                                        REVAPP._show_split_view = 'true';
    349347                                        $('.revisiondiffcontainer').addClass('diffsplit');
    350348                                } else {
    351                                         REVAPP._showsplitview = '';
     349                                        REVAPP._show_split_view = '';
    352350                                        $('.revisiondiffcontainer').removeClass('diffsplit');
    353351                                }
    354352
     
    364362                        tagName : 'revisionvinteract',
    365363                        className : 'revisionvinteract-container',
    366364                        template : wp.template('revisionvinteract'),
     365                        _restoreword : '',
    367366
    368367                        initialize : function() {
     368                                this._restoreword = $( 'input#restore' ).attr( 'value' );
    369369                        },
    370370
     371                        reset_restore_button : function() {
     372                                $( 'input#restore' ).attr( 'value', this._restoreword + ' ' + REVAPP._revisions.at( REVAPP._right_diff - 1 ).get( 'ID' ) );
     373                        },
     374
    371375                        render : function() {
    372376                                var self = this;
    373377
     
    376380                                $( '#diff_max, #diff_maxof' ).html( this.model.length );
    377381                                $( '#diff_count' ).html( REVAPP._right_diff );
    378382                                $( '#diff_left_count_inner' ).html( 0 == REVAPP._left_diff ? '' : 'revision' + REVAPP._left_diff );
     383                                self.reset_restore_button();
    379384
    380385                                var modelcount = REVAPP._revisions.length;
    381386
    382                                 slider = $("#slider");
     387                                slider = $( "#slider" );
    383388                                if ( 1 == REVAPP._compareoneortwo ) {
    384389                                        //set up the slider with a single handle
    385390                                        slider.slider({
     
    390395
    391396                                                //slide interactions for one handles slider
    392397                                                slide : function( event, ui ) {
    393                                                         if ( REVAPP.right_model_loading ) //left model stoll loading, prevent sliding left handle
     398                                                        if ( REVAPP._right_model_loading ) //left model stoll loading, prevent sliding left handle
    394399                                                                                return false;
    395400
    396401                                                        REVAPP._right_diff =( ui.value+1 );
    397402                                                        $( '#diff_count' ).html( REVAPP._right_diff );
    398403                                                        REVAPP._revisionView.render();
     404                                                        self.reset_restore_button();
    399405                                                }
    400406                                        });
    401407                                        $( '.revisiondiffcontainer' ).removeClass( 'comparetwo' );
     
    414420
    415421                                                        switch ( index ) {
    416422                                                                case 1: //left handle drag
    417                                                                         if ( REVAPP.left_model_loading ) //left model stoll loading, prevent sliding left handle
     423                                                                        if ( REVAPP._left_model_loading ) //left model stoll loading, prevent sliding left handle
    418424                                                                                return false;
    419425
    420426                                                                        if ( REVAPP._revisionView.model !== REVAPP._left_handle_revisions &&
     
    422428                                                                                REVAPP._revisionView.model = REVAPP._left_handle_revisions;
    423429
    424430                                                                        REVAPP._revisionView.draggingleft = true;
     431                                                                        REVAPP._left_diff_start = ui.values[ 0 ];
    425432                                                                        break;
    426433
    427434                                                                case 2: //right
    428                                                                         if ( REVAPP.right_model_loading ) //right model stoll loading, prevent sliding right handle
     435                                                                        if ( REVAPP._right_model_loading ) //right model stoll loading, prevent sliding right handle
    429436                                                                                return false;
    430437
    431438                                                                        //one extra spot at left end when comparing two
     
    434441                                                                                REVAPP._revisionView.model = REVAPP._right_handle_revisions;
    435442
    436443                                                                        REVAPP._revisionView.draggingleft = false;
    437                                                                         REVAPP._right_diff = ui.values[1] - 1 ;
     444                                                                        REVAPP._right_diff_start = ui.values[ 1 ];
    438445                                                                        break;
    439446                                                        }
    440447                                                },
    441448
    442449                                                //when sliding in two handled mode change appropriate value
    443450                                                slide : function( event, ui ) {
    444                                                         if ( ui.values[0] == ui.values[1] ) //prevent compare to self
     451                                                        if ( ui.values[ 0 ] == ui.values[ 1 ] ) //prevent compare to self
    445452                                                                return false;
    446453
    447454                                                        var index = $( ui.handle ).index(); //0 (left) or 1 (right)
    448455
    449456                                                        switch ( index ) {
    450457                                                                case 1: //left
    451                                                                         if ( REVAPP.left_model_loading ) //left model stoll loading, prevent sliding left handle
     458                                                                        if ( REVAPP._left_model_loading ) //left model still loading, prevent sliding left handle
    452459                                                                                return false;
    453460
    454                                                                         REVAPP._left_diff = ui.values[0] - 1; //one extra spot at left end when comparing two
     461                                                                        REVAPP._left_diff = ui.values[ 0 ] - 1; //one extra spot at left end when comparing two
    455462                                                                        break;
    456463
    457464                                                                case 2: //right
    458                                                                         if ( REVAPP.right_model_loading ) //right model stoll loading, prevent sliding right handle
     465                                                                        if ( REVAPP._right_model_loading ) //right model still loading, prevent sliding right handle
    459466                                                                                return false;
    460467
    461                                                                         REVAPP._right_diff = ui.values[1] - 1 ;
     468                                                                        REVAPP._right_diff = ui.values[ 1 ] - 1 ;
    462469                                                                        break;
    463470                                                        }
    464471
     
    473480                                                        }
    474481
    475482                                                        REVAPP._revisionView.render(); //render the diff view
     483                                                        self.reset_restore_button();
    476484                                                },
    477485
    478486                                                //when the user stops sliding  in 2 handle mode, recalculate diffs
     
    480488                                                        if ( 2 == REVAPP._compareoneortwo ) {
    481489                                                                //calculate and generate a diff for comparing to the left handle
    482490                                                                //and the right handle, swap out when dragging
    483                                                                 if ( ! (REVAPP.left_model_loading && REVAPP.right_model.loading ) ) {
    484                                                                         REVAPP.reloadleftright();
     491
     492                                                                var index = $( ui.handle ).index(); //0 (left) or 1 (right)
     493
     494                                                                switch ( index ) {
     495                                                                        case 1: //left
     496                                                                                //left handle dragged & changed, reload right handle model
     497                                                                                if ( ! ( REVAPP._left_diff_start == ui.values[ 0 ] || REVAPP._left_model_loading ) )
     498                                                                                        REVAPP.reloadright();
     499                                                                               
     500                                                                                break;
     501
     502                                                                        case 2: //right
     503                                                                                //right handle dragged & changed, reload left handle model if changed
     504                                                                                if ( ! ( REVAPP._right_diff_start == ui.values[ 1 ] || REVAPP._right_model_loading ) )
     505                                                                                        REVAPP.reloadleft();
     506                                                                               
     507                                                                                break;
    485508                                                                }
    486509                                                        }
    487510                                                }
     
    507530
    508531                                $( '#diff_count' ).html( REVAPP._right_diff );
    509532                                $( '#slider' ).slider( 'value', REVAPP._right_diff - 1 ).trigger( 'slide' );
     533                                this.reset_restore_button();
    510534                        },
    511535
    512536                        //go the the previous revision
     
    518542
    519543                                $( '#diff_count' ).html( REVAPP._right_diff );
    520544                                $( '#slider' ).slider( 'value', REVAPP._right_diff - 1 ).trigger( 'slide' );
     545                                this.reset_restore_button();
    521546                        }
    522547                })
    523548        });
  • wp-admin/revision.php

     
    1010require_once('./admin.php');
    1111wp_reset_vars( array( 'revision', 'action' ) );
    1212
    13 $revision_id = absint($revision);
     13$revision_id = absint( $revision );
    1414$redirect = 'edit.php';
    1515
    1616switch ( $action ) :
    1717case 'restore' :
    18         if ( !$revision = wp_get_post_revision( $revision_id ) )
     18        if ( ! $revision = wp_get_post_revision( $revision_id ) )
    1919                break;
    20         if ( !current_user_can( 'edit_post', $revision->post_parent ) )
     20        if ( ! current_user_can( 'edit_post', $revision->post_parent ) )
    2121                break;
    22         if ( !$post = get_post( $revision->post_parent ) )
     22        if ( ! $post = get_post( $revision->post_parent ) )
    2323                break;
    2424
    2525        // Revisions disabled and we're not looking at an autosave
    26         if ( ( ! WP_POST_REVISIONS || !post_type_supports($post->post_type, 'revisions') ) && !wp_is_post_autosave( $revision ) ) {
     26        if ( ( ! WP_POST_REVISIONS || ! post_type_supports( $post->post_type, 'revisions' ) ) && ! wp_is_post_autosave( $revision ) ) {
    2727                $redirect = 'edit.php?post_type=' . $post->post_type;
    2828                break;
    2929        }
    3030        check_admin_referer( "restore-post_{$post->ID}|{$revision->ID}" );
    3131
     32        //store revision event in post meta
     33        $restore_details = array(
     34                'restored_revision_id' => $revision->ID,
     35                'restored_by_user' => get_current_user_id(),
     36                'restored_time' => time()
     37        );
     38        wp_update_post_meta( $post->ID, '_post_restored_from', $restore_details );
     39
    3240        wp_restore_post_revision( $revision->ID );
    3341        $redirect = add_query_arg( array( 'message' => 5, 'revision' => $revision->ID ), get_edit_post_link( $post->ID, 'url' ) );
    3442        break;
    3543case 'view' :
    3644case 'edit' :
    3745default :
    38         if ( !$revision = wp_get_post_revision( $revision_id ) )
     46        if ( ! $revision = wp_get_post_revision( $revision_id ) )
    3947                break;
    40         if ( !$post = get_post( $revision->post_parent ) )
     48        if ( ! $post = get_post( $revision->post_parent ) )
    4149                break;
    4250
    43         if ( !current_user_can( 'read_post', $revision->ID ) || !current_user_can( 'read_post', $post->ID ) )
     51        if ( ! current_user_can( 'read_post', $revision->ID ) || ! current_user_can( 'read_post', $post->ID ) )
    4452                break;
    4553
    4654        // Revisions disabled and we're not looking at an autosave
     
    5967endswitch;
    6068
    6169// Empty post_type means either malformed object found, or no valid parent was found.
    62 if ( !$redirect && empty($post->post_type) )
     70if ( ! $redirect && empty( $post->post_type ) )
    6371        $redirect = 'edit.php';
    6472
    65 if ( !empty($redirect) ) {
     73if ( ! empty( $redirect ) ) {
    6674        wp_redirect( $redirect );
    6775        exit;
    6876}
    6977
    7078// This is so that the correct "Edit" menu item is selected.
    71 if ( !empty($post->post_type) && 'post' != $post->post_type )
     79if ( ! empty( $post->post_type ) && 'post' != $post->post_type )
    7280        $parent_file = $submenu_file = 'edit.php?post_type=' . $post->post_type;
    7381else
    7482        $parent_file = $submenu_file = 'edit.php';
     
    8391<script type="text/javascript">
    8492var wpRevisionsSettings = <?php echo json_encode( array( 'post_id' => $post->ID, 'nonce' => wp_create_nonce( 'revisions-ajax-nonce' ) ) ); ?>;
    8593</script>
     94<?php
     95        $comparetworevisionslink = get_edit_post_link( $revision->ID );
     96?>
    8697
    8798<div id="backbonerevisionsoptions"></div>
    88 
    89 <br class="clear"/>
    9099<div class="wrap">
    91100        <div class="icon32 icon32-posts-post" id="icon-edit"><br></div>
    92101        <div class="revisiondiffcontainer diffsplit currentversion rightmodelloading">
     
    94103                <h2 class="long-header"><?php echo $h2; ?></h2>
    95104                <div id="backbonerevisionsinteract"></div>
    96105                <div id="backbonerevisionsdiff"></div>
    97 <hr />
    98 <?php
    99         $comparetworevisionslink = get_edit_post_link( $revision->ID );
    100 ?>
     106                <hr />
    101107        </div>
    102108</div>
    103109
     
    107113                <div id="difftitlefrom">{{{ data.revision_from_date_author }}} <?php _e( '- compared to -' ); ?></div>
    108114                <div id="difftitle">{{{ data.revision_date_author }}}</div>
    109115                <div id="diffcancel"><input class="button" onClick="document.location='<?php echo get_edit_post_link( $post->ID ); ?>'" type="submit" id="cancel" value="<?php esc_attr_e( 'Cancel' )?>" /></div>
    110                 <div id="diffrestore"><input class="button button-primary" onClick="document.location='{{{ data.restoreaction }}}'" type="submit" id="restore" value="<?php esc_attr_e( 'Restore' )?>" /></div>
     116                <div id="diffrestore"><input class="button button-primary" onClick="document.location='{{{ data.restoreaction }}}'" type="submit" id="restore" value="<?php esc_attr_e( 'Restore revision ID' )?>" /></div>
    111117                <div id="comparetworevisions"><input type="checkbox" id="comparetwo" value="comparetwo" {{{ data.comparetwochecked }}} name="comparetwo"/> <?php esc_attr_e( 'Compare two revisions' )?></div>
    112118        </div>
    113119        <div id="removedandadded">
     
    119125
    120126<script id="tmpl-revisionvinteract" type="text/html">
    121127        <div id="diffheader">
    122 <div id="diffprevious"><input class="button" type="submit" id="previous" value="Previous" /></div>
    123                         <div id="diffnext"><input class="button" type="submit" id="next" value="Next" /></div>
     128<div id="diffprevious"><input class="button" type="submit" id="previous" value="<?php esc_attr_e( 'Previous' ); ?>" /></div>
     129                        <div id="diffnext"><input class="button" type="submit" id="next" value="<?php esc_attr_e( 'Next' ); ?>" /></div>
    124130                        <div id="diffslider">
    125131        <div id="revisioncount">
    126132                                        <?php _e( 'Comparing' ); ?>