Make WordPress Core

Ticket #23497: 23497.34.diff

File 23497.34.diff, 63.8 KB (added by adamsilverstein, 12 years ago)

bug hunting

  • wp-includes/default-filters.php

     
    250250add_action( 'plugins_loaded',             'wp_maybe_load_widgets',                    0    );
    251251add_action( 'plugins_loaded',             'wp_maybe_load_embeds',                     0    );
    252252add_action( 'shutdown',                   'wp_ob_end_flush_all',                      1    );
    253 add_action( 'pre_post_update',            'wp_save_post_revision',                   10, 2 );
     253add_action( 'pre_post_update',            'wp_save_post_revision',                   10, 1 );
     254add_action( 'post_updated',               'wp_save_post_revision',                   10, 1 );
    254255add_action( 'publish_post',               '_publish_post_hook',                       5, 1 );
    255256add_action( 'transition_post_status',     '_transition_post_status',                  5, 3 );
    256257add_action( 'transition_post_status',     '_update_term_count_on_transition_post_status', 10, 3 );
  • wp-includes/post-template.php

     
    13101310        /* translators: revision date format, see http://php.net/date */
    13111311        $datef = _x( 'j F, Y @ G:i:s', 'revision date format');
    13121312
    1313         $gravatar = get_avatar( $revision->post_author, 18 );
     1313        $gravatar = get_avatar( $revision->post_author, 24 );
    13141314
    13151315        $date = date_i18n( $datef, strtotime( $revision->post_modified ) );
    13161316        if ( $link && current_user_can( 'edit_post', $revision->ID ) && $link = get_edit_post_link( $revision->ID ) )
     
    13881388        }
    13891389
    13901390        /* translators: post revision: 1: when, 2: author name */
    1391         $titlef = _x( '%1$s by %2$s', 'post revision' );
     1391        $titlef = _x( '%1$s', 'post revision' );
    13921392
    13931393        if ( $parent )
    13941394                array_unshift( $revisions, $post );
    13951395
     1396        // since 3.6 revisions include a copy of the current post data as a revision
     1397        // the collowing removes this current revision if present from the list of
     1398        // revisions returned by wp_list_post_revisions, remove these to include the
     1399        // crrent post revision in the list of revisions
     1400        if ( wp_first_revision_matches_current_version( $post_id ) )
     1401                array_pop( $revisions );
     1402
    13961403        $rows = $right_checked = '';
    13971404        $class = false;
    13981405        $can_edit_post = current_user_can( 'edit_post', $post->ID );
     
    14031410                        continue;
    14041411
    14051412                $date = wp_post_revision_title( $revision );
    1406                 $name = get_the_author_meta( 'display_name', $revision->post_author );
    14071413
    1408                 if ( 'form-table' == $format ) {
    1409                         if ( $left )
    1410                                 $left_checked = $left == $revision->ID ? ' checked="checked"' : '';
    1411                         else
    1412                                 $left_checked = $right_checked ? ' checked="checked"' : ''; // [sic] (the next one)
    1413                         $right_checked = $right == $revision->ID ? ' checked="checked"' : '';
     1414                $title = sprintf( $titlef, $date );
     1415                $rows .= "\t<li>$title</li>\n";
    14141416
    1415                         $class = $class ? '' : " class='alternate'";
    1416 
    1417                         if ( $post->ID != $revision->ID && $can_edit_post )
    1418                                 $actions = '<a href="' . wp_nonce_url( add_query_arg( array( 'revision' => $revision->ID, 'action' => 'restore' ) ), "restore-post_$post->ID|$revision->ID" ) . '">' . __( 'Restore' ) . '</a>';
    1419                         else
    1420                                 $actions = '';
    1421 
    1422                         $rows .= "<tr$class>\n";
    1423                         $rows .= "\t<th style='white-space: nowrap' scope='row'><input type='radio' name='left' value='$revision->ID'$left_checked /></th>\n";
    1424                         $rows .= "\t<th style='white-space: nowrap' scope='row'><input type='radio' name='right' value='$revision->ID'$right_checked /></th>\n";
    1425                         $rows .= "\t<td>$date</td>\n";
    1426                         $rows .= "\t<td>$name</td>\n";
    1427                         $rows .= "\t<td class='action-links'>$actions</td>\n";
    1428                         $rows .= "</tr>\n";
    1429                 } else {
    1430                         $title = sprintf( $titlef, $date, $name );
    1431                         $rows .= "\t<li>$title</li>\n";
    1432                 }
    14331417        }
    14341418
    14351419        if ( 'form-table' == $format ) : ?>
     
    14791463                // if the post was previously restored from a revision
    14801464                // show the restore event details
    14811465                //
    1482                 if ( $restored_from_meta = get_post_meta( $post->ID, '_post_restored_from', true ) ) { 
    1483                         $author = get_the_author_meta( 'display_name', $restored_from_meta[ 'restored_by_user' ] ); 
    1484                         /* translators: revision date format, see http://php.net/date */ 
    1485                         $datef = _x( 'j F, Y @ G:i:s', 'revision date format'); 
    1486                         $date = date_i18n( $datef, strtotime( $restored_from_meta[ 'restored_time' ] ) ); 
    1487                         $timesince = human_time_diff( $restored_from_meta[ 'restored_time' ], current_time( 'timestamp' ) ) . __( ' ago ' ); 
    1488                         ?> 
     1466                if ( $restored_from_meta = get_post_meta( $post->ID, '_post_restored_from', true ) ) {
     1467                        $author = get_the_author_meta( 'display_name', $restored_from_meta[ 'restored_by_user' ] );
     1468                        /* translators: revision date format, see http://php.net/date */
     1469                        $datef = _x( 'j F, Y @ G:i:s', 'revision date format');
     1470                        $date = date_i18n( $datef, strtotime( $restored_from_meta[ 'restored_time' ] ) );
     1471                        $timesince = human_time_diff( $restored_from_meta[ 'restored_time' ], current_time( 'timestamp' ) ) . __( ' ago ' );
     1472                        ?>
    14891473                        <hr />
    1490                         <div id="revisions-meta-restored"> 
    1491                                 <?php 
    1492                                 printf( 'Previously restored from Revision ID %d, %s by %s (%s)', 
    1493                                 $restored_from_meta[ 'restored_revision_id'], 
    1494                                 $timesince, 
    1495                                 $author, 
    1496                                 $date ); 
    1497                                 ?> 
    1498                         </div> 
    1499                         <?php 
     1474                        <div id="revisions-meta-restored">
     1475                                <?php
     1476                                printf( 'Previously restored from Revision ID %d, %s by %s (%s)',
     1477                                $restored_from_meta[ 'restored_revision_id'],
     1478                                $timesince,
     1479                                $author,
     1480                                $date );
     1481                                ?>
     1482                        </div>
     1483                        <?php
    15001484                echo "</ul>";
    1501                 } 
     1485                }
    15021486
    15031487        endif;
    15041488
  • wp-includes/revision.php

     
    6262/**
    6363 * Saves an already existing post as a post revision.
    6464 *
    65  * Typically used immediately prior to post updates.
     65 * Typically used immediately prior and after post updates.
     66 * Prior to update checks for old revision data (latest revision != current post before update) and adds a copy of the current post as a revision if missing
     67 * After update adds a copy of the current post as a revision, so latest revision always matches current post
    6668 *
    6769 * @package WordPress
    6870 * @subpackage Post_Revisions
    6971 * @since 2.6.0
    7072 *
    7173 * @uses _wp_put_post_revision()
     74 * @uses wp_first_revision_matches_current_version()
    7275 *
    7376 * @param int $post_id The ID of the post to save as a revision.
    7477 * @return mixed Null or 0 if error, new revision ID, if success.
    7578 */
    76 function wp_save_post_revision( $post_id, $new_data = null ) {
    77         // We do autosaves manually with wp_create_post_autosave()
     79function wp_save_post_revision( $post_id ) {
     80        //check to see if the post's first revision already matches the post data
     81        //should be true before post update, _except_ for old data which
     82        //doesn't include a copy of the current post data in revisions
     83        if ( wp_first_revision_matches_current_version( $post_id ) )
     84                return;
     85
    7886        if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE )
    7987                return;
    8088
     
    8290        if ( ! WP_POST_REVISIONS )
    8391                return;
    8492
    85         if ( !$post = get_post( $post_id, ARRAY_A ) )
     93        if ( ! $post = get_post( $post_id, ARRAY_A ) )
    8694                return;
    8795
    8896        if ( 'auto-draft' == $post['post_status'] )
    8997                return;
    9098
    91         if ( !post_type_supports($post['post_type'], 'revisions') )
     99        if ( ! post_type_supports( $post['post_type'], 'revisions' ) )
    92100                return;
    93101
    94         // if new data is supplied, check that it is different from last saved revision, unless a plugin tells us to always save regardless
    95         if ( apply_filters( 'wp_save_post_revision_check_for_changes', true, $post, $new_data ) && is_array( $new_data ) ) {
    96                 $post_has_changed = false;
    97                 foreach ( array_keys( _wp_post_revision_fields() ) as $field ) {
    98                         if ( normalize_whitespace( $new_data[ $field ] ) != normalize_whitespace( $post[ $field ] ) ) {
    99                                 $post_has_changed = true;
    100                                 break;
     102        // compare the proposed update with the last stored revision, verify
     103        // different, unless a plugin tells us to always save regardless
     104        if ( $revisions = wp_get_post_revisions( $post_id ) ) { // grab the last revision
     105                $last_revision = array_shift( $revisions );
     106
     107                if ( $last_revision_array = get_post( $last_revision->ID, ARRAY_A ) ) { //if no previous revisions, save one for sure
     108
     109                        if ( apply_filters( 'wp_save_post_revision_check_for_changes', true, $last_revision_array, $post ) && is_array( $post ) ) {
     110                                $post_has_changed = false;
     111
     112                                foreach ( array_keys( _wp_post_revision_fields() ) as $field ) {
     113
     114                                        if ( normalize_whitespace( $post[ $field ] ) != normalize_whitespace( $last_revision_array[ $field ] ) ) {
     115                                                $post_has_changed = true;
     116                                                break;
     117
     118                                        }
     119                                }
     120
     121                                //don't save revision if post unchanged
     122                                if( ! $post_has_changed )
     123                                        return;
    101124                        }
    102125                }
    103                 //don't save revision if post unchanged
    104                 if( ! $post_has_changed )
    105                         return;
    106126        }
    107127
    108128        $return = _wp_put_post_revision( $post );
    109129
    110130        // WP_POST_REVISIONS = true (default), -1
    111         if ( !is_numeric( WP_POST_REVISIONS ) || WP_POST_REVISIONS < 0 )
     131        if ( ! is_numeric( WP_POST_REVISIONS ) || WP_POST_REVISIONS < 0 )
    112132                return $return;
    113133
    114134        // all revisions and (possibly) one autosave
    115135        $revisions = wp_get_post_revisions( $post_id, array( 'order' => 'ASC' ) );
    116136
    117137        // WP_POST_REVISIONS = (int) (# of autosaves to save)
    118         $delete = count($revisions) - WP_POST_REVISIONS;
     138        $delete = count( $revisions ) - WP_POST_REVISIONS;
    119139
    120140        if ( $delete < 1 )
    121141                return $return;
     
    123143        $revisions = array_slice( $revisions, 0, $delete );
    124144
    125145        for ( $i = 0; isset($revisions[$i]); $i++ ) {
    126                 if ( false !== strpos( $revisions[$i]->post_name, 'autosave' ) )
     146                if ( false !== strpos( $revisions[ $i ]->post_name, 'autosave' ) )
    127147                        continue;
    128                 wp_delete_post_revision( $revisions[$i]->ID );
     148                wp_delete_post_revision( $revisions[ $i ]->ID );
    129149        }
    130150
    131151        return $return;
     
    329349        if ( $post_id )
    330350                do_action( 'wp_restore_post_revision', $post_id, $revision['ID'] );
    331351
     352        //store revision event in post meta
     353        $restore_details = array(
     354                'restored_revision_id' => $revision_id,
     355                'restored_by_user' => get_current_user_id(),
     356                'restored_time' => time()
     357        );
     358        update_post_meta( $post_id, '_post_restored_from', $restore_details );
     359        update_post_meta( $post_id, '_edit_last', get_current_user_id() );
     360
    332361        return $post_id;
    333362}
    334363
     
    418447                add_filter('the_preview', '_set_preview');
    419448        }
    420449}
     450
     451/**
     452 * Determines if the specified post's most recent revision matches the post (by checking post_modified).
     453 *
     454 * @package WordPress
     455 * @subpackage Post_Revisions
     456 * @since 3.6.0
     457 *
     458 * @param int|object $post Post ID or post object.
     459 * @return bool false if not a match, otherwise true.
     460 */
     461function wp_first_revision_matches_current_version( $post ) {
     462
     463        if ( ! $post = get_post( $post ) )
     464                return false;
     465
     466        if ( ! $revisions = wp_get_post_revisions( $post->ID ) )
     467                return false;
     468
     469        $last_revision = array_shift( $revisions );
     470
     471        if ( ! ($last_revision->post_modified == $post->post_modified ) )
     472                return false;
     473
     474        return true;
     475}
  • wp-includes/pluggable.php

     
    17441744        return $r;
    17451745}
    17461746endif;
     1747
     1748if ( !function_exists( 'wp_text_diff_with_count' ) ) :
     1749/**
     1750 * Displays a human readable HTML representation of the difference between two strings.
     1751 * similar to wp_text_diff, but tracks and returns could of lines added and removed
     1752 *
     1753 * @since 3.6
     1754 * @see wp_parse_args() Used to change defaults to user defined settings.
     1755 * @uses Text_Diff
     1756 * @uses WP_Text_Diff_Renderer_Table
     1757 *
     1758 * @param string $left_string "old" (left) version of string
     1759 * @param string $right_string "new" (right) version of string
     1760 * @param string|array $args Optional. Change 'title', 'title_left', and 'title_right' defaults.
     1761 * @return array contains html, linesadded & linesdeletd, empty string if strings are equivalent.
     1762 */
     1763function wp_text_diff_with_count( $left_string, $right_string, $args = null ) {
     1764        $defaults = array( 'title' => '', 'title_left' => '', 'title_right' => '' );
     1765        $args = wp_parse_args( $args, $defaults );
     1766
     1767        if ( !class_exists( 'WP_Text_Diff_Renderer_Table' ) )
     1768                        require( ABSPATH . WPINC . '/wp-diff.php' );
     1769
     1770        $left_string  = normalize_whitespace( $left_string );
     1771        $right_string = normalize_whitespace( $right_string );
     1772
     1773        $left_lines  = explode( "\n", $left_string );
     1774        $right_lines = explode( "\n", $right_string) ;
     1775
     1776        $text_diff = new Text_Diff($left_lines, $right_lines  );
     1777        $linesadded = $text_diff->countAddedLines();
     1778        $linesdeleted = $text_diff->countDeletedLines();
     1779
     1780        $renderer  = new WP_Text_Diff_Renderer_Table();
     1781        $diff = $renderer->render( $text_diff );
     1782
     1783        if ( !$diff )
     1784                        return '';
     1785
     1786                $r  = "<table class='diff'>\n";
     1787
     1788        if ( ! empty( $args[ 'show_split_view' ] ) ) {
     1789                $r .= "<col class='content diffsplit left' /><col class='content diffsplit middle' /><col class='content diffsplit right' />";
     1790        } else {
     1791                $r .= "<col class='content' />";
     1792        }
     1793
     1794        if ( $args['title'] || $args['title_left'] || $args['title_right'] )
     1795                $r .= "<thead>";
     1796        if ( $args['title'] )
     1797                $r .= "<tr class='diff-title'><th colspan='4'>$args[title]</th></tr>\n";
     1798        if ( $args['title_left'] || $args['title_right'] ) {
     1799                $r .= "<tr class='diff-sub-title'>\n";
     1800                $r .= "\t<td></td><th>$args[title_left]</th>\n";
     1801                $r .= "\t<td></td><th>$args[title_right]</th>\n";
     1802                $r .= "</tr>\n";
     1803        }
     1804        if ( $args['title'] || $args['title_left'] || $args['title_right'] )
     1805                $r .= "</thead>\n";
     1806
     1807        $r .= "<tbody>\n$diff\n</tbody>\n";
     1808        $r .= "</table>";
     1809
     1810        return array( 'html' => $r, 'linesadded' => $linesadded, 'linesdeleted' => $linesdeleted );
     1811        }
     1812        endif;
  • wp-includes/script-loader.php

     
    273273        $scripts->add( 'template', "/wp-includes/js/template$suffix.js", array('underscore'), '1.4.4', 1 );
    274274        $scripts->add( 'backbone', '/wp-includes/js/backbone.min.js', array('underscore','jquery', 'template'), '0.9.10', 1 );
    275275
    276         $scripts->add( 'revisions', "/wp-admin/js/revisions$suffix.js", array( 'backbone', 'jquery-ui-slider' ), false, 1 );
     276        $scripts->add( 'revisions', "/wp-admin/js/revisions$suffix.js", array( 'backbone', 'jquery-ui-slider', 'jquery-ui-tooltip' ), false, 1 );
    277277
    278278        $scripts->add( 'imgareaselect', "/wp-includes/js/imgareaselect/jquery.imgareaselect$suffix.js", array('jquery'), '0.9.8', 1 );
    279279
  • wp-admin/includes/ajax-actions.php

     
    21302130        /* translators: revision date format, see http://php.net/date */
    21312131        $datef = _x( 'j F, Y @ G:i:s', 'revision date format');
    21322132
     2133        $left_revision = get_post( $compare_to );
     2134        //error_log($left_revision);
    21332135        //single model fetch mode
     2136        //return the diff of a single revision comparison
    21342137        if ( 0 != $single_revision_id ) {
    2135                 $left_revision = get_post( $compare_to );
    21362138                $right_revision = get_post( $single_revision_id );
    21372139
    2138                 if ( $compare_two_mode ) {
    2139                         $compare_to_gravatar = get_avatar( $left_revision->post_author, 18 );
    2140                         $compare_to_author = get_the_author_meta( 'display_name', $left_revision->post_author );
    2141                         $compare_to_date = date_i18n( $datef, strtotime( $left_revision->post_modified ) );
    2142 
    2143                         $revision_from_date_author = sprintf(
    2144                                 '%s %s, %s %s (%s)',
    2145                                 $compare_to_gravatar,
    2146                                 $compare_to_author,
    2147                                 human_time_diff( strtotime( $left_revision->post_modified ), current_time( 'timestamp' ) ),
    2148                                 __( ' ago ' ),
    2149                                 $compare_to_date
    2150                         );
    2151                 }
    2152 
    21532140                //
    21542141                //make sure the left revision is the most recent
    21552142                //
     
    21592146                        $right_revision = $temp;
    21602147                }
    21612148
     2149                $linesadded=0;
     2150                $linesdeleted=0;
     2151
    21622152                //
    21632153                //compare from left to right, passed from application
    21642154                //
     
    21742164                        if ( ! empty( $show_split_view ) )
    21752165                                 $args = array( 'show_split_view' => true );
    21762166
    2177                         $content .= wp_text_diff( $left_content, $right_content, $args );
     2167                        $diff = wp_text_diff_with_count( $left_content, $right_content, $args );
     2168
     2169                        if ( isset( $diff[ 'html' ] ) )
     2170                                $content .= $diff[ 'html' ];
     2171
     2172                        if ( isset( $diff[ 'linesadded' ] ) )
     2173                                $linesadded = $linesadded + $diff[ 'linesadded' ];
     2174
     2175                        if ( isset( $diff[ 'linesdeleted' ] ) )
     2176                                $linesdeleted = $linesdeleted + $diff[ 'linesdeleted' ];
     2177
     2178
    21782179                }
    2179                         $content = '' == $content ? __( 'No difference' ) : $content;
    2180                         $alltherevisions = array (
    2181                                 'revisiondiff' => $content
    2182                         );
     2180                $content = '' == $content ? __( 'No difference' ) : $content;
     2181
     2182                $alltherevisions = array (
     2183                        'revisiondiff' => $content,
     2184                        'lines_deleted' => $linesdeleted,
     2185                        'lines_added' => $linesadded
     2186                );
    21832187                echo json_encode( $alltherevisions );
    21842188                exit();
    2185         }
     2189        } //end single model fetch
    21862190
     2191        //fetch the list of revisions available
     2192
    21872193        //if we are comparing two revisions, the first 'revision' represented by the leftmost
    21882194        //slider position is the current revision, prepend a comparison to this revision
    2189         if ( $compare_two_mode )
    2190                 array_unshift( $revisions, get_post( $post_id ) );
    2191                
     2195        if ( ! wp_first_revision_matches_current_version( $post_id ) ) //revisions don't have current version
     2196                array_unshift( $revisions, get_post( $post_id ) ) ;
     2197        //$revisions->append ( get_post( $post_id ) );
     2198        //error_log( var_dump( $revisions ));
    21922199        $count = -1;
    21932200
     2201        //reverse the list to start with oldes revision
     2202        $revisions = array_reverse( $revisions );
     2203
     2204        $previous_revision_id = 0;
    21942205        foreach ( $revisions as $revision ) :
    2195                 if ( ! empty( $show_autosaves ) && wp_is_post_autosave( $revision ) )
     2206                //error_log( ( $show_autosaves  ));
     2207                if ( empty( $show_autosaves ) && wp_is_post_autosave( $revision ) )
    21962208                                continue;
    21972209
    21982210                $revision_from_date_author = '';
    21992211                $count++;
    22002212                // return blank data for diffs to the left of the left handle (for right handel model)
    22012213                // or to the right of the right handle (for left handel model)
    2202                 if ( ( 0 != $left_handle_at && $count <= $left_handle_at ) || 
    2203                          ( 0 != $right_handle_at && $count > $right_handle_at )) { 
     2214                if ( ( 0 != $left_handle_at && $count <= $left_handle_at ) ||
     2215                         ( 0 != $right_handle_at && $count > $right_handle_at )) {
    22042216                        $alltherevisions[] = array (
    22052217                                'ID' => $revision->ID,
    22062218                        );
    2207                        
    22082219                        continue;
    22092220                }
    22102221
    2211                 $gravatar = get_avatar( $revision->post_author, 18 );
     2222                if ( $compare_two_mode ) {
     2223                        $compare_to_gravatar = get_avatar( $left_revision->post_author, 24 );
     2224                        $compare_to_author = get_the_author_meta( 'display_name', $left_revision->post_author );
     2225                        $compare_to_date = date_i18n( $datef, strtotime( $left_revision->post_modified ) );
     2226
     2227                        $revision_from_date_author = sprintf(
     2228                                '%s %s, %s %s (%s)',
     2229                                $compare_to_gravatar,
     2230                                $compare_to_author,
     2231                                human_time_diff( strtotime( $left_revision->post_modified ), current_time( 'timestamp' ) ),
     2232                                __( ' ago ' ),
     2233                                $compare_to_date
     2234                        );
     2235                }
     2236
     2237                $gravatar = get_avatar( $revision->post_author, 24 );
    22122238                $author = get_the_author_meta( 'display_name', $revision->post_author );
    22132239                $date = date_i18n( $datef, strtotime( $revision->post_modified ) );
    22142240                $revision_date_author = sprintf(
     
    22192245                        __( ' ago ' ),
    22202246                        $date
    22212247                );
     2248                $datef2 = __( 'j M @ G:i' );
     2249                $date2 = date_i18n( $datef2, strtotime( $revision->post_modified ) );
    22222250
     2251                $revision_date_author_short = sprintf(
     2252                        '%s <strong>%s</strong><br />%s',
     2253                        $gravatar,
     2254                        $author,
     2255                        $date2
     2256                );
     2257
    22232258                $restoreaction = wp_nonce_url(
    22242259                        add_query_arg(
    22252260                                array( 'revision' => $revision->ID,
    22262261                                        'action' => 'restore' ),
    22272262                                        admin_url( 'revision.php' )
    22282263                        ),
    2229                         "restore-post_{$compare_to}|{$revision->ID}"
     2264                        "restore-post_{$revision->ID}"
    22302265                );
    22312266
    2232                 $alltherevisions[] = array (
     2267                if ( ( $compare_two_mode || 0 !== $previous_revision_id ) ) {
     2268                        $alltherevisions[] = array (
    22332269                                'ID' => $revision->ID,
    22342270                                'revision_date_author' => $revision_date_author,
    22352271                                'revision_from_date_author' => $revision_from_date_author,
     2272                                'revision_date_author_short' => $revision_date_author_short,
    22362273                                'restoreaction' => urldecode( $restoreaction ),
    2237                                 'revision_toload' => true
     2274                                'revision_toload' => true,
     2275                                'previous_revision_id' => $previous_revision_id
    22382276                        );
     2277                }
     2278                $previous_revision_id = $revision->ID;
    22392279
    22402280        endforeach;
    22412281
  • wp-admin/js/revisions.js

     
    77
    88                Model : Backbone.Model.extend({
    99                        idAttribute : 'ID',
    10                         urlRoot : ajaxurl +     '?action=revisions-data&compare_to=' + wpRevisionsSettings.post_id +
    11                                 '&show_autosaves=false&show_split_view=true&nonce=' + wpRevisionsSettings.nonce,
     10                        urlRoot : ajaxurl +     '?action=revisions-data' +
     11                                '&show_autosaves=true&show_split_view=true&nonce=' + wpRevisionsSettings.nonce,
    1212                        defaults: {
    1313                                ID : 0,
    1414                                revision_date_author : '',
     15                                revision_date_author_short: '',
    1516                                revisiondiff : '<div class="diff-loading"><div class="spinner"></div></div>',
    1617                                restoreaction : '',
    1718                                revision_from_date_author : '',
    18                                 revision_toload : false
     19                                revision_toload : false,
     20                                lines_added : 0,
     21                                lines_deleted : 0,
     22                                scope_of_changes : 'none',
     23                                previous_revision_id : 0
    1924                        },
    2025
    2126                        url : function() {
    22                                 return this.urlRoot + '&single_revision_id=' + this.id;
     27                                if ( 1 === REVAPP._compareoneortwo ) {
     28                                        return this.urlRoot +
     29                                                '&single_revision_id=' + this.id +
     30                                                '&compare_to=' + this.get( 'previous_revision_id' ) +
     31                                                '&post_id=' + wpRevisionsSettings.post_id;
     32                                } else {
     33                                        return this.urlRoot +
     34                                '&single_revision_id=' + this.id;
     35                                }
     36
    2337                        }
    2438
    2539                }),
     
    3549                        _revisionsOptions : null,
    3650                        _left_diff : 0,
    3751                        _right_diff : 1,
    38                         _autosaves : false,
     52                        _autosaves : true,
    3953                        _show_split_view : true,
    4054                        _compareoneortwo : 1,
    4155                        _left_model_loading : false,    //keep track of model loads
    4256                        _right_model_loading : false,   //disallow slider interaction, also repeat loads, while loading
     57                        _tickmarkView : null, //the slider tickmarks
     58                        _has_tooltip : false,
    4359
    4460                        //TODO add ability to arrive on specific revision
    4561                        routes : {
     
    5470                                var revisions_to_load = model_collection.where( { revision_toload : true } );
    5571                                //console.log(revisions_to_load);
    5672                                var delay=0;
    57                                 _.each(revisions_to_load, function( the_model ) {
     73                                //match slider to passed revision_id
     74                                _.each( revisions_to_load, function( the_model ) {
     75                                        if ( the_model.get( 'ID' )  == wpRevisionsSettings.revision_id ) {
     76                                                //console.log ( the_model.get( 'ID' ) +'-' +wpRevisionsSettings.revision_id);
     77                                                self._right_diff = self._revisions.indexOf( the_model ) + 1;
     78                                        }
     79
     80                                });
     81                                _.each( revisions_to_load, function( the_model ) {
    5882                                                the_model.urlRoot = model_collection.url;
    5983                                                _.delay( function() {
    6084                                                        the_model.fetch( {
     
    6387                                                                remove : false,
    6488                                                                //async : false,
    6589                                                                success : function( model ) {
    66                                                                         //console.log(model.get( 'ID' ) +'-'+self._revisions.at( self._right_diff ).get( 'ID' ));
    67                                                                         if ( model.get( 'ID' ) === self._revisions.at( self._right_diff - 1 ).get( 'ID' ) ) { //reload if current model refreshed
     90                                                                        model.set( 'revision_toload', 'false' );
     91                                                                        //console.log(model_collection.where( { revision_toload : true } ).length);
     92
     93                                                                        //stop spinner when all models are loaded
     94                                                                        if ( 0 === model_collection.where( { revision_toload : true } ).length )
     95                                                                                self.stop_model_loading_spinner();
     96
     97                                                                        self._tickmarkView.render();
     98
     99                                                                        var total_changes = model.get( 'lines_added' ) + model.get( 'lines_deleted');
     100                                                                        //      console.log(total_changes);
     101                                                                        var scope_of_changes = 'vsmall';
     102
     103                                                                        //hard coded scope of changes
     104                                                                        //TODO change to dynamic based on range of values
     105                                                                        if  ( total_changes > 1 && total_changes <= 3 ) {
     106                                                                                scope_of_changes = 'small';
     107                                                                        } else if(total_changes > 3 && total_changes <= 5 ) {
     108                                                                                scope_of_changes = 'med';
     109                                                                        } else if(total_changes > 5 && total_changes <= 10 ) {
     110                                                                                scope_of_changes = 'large';
     111                                                                        } else if(total_changes > 10 ) {
     112                                                                                scope_of_changes = 'vlarge';
     113                                                                        }
     114                                                                        model.set( 'scope_of_changes', scope_of_changes );
     115                                                                        //console.log (self._right_diff);
     116                                                                        if ( 0 !== self._right_diff &&
     117                                                                                model.get( 'ID' ) === self._revisions.at( self._right_diff - 1 ).get( 'ID' ) ) {
     118                                                                                //reload if current model refreshed
    68119                                                                                //console.log('render');
    69120                                                                                self._revisionView.render();
    70121                                                                        }
     122
    71123                                                                }
    72124                                                } );
    73125                                                }, delay ) ;
    74                                                 delay = delay + 200; //stagger model loads by 200 ms to avoid hammering server with requests
     126                                                delay = delay + 150; //stagger model loads to avoid hammering server with requests
    75127                                        }
    76128                                );
    77129                        },
     
    83135
    84136                        stop_left_model_loading : function() {
    85137                                this._left_model_loading = false;
    86                                 $('.revisiondiffcontainer').removeClass('leftmodelloading');
    87138                        },
    88139
    89140                        start_right_model_loading : function() {
     
    93144
    94145                        stop_right_model_loading : function() {
    95146                                this._right_model_loading = false;
     147                        },
     148
     149                        stop_model_loading_spinner : function() {
    96150                                $('.revisiondiffcontainer').removeClass('rightmodelloading');
     151                                $('.revisiondiffcontainer').removeClass('leftmodelloading');
    97152                        },
    98153
    99154                        reloadmodel : function() {
     
    107162                        reloadmodelsingle : function() {
    108163                                var self = this;
    109164                                self._revisions.url = ajaxurl + '?action=revisions-data&compare_to=' + wpRevisionsSettings.post_id +
    110                                                                                         '&show_autosaves=' + self._autosaves +
     165                                                                                        '&show_autosaves=' + REVAPP._autosaves +
    111166                                                                                        '&show_split_view=' +  REVAPP._show_split_view +
    112167                                                                                        '&nonce=' + wpRevisionsSettings.nonce;
    113168                                self.start_right_model_loading();
    114                                 this._revisions.fetch({ //reload revision data
     169                                self._revisions.fetch({ //reload revision data
    115170                                        success : function() {
    116171                                                self.stop_right_model_loading();
    117172                                                var revisioncount = self._revisions.length;
    118                                                 if ( self._right_diff > revisioncount ) //if right handle past rightmost, move
    119                                                         self._right_diff = revisioncount;
     173                                                //if ( self._right_diff > revisioncount ) //if right handle past rightmost, move
    120174
     175                                                //      self._right_diff = revisioncount;
     176
     177
     178
    121179                                                self._revisionView.render();
    122180                                                self.reload_toload_revisions( self._revisions );
    123181
    124182                                                $( '#slider' ).slider( 'option', 'max', revisioncount-1 ); //TODO test this, autsaves changed
     183                                                $( '#slider' ).slider( 'value', REVAPP._right_diff - 1 ).trigger( 'slide' );
     184                                                REVAPP._tickmarkView.model = self._revisions;
     185                                                REVAPP._tickmarkView.render();
    125186                                        },
    126187
    127188                                        error : function () {
     
    136197                                var self = this;
    137198                                self.start_left_model_loading();
    138199                                self._left_handle_revisions = new wp.revisions.Collection();
     200                                //console.log( 'right - ' + self._right_diff );
     201                                //if ( self._right_diff > self._revisions.length)
     202                                        //self._right_diff = self._right_diff-1;
     203                                //console.log (REVAPP._right_diff );
     204
    139205                                self._left_handle_revisions.url =
    140206                                        ajaxurl +
    141207                                        '?action=revisions-data&compare_to=' + self._revisions.at( self._right_diff - 1 ).get( 'ID' ) +
    142208                                        '&post_id=' + wpRevisionsSettings.post_id +
    143                                         '&show_autosaves=' + self._autosaves +
    144                                         '&show_split_view=' +  self._show_split_view +
     209                                        '&show_autosaves=' + REVAPP._autosaves +
     210                                        '&show_split_view=' +  REVAPP._show_split_view +
    145211                                        '&nonce=' + wpRevisionsSettings.nonce +
    146212                                        '&right_handle_at='  + ( self._right_diff );
    147213
     
    150216                                        success : function(){
    151217                                                self.stop_left_model_loading();
    152218                                                self.reload_toload_revisions( self._left_handle_revisions );
     219                                                self._tickmarkView.model = self._left_handle_revisions;
     220                                                $( '#slider' ).slider( 'option', 'max', self._revisions.length );
    153221                                        },
    154222
    155223                                        error : function () {
     
    163231                                var self = this;
    164232                                self.start_right_model_loading();
    165233                                self._right_handle_revisions = new wp.revisions.Collection();
    166                                 if ( 0 === self._left_diff ) {
     234                                //console.log (REVAPP._left_diff );
     235
    167236                                        self._right_handle_revisions.url =
    168237                                                ajaxurl +
    169                                                 '?action=revisions-data&compare_to=' + wpRevisionsSettings.post_id +
     238                                                '?action=revisions-data&compare_to=' + ( self._revisions.at( self._left_diff ).get( 'ID' ) - 1 )+
    170239                                                '&post_id=' + wpRevisionsSettings.post_id +
    171                                                 '&show_autosaves=' + self._autosaves +
    172                                                 '&show_split_view=' +  self._show_split_view +
     240                                                '&show_autosaves=' + REVAPP._autosaves +
     241                                                '&show_split_view=' +  REVAPP._show_split_view +
    173242                                                '&nonce=' + wpRevisionsSettings.nonce;
    174                                 } else {
    175                                         self._right_handle_revisions.url =
    176                                                 ajaxurl +
    177                                                 '?action=revisions-data&compare_to=' + self._revisions.at( self._left_diff - 1 ).get( 'ID' ) +
    178                                                 '&post_id=' + wpRevisionsSettings.post_id +
    179                                                 '&show_autosaves=' + self._autosaves +
    180                                                 '&show_split_view=' +  self._show_split_view +
    181                                                 '&nonce=' + wpRevisionsSettings.nonce +
    182                                                 '&left_handle_at=' + (self._left_diff ) ;
    183                                 }
    184243
    185244                                self._right_handle_revisions.fetch({
    186245
    187246                                        success : function(){
    188247                                                self.stop_right_model_loading();
    189248                                                self.reload_toload_revisions( self._right_handle_revisions );
     249                                                self._tickmarkView.model = self._right_handle_revisions;
     250                                                $( '#slider' ).slider( 'option', 'max', self._revisions.length );
     251                                                $( '#slider' ).slider( 'values', [ REVAPP._left_diff, REVAPP._right_diff] ).trigger( 'slide' );
     252
     253                                                //REVAPP._revisionView.render();
     254
    190255                                        },
    191256
    192257                                        error : function ( response ) {
     
    208273                        initialize : function( options ) {
    209274                                var self = this; //store the application instance
    210275                                if (this._revisions === null) {
    211                                         self._autosaves = '';
    212276                                        self._revisions = new wp.revisions.Collection(); //set up collection
    213277                                        self.start_right_model_loading();
    214278                                        self._revisions.fetch({ //load revision data
    215279
    216280                                                success : function() {
    217281                                                        self.stop_right_model_loading();
    218                                                         self.revisionDiffSetup();
     282                                                        self.completeApplicationSetup();
    219283                                                }
    220284                                        });
    221285                                }
    222286                                return this;
    223287                        },
    224288
    225                         revisionDiffSetup : function() {
     289                        addTooltip : function( handle, message ) {
     290
     291                                handle.attr( 'title', '' ).tooltip({
     292                                        track: false,
     293
     294                                        position: {
     295                                                my: "left-22 top-66",
     296                                                at: "top left",
     297                                                using: function( position, feedback ) {
     298                                                        //console.log(this);
     299                                                        $( this ).css( position );
     300                                                        $( "<div>" )
     301                                                        .addClass( "arrow" )
     302                                                        .addClass( feedback.vertical )
     303                                                        .addClass( feedback.horizontal )
     304                                                        .appendTo( $( this ) );
     305                                                }
     306                                        },
     307                                        show: false,
     308                                        hide: false,
     309                                        content:  function() {
     310                                                return message;
     311                                        }
     312
     313                                } );
     314                        },
     315/**/
     316
     317                        completeApplicationSetup : function() {
    226318                                this._revisionView = new wp.revisions.views.View({
    227319                                        model : this._revisions
    228320                                });
    229321                                this._revisionView.render();
    230                                 $( '#diff_max, #diff_maxof' ).html( this._revisions.length );
    231                                 $( '#diff_count' ).html( REVAPP._right_diff );
    232322                                $( '#slider' ).slider( 'option', 'max', this._revisions.length - 1 );
    233323
    234324                                this.reload_toload_revisions( this._revisions );
     325
    235326                                this._revisionsInteractions = new wp.revisions.views.Interact({
    236327                                        model : this._revisions
    237328                                });
    238329                                this._revisionsInteractions.render();
    239330
     331                                this._tickmarkView = new wp.revisions.views.Tickmarks({
     332                                        model : this._revisions
     333                                });
     334                                this._tickmarkView.render();
     335                                this._tickmarkView.resetticks();
     336
     337
    240338                                /*
     339                                .on( 'mouseup', function( event ) {
     340                                        REVAPP._keep_tooltip_open = false;
     341                                        $( this ).find('.ui-slider-tooltip').hide();
     342                                } ).on( 'mousedown', function( event ) {
     343                                        REVAPP._keep_tooltip_open = true;
     344                                } ).on( 'mouseout', function( event ) {
     345                                        if ( REVAPP._keep_tooltip_open)
     346                                                event.stopImmediatePropagation();
     347                                        });
     348                                */
     349                                /*
    241350                                //Options hidden for now, moving to screen options
    242351                                this._revisionsOptions = new wp.revisions.views.Options({
    243352                                        model : this._revisions
     
    252361        wp.revisions.Collection = Backbone.Collection.extend({
    253362                model : wp.revisions.Model,
    254363                url : ajaxurl + '?action=revisions-data&compare_to=' + wpRevisionsSettings.post_id +
    255                         '&show_autosaves=false&show_split_view=true&nonce=' + wpRevisionsSettings.nonce,
     364                        '&show_autosaves=true&show_split_view=true&nonce=' + wpRevisionsSettings.nonce,
    256365
    257366                initialize : function() {
    258367                        }
    259368        } );
    260369
    261370        _.extend(wp.revisions.views, {
     371
     372                //Ticks inside slider view
    262373                //
     374                Tickmarks : Backbone.View.extend({
     375                        el : $('#diff-slider-ticks')[0],
     376                        tagName : 'diff-slider-ticks-view',
     377                        className : 'diff-slider-ticks-container',
     378                        template : wp.template('revision-ticks'),
     379                        model : wp.revisions.Model,
     380
     381                        resetticks : function() {
     382                                var slider_max = $( '#slider' ).slider( 'option', 'max');
     383                                var slider_width = $( '#slider' ).width();
     384                                var adjust_max = ( 2 === REVAPP._compareoneortwo ) ? 1 : 0;
     385                                var tick_width = Math.floor( slider_width / ( slider_max - adjust_max ) );
     386
     387                                //TODO: adjust right margins for wider ticks so they stay centered on handle stop point
     388
     389                                tick_width = (tick_width > 50 ) ? 50 : tick_width;
     390                                tick_width = (tick_width < 10 ) ? 10 : tick_width;
     391
     392                                slider_width = tick_width * (slider_max - adjust_max ) +1;
     393
     394                                $( '#slider' ).width( slider_width );
     395                                $( '.diff-slider-ticks-wrapper' ).width( slider_width );
     396                                $( '#diffslider' ).width( slider_width );
     397                                $( '#diff-slider-ticks' ).width( slider_width );
     398
     399                                var a_tick_width = $( '.revision-tick' ).width();
     400
     401                                if ( tick_width !==  a_tick_width ) { // is the width already set correctly?
     402                                        $( '.revision-tick' ).each( function( ) {
     403                                                $(this).css( 'margin-right', tick_width - 1 + 'px'); //space the ticks out using right margin
     404                                        });
     405
     406                                        if( 2 === REVAPP._compareoneortwo ) {
     407                                                $( '.revision-tick' ).first().remove(); //TODO - remove the check
     408                                        }
     409                                        $( '.revision-tick' ).last().css( 'margin-right', '0' ); // last tick gets no right margin
     410                                }
     411
     412                        },
     413
     414                        //render the tickmark view
     415                        render : function() {
     416                                var self = this;
     417
     418                                if ( null !== self.model ) {
     419                                        //TODO remove this initial model when ticket #16215 rolls because
     420                                        //revisions will then include current version
     421                                        var add_placeholder = ( 2 === REVAPP._compareoneortwo ) ? self.template('') : '';
     422
     423                                        var addhtml = "";//add_placeholder;
     424                                        _.each ( self.model.models, function ( the_model ) {
     425
     426                                                addhtml = addhtml + self.template ( the_model.toJSON() );
     427
     428                                        });
     429                                        self.$el.html( addhtml );
     430
     431                                }
     432                                self.resetticks();
     433                                return self;
     434                        }
     435                }),
     436
     437                //
    263438                //primary revision diff view
    264439                //
    265440                View : Backbone.View.extend({
     
    267442                        tagName : 'revisionvview',
    268443                        className : 'revisionview-container',
    269444                        template : wp.template('revision'),
    270                         revvapp : null,
    271445                        comparetwochecked : '',
    272446                        draggingleft : false,
    273447
    274                         initialize : function(){
    275                         },
    276 
    277448                        //
    278449                        //render the revisions
    279450                        //
    280451                        render : function() {
    281452                                var addhtml = '';
    282453                                //compare two revisions mode?
     454
    283455                                if ( 2 === REVAPP._compareoneortwo ) {
    284456                                        this.comparetwochecked = 'checked';
    285457                                        if ( this.draggingleft ) {
     
    291463                                                }
    292464                                        } else { //dragging right handle
    293465                                                var thediff = REVAPP._right_diff;
     466                                                //console.log( thediff )
    294467                                                if ( this.model.at( thediff ) ) {
    295468                                                        addhtml = this.template( _.extend(
    296469                                                                this.model.at( thediff ).toJSON(),
     
    310483                                this.$el.html( addhtml );
    311484                                if ( this.model.length < 3 ) {
    312485                                        $( 'div#comparetworevisions' ).hide(); //don't allow compare two if fewer than three revisions
     486                                }
     487                                if ( this.model.length < 2 ) {
     488                                        $( 'div#diffslider' ).hide(); //don't allow compare two if fewer than three revisions
     489                                        $( 'div.diff-slider-ticks-wrapper' ).hide();
     490                                }
     491                                //console.log ( (this.model.at( REVAPP._right_diff - 1 )).url());
    313492
     493                                //
     494                                // add tooltips to the handles
     495                                //
     496                                if ( 2 === REVAPP._compareoneortwo ) {
     497                                        REVAPP.addTooltip ( $( 'a.ui-slider-handle.left-handle' ),
     498                                                ( REVAPP._right_diff >= REVAPP._revisions.length ) ? '' : REVAPP._revisions.at( REVAPP._left_diff ).get( 'revision_date_author_short' ) );
     499                                        REVAPP.addTooltip ( $( 'a.ui-slider-handle.right-handle' ),
     500                                                ( REVAPP._right_diff >= REVAPP._revisions.length ) ? '' : REVAPP._revisions.at( REVAPP._right_diff ).get( 'revision_date_author_short' ) );
     501                                } else {
     502                                        REVAPP.addTooltip ( $( 'a.ui-slider-handle' ),
     503                                                ( REVAPP._right_diff >= REVAPP._revisions.length ) ? '' : REVAPP._revisions.at( REVAPP._right_diff ).get( 'revision_date_author_short' ) );
    314504                                }
    315                                 //console.log ( (this.model.at( REVAPP._right_diff - 1 )).url());
     505
     506                                //
     507                                // hide the restore button when on the last sport/current post data
     508                                //
     509                                if ( (  2 === REVAPP._compareoneortwo  &&  ! REVAPP._revisionView.draggingleft ) ||
     510                                                1 === REVAPP._compareoneortwo ) {
     511                                        if (  REVAPP._right_diff === REVAPP._revisions.length ){
     512                                                //console.log ('hide');
     513                                                $( '.restore-button' ).hide();
     514                                        } else {
     515                                                $( '.restore-button' ).show();
     516                                        }
     517                                }
     518
    316519                                return this;
    317520                        },
    318521
     
    326529                        //
    327530                        clickcomparetwo : function(){
    328531                                self = this;
     532
    329533                                if ( $( 'input#comparetwo' ).is( ':checked' ) ) {
    330534                                        REVAPP._compareoneortwo = 2 ;
    331                                         REVAPP.reloadleftright();
    332                                 } else {
    333                                         REVAPP._compareoneortwo = 1 ;
    334                                         REVAPP._revisionView.draggingleft = false;
    335                                         REVAPP._left_diff = 0;
    336                                         REVAPP.reloadmodelsingle();
    337                                 }
    338                                 REVAPP._revisionsInteractions.render();
     535                                        if ( 0 === REVAPP._left_diff )
     536                                                REVAPP._left_diff = 1;
     537
     538                                        if ( 1 === REVAPP._right_diff )
     539                                                REVAPP._right_diff = 2;
     540
     541                                                REVAPP._revisionView.draggingleft = true;
     542
     543                                                wpRevisionsSettings.revision_id = ''; // reset passed revision id so switching back to one handle mode doesn't re-select revision
     544                                                REVAPP.reloadleftright();
     545                                                if ( REVAPP._revisionView.model !== REVAPP._left_handle_revisions &&
     546                                                                                        null !== REVAPP._left_handle_revisions ) {
     547                                                        REVAPP._revisionView.model = REVAPP._left_handle_revisions;
     548                                                        REVAPP._tickmarkView.model = REVAPP._left_handle_revisions;
     549                                                }
     550                                        } else {
     551                                                REVAPP._compareoneortwo = 1 ;
     552                                                REVAPP._revisionView.draggingleft = false;
     553                                                REVAPP._left_diff = 0;
     554                                                REVAPP._right_diff = (REVAPP._revisions.length <= REVAPP._right_diff ) ? REVAPP._right_diff : REVAPP._right_diff +1;
     555                                                REVAPP.reloadmodelsingle();
     556                                        }
     557                                        REVAPP._revisionsInteractions.render();
     558                                        REVAPP._tickmarkView.render();
     559                                //REVAPP._revisionView.render();
    339560                        }
    340561                }),
    341562
    342563                //
    343564                //options view for show autosaves and show split view options
    344565                //
     566                /* DISABLED for now
    345567                Options : Backbone.View.extend({
    346568                        el : $('#backbonerevisionsoptions')[0],
    347569                        tagName : 'revisionoptionsview',
    348570                        className : 'revisionoptions-container',
    349571                        template : wp.template('revisionoptions'),
    350572
    351                         initialize : function() {
    352                         },
    353 
    354573                        //render the options view
    355574                        render : function() {
    356575                                var addhtml = this.template;
     
    396615                                REVAPP.reloadmodel();
    397616                        }
    398617                }),
    399 
     618                */
    400619                //
    401620                //main interactions view
    402621                //
     
    405624                        tagName : 'revisionvinteract',
    406625                        className : 'revisionvinteract-container',
    407626                        template : wp.template('revisionvinteract'),
    408                         _restoreword : '',
    409627
    410628                        initialize : function() {
    411                                 this._restoreword = $( 'input#restore' ).attr( 'value' );
    412629                        },
    413630
    414                         reset_restore_button : function() {
    415                                 $( 'input#restore' ).attr( 'value', this._restoreword + ' ' + REVAPP._revisions.at( REVAPP._right_diff - 1 ).get( 'ID' ) );
    416                         },
    417 
    418631                        render : function() {
    419632                                var self = this;
    420633
    421634                                var addhtml = this.template;
    422635                                this.$el.html( addhtml );
    423                                 $( '#diff_max, #diff_maxof' ).html( this.model.length );
    424                                 $( '#diff_count' ).html( REVAPP._right_diff );
    425                                 $( '#diff_left_count_inner' ).html( 0 === REVAPP._left_diff ? '' : 'revision' + REVAPP._left_diff );
    426                                 self.reset_restore_button();
    427636
    428637                                var modelcount = REVAPP._revisions.length;
    429638
     
    431640                                if ( 1 === REVAPP._compareoneortwo ) {
    432641                                        //set up the slider with a single handle
    433642                                        slider.slider({
    434                                                 value : REVAPP._right_diff-1,
    435                                                 min : 0,
    436                                                 max : modelcount-1,
    437                                                 step : 1,
     643                                                value: REVAPP._right_diff-1,
     644                                                min: 0,
     645                                                max: modelcount-1,
     646                                                step: 1,
    438647
     648
    439649                                                //slide interactions for one handles slider
    440650                                                slide : function( event, ui ) {
    441                                                         if ( REVAPP._right_model_loading ) //left model stoll loading, prevent sliding left handle
    442                                                                                 return false;
    443651
    444                                                         REVAPP._right_diff =( ui.value+1 );
    445                                                         $( '#diff_count' ).html( REVAPP._right_diff );
     652                                                        REVAPP._right_diff = ( ui.value +1 );
    446653                                                        REVAPP._revisionView.render();
    447                                                         self.reset_restore_button();
    448                                                 }
     654                                                        /*
     655                                                        $( 'a.ui-slider-handle' ).tooltip( {
     656                                                                content: REVAPP._revisions.at( ui.value ).get( 'revision_date_author_short' ),
     657                                                                position: {
     658                                                                my: "top-65",
     659                                                                using: function( position, feedback ) {
     660                                                                        $( this ).css( position );
     661                                                                        $( "<div>" )
     662                                                                        .addClass( "arrow" )
     663                                                                        .addClass( feedback.vertical )
     664                                                                        .addClass( feedback.horizontal )
     665                                                                        .appendTo( this );
     666                                                                        }
     667                                                                }
     668                                                        });//.trigger( 'close' ).trigger( 'open' );
     669*/
     670                                                        }
    449671                                        });
    450672                                        $( '.revisiondiffcontainer' ).removeClass( 'comparetwo' );
     673
    451674                                } else { //comparing more than one, eg 2
    452675                                        //set up the slider with two handles
    453676                                        slider.slider({
     
    460683                                                //in two handled mode when user starts dragging, swap in precalculated diff for handle
    461684                                                start : function (event, ui ) {
    462685                                                        var index = $( ui.handle ).index(); //0 (left) or 1 (right)
    463 
     686                                                        //console.log (REVAPP._right_model_loading );
    464687                                                        switch ( index ) {
    465688                                                                case 1: //left handle drag
    466                                                                         if ( REVAPP._left_model_loading ) //left model stoll loading, prevent sliding left handle
     689                                                                        if ( REVAPP._left_model_loading ) //left model still loading, prevent sliding left handle
    467690                                                                                return false;
    468691
    469692                                                                        if ( REVAPP._revisionView.model !== REVAPP._left_handle_revisions &&
    470                                                                                         null !== REVAPP._left_handle_revisions )
     693                                                                                        null !== REVAPP._left_handle_revisions ) {
    471694                                                                                REVAPP._revisionView.model = REVAPP._left_handle_revisions;
    472 
     695                                                                                REVAPP._tickmarkView.model = REVAPP._left_handle_revisions;
     696                                                                                REVAPP._tickmarkView.render();
     697                                                                        }
    473698                                                                        REVAPP._revisionView.draggingleft = true;
    474699                                                                        REVAPP._left_diff_start = ui.values[ 0 ];
    475700                                                                        break;
    476701
    477702                                                                case 2: //right
    478                                                                         if ( REVAPP._right_model_loading ) //right model stoll loading, prevent sliding right handle
     703                                                                        if ( REVAPP._right_model_loading ) //right model still loading, prevent sliding right handle
    479704                                                                                return false;
    480705
    481                                                                         //one extra spot at left end when comparing two
    482706                                                                        if ( REVAPP._revisionView.model !== REVAPP._right_handle_revisions &&
    483                                                                                         null !== REVAPP._right_handle_revisions )
     707                                                                                        null !== REVAPP._right_handle_revisions ) {
    484708                                                                                REVAPP._revisionView.model = REVAPP._right_handle_revisions;
     709                                                                                REVAPP._tickmarkView.model = REVAPP._right_handle_revisions;
     710                                                                                REVAPP._tickmarkView.render();
     711                                                                        }
    485712
    486713                                                                        REVAPP._revisionView.draggingleft = false;
    487714                                                                        REVAPP._right_diff_start = ui.values[ 1 ];
     
    501728                                                                        if ( REVAPP._left_model_loading ) //left model still loading, prevent sliding left handle
    502729                                                                                return false;
    503730
    504                                                                         REVAPP._left_diff = ui.values[ 0 ] - 1; //one extra spot at left end when comparing two
     731                                                                        REVAPP._left_diff = ui.values[ 0 ]; //one extra spot at left end when comparing two
    505732                                                                        break;
    506733
    507734                                                                case 2: //right
    508                                                                         if ( REVAPP._right_model_loading ) //right model still loading, prevent sliding right handle
    509                                                                                 return false;
     735                                                                        REVAPP._right_diff = ui.values[ 1 ] ;
     736                                                                        //console.log('setting ' + REVAPP._right_diff );
     737                                                                        //$last_revision->post_modified == $post->post_modified
     738                                                                        console.log( ui.values[ 1 ] );
     739                                                                        console.log(REVAPP._revisions.length);
    510740
    511                                                                         REVAPP._right_diff = ui.values[ 1 ] - 1 ;
     741
    512742                                                                        break;
    513743                                                        }
    514744
    515                                                         $( '#diff_count' ).html( REVAPP._right_diff );
    516 
    517745                                                        if ( 0 === REVAPP._left_diff ) {
    518746                                                                $( '.revisiondiffcontainer' ).addClass( 'currentversion' );
    519747
    520748                                                        } else {
    521749                                                                $( '.revisiondiffcontainer' ).removeClass( 'currentversion' );
    522                                                                 $( '#diff_left_count_inner' ).html( REVAPP._left_diff );
    523750                                                        }
    524751
    525                                                         REVAPP._revisionView.render(); //render the diff view
    526                                                         self.reset_restore_button();
     752                                                        REVAPP._revisionView.render();
     753
    527754                                                },
    528755
    529756                                                //when the user stops sliding  in 2 handle mode, recalculate diffs
     
    536763
    537764                                                                switch ( index ) {
    538765                                                                        case 1: //left
     766
    539767                                                                                //left handle dragged & changed, reload right handle model
    540                                                                                 if ( ! ( REVAPP._left_diff_start === ui.values[ 0 ] || REVAPP._left_model_loading ) )
     768                                                                                if ( REVAPP._left_diff_start !== ui.values[ 0 ] )
    541769                                                                                        REVAPP.reloadright();
    542770
    543771                                                                                break;
    544772
    545773                                                                        case 2: //right
     774                                                                                //REVAPP._right_diff =  ( 1 >= REVAPP._right_diff ) ? 1  : REVAPP._right_diff-1;
    546775                                                                                //right handle dragged & changed, reload left handle model if changed
    547                                                                                 if ( ! ( REVAPP._right_diff_start === ui.values[ 1 ] || REVAPP._right_model_loading ) ) {
     776                                                                                if ( REVAPP._right_diff_start !== ui.values[ 1 ] )
    548777                                                                                        REVAPP.reloadleft();
    549                                                                                 }
     778
    550779                                                                                break;
    551780                                                                }
    552781                                                        }
    553782                                                }
    554783                                        });
    555784                                        $( '.revisiondiffcontainer' ).addClass( 'comparetwo' );
     785                                        $( '#diffslider a.ui-slider-handle' ).first().addClass( 'left-handle' ).next().addClass( 'right-handle' );
    556786                                }
    557787
    558788                                return this;
     
    571801
    572802                                REVAPP._revisionView.render();
    573803
    574                                 $( '#diff_count' ).html( REVAPP._right_diff );
    575804                                $( '#slider' ).slider( 'value', REVAPP._right_diff - 1 ).trigger( 'slide' );
    576                                 this.reset_restore_button();
    577805                        },
    578806
    579807                        //go the the previous revision
     
    583811
    584812                                REVAPP._revisionView.render();
    585813
    586                                 $( '#diff_count' ).html( REVAPP._right_diff );
    587814                                $( '#slider' ).slider( 'value', REVAPP._right_diff - 1 ).trigger( 'slide' );
    588                                 this.reset_restore_button();
    589815                        }
    590816                })
    591817        });
  • wp-admin/revision.php

     
    1717case 'restore' :
    1818        if ( ! $revision = wp_get_post_revision( $revision_id ) )
    1919                break;
     20
    2021        if ( ! current_user_can( 'edit_post', $revision->post_parent ) )
    2122                break;
     23
     24
    2225        if ( ! $post = get_post( $revision->post_parent ) )
    2326                break;
    2427
    25         // 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 ) ) {
     28        // Revisions disabled (previously checked autosavegs && ! wp_is_post_autosave( $revision ))
     29        if ( ( ! WP_POST_REVISIONS || ! post_type_supports( $post->post_type, 'revisions' ) ) ) {
    2730                $redirect = 'edit.php?post_type=' . $post->post_type;
    2831                break;
    2932        }
    30         check_admin_referer( "restore-post_{$post->ID}|{$revision->ID}" );
    3133
    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         update_post_meta( $post->ID, '_post_restored_from', $restore_details );
     34        check_admin_referer( "restore-post_{$revision->ID}" );
    3935
    4036        wp_restore_post_revision( $revision->ID );
    4137        $redirect = add_query_arg( array( 'message' => 5, 'revision' => $revision->ID ), get_edit_post_link( $post->ID, 'url' ) );
     
    8076        $parent_file = $submenu_file = 'edit.php?post_type=' . $post->post_type;
    8177else
    8278        $parent_file = $submenu_file = 'edit.php';
    83 
    8479wp_enqueue_script( 'revisions' );
    8580
    8681require_once( './admin-header.php' );
    8782
    8883//TODO - Some of the translations below split things into multiple strings that are contextually related and this makes it pretty impossible for RTL translation.
    8984//TODO can we pass the context in a better way
     85$wpRevisionsSettings = array( 'post_id' => $post->ID,
     86                                                'nonce' => wp_create_nonce( 'revisions-ajax-nonce' ),
     87                                                'revision_id' => $revision_id );
     88wp_localize_script( 'revisions', 'wpRevisionsSettings', $wpRevisionsSettings );
     89
     90$comparetworevisionslink = get_edit_post_link( $revision->ID );
    9091?>
    91 <script type="text/javascript">
    92 var wpRevisionsSettings = <?php echo json_encode( array( 'post_id' => $post->ID, 'nonce' => wp_create_nonce( 'revisions-ajax-nonce' ) ) ); ?>;
    93 </script>
    94 <?php
    95         $comparetworevisionslink = get_edit_post_link( $revision->ID );
    96 ?>
    9792
    98 <div id="backbonerevisionsoptions"></div>
     93<div id="backbonerevisionsoptions">
     94</div>
    9995<div class="wrap">
    100         <div class="icon32 icon32-posts-post" id="icon-edit"><br></div>
     96        <div class="icon32 icon32-posts-post" id="icon-edit">
     97                <br>
     98        </div>
    10199        <div class="revisiondiffcontainer diffsplit currentversion rightmodelloading">
    102                 <div id="modelsloading" class="updated message"><span class="spinner" ></span> <?php _e( 'Calculating revision diffs' ); ?></div>
     100                <div id="modelsloading" class="updated message">
     101                        <span class="spinner" ></span> <?php _e( 'Calculating revision diffs' ); ?>
     102                </div>
    103103                <h2 class="long-header"><?php echo $h2; ?></h2>
    104                 <div id="backbonerevisionsinteract"></div>
    105                 <div id="backbonerevisionsdiff"></div>
     104                <div class="diff-slider-ticks-wrapper">
     105                        <div id="diff-slider-ticks">
     106                        </div>
     107                </div>
     108                <div id="backbonerevisionsinteract">
     109                </div>
     110                <div id="backbonerevisionsdiff">
     111                </div>
    106112                <hr />
    107113        </div>
    108114</div>
    109115
    110116<script id="tmpl-revision" type="text/html">
     117        <div id="diffsubheader" class="diff-left-hand-meta-row">
     118                <div id="diff_from_current_revision">
     119                        <b><?php _e( 'From:' ); ?></b> <?php _e( 'the current version' ); ?>
     120                </div>
     121                <div id="difftitlefrom">
     122                        <div class="diff-from-title"><?php _e( 'From:' ); ?></div>{{{ data.revision_from_date_author }}}
     123                </div>
     124        </div>
     125
    111126        <div id="diffsubheader">
    112                 <span id="diff_from_current_revision"><?php _e( 'Current version' ); ?><?php _e( '- compared to -' ); ?></span>
    113                 <div id="difftitlefrom">{{{ data.revision_from_date_author }}} <?php _e( '- compared to -' ); ?></div>
    114                 <div id="difftitle">{{{ data.revision_date_author }}}</div>
    115                 <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>
    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>
    117                 <div id="comparetworevisions"><input type="checkbox" id="comparetwo" value="comparetwo" {{{ data.comparetwochecked }}} name="comparetwo"/> <label for="comparetwo"><?php esc_attr_e( 'Compare two revisions' ); ?></a></div>    </div>
     127                <div id="difftitle">
     128                        <div class="diff-to-title"><?php _e( 'To:' ); ?></div>{{{ data.revision_date_author }}}
     129                </div>
     130                <div id="diffrestore">
     131                        <input class="button button-primary restore-button" onClick="document.location='{{{ data.restoreaction }}}'" type="submit" id="restore" value="<?php esc_attr_e( 'Restore This Revision' )?>" />
     132                </div>
     133                <div id="comparetworevisions">
     134                        <input type="checkbox" id="comparetwo" value="comparetwo" {{{ data.comparetwochecked }}} name="comparetwo"/>
     135                                <label for="comparetwo"><?php esc_attr_e( 'Compare two revisions' ); ?></a></label>
     136                </div>
     137        </div>
     138
    118139        <div id="removedandadded">
    119140                <div id="removed"><?php _e( 'Removed -' ); ?></div>
    120141                <div id="added"><?php _e( 'Added +' ); ?></div>
     
    124145
    125146<script id="tmpl-revisionvinteract" type="text/html">
    126147        <div id="diffheader">
    127 <div id="diffprevious"><input class="button" type="submit" id="previous" value="<?php esc_attr_e( 'Previous' ); ?>" /></div>
    128                         <div id="diffnext"><input class="button" type="submit" id="next" value="<?php esc_attr_e( 'Next' ); ?>" /></div>
    129                         <div id="diffslider">
    130         <div id="revisioncount">
    131                                         <?php _e( 'Comparing' ); ?>
    132                                         <span id="diff_left_count"> <?php _e( 'revision' ); ?></span> <span id="diff_left_count_inner"></span>
    133                                         <span id="diff_left_current_revision"><?php _e( 'current version' ); ?></span>
    134                                         <span id="diff_revision_from">{{{ data.diff_revision_from }}}</span>
    135                                         <?php _e( ' to revision' ); ?>
    136                                         <span id="diff_count">{{{ data.current_diff }}}</span>
    137                                         <?php _e( ' of ' ); ?>
    138                                         <span id="diff_max" ></span>
    139                                 </div>
    140 
    141                         <div id="slider" class="wp-slider"></div>
     148                <div id="diffprevious"><input class="button" type="submit" id="previous" value="<?php esc_attr_e( 'Previous' ); ?>" />
    142149                </div>
     150                <div id="diffnext"><input class="button" type="submit" id="next" value="<?php esc_attr_e( 'Next' ); ?>" />
     151                </div>
     152                <div id="diffslider">
     153                        <div id="slider" class="wp-slider">
     154                        </div>
     155                </div>
    143156        </div>
    144157</script>
     158<script id="tmpl-revision-ticks" type="text/html">
     159        <div class="revision-tick revision-toload{{{ data.revision_toload }}} revision-scopeofchanges-{{{ data.scope_of_changes }}}">
     160        </div>
     161</script>
    145162<?php
    146163/*
    147164TODO Convert these into screen options
  • wp-admin/css/colors-fresh.css

     
    175175.sidebar-name,
    176176#nav-menu-header,
    177177#nav-menu-footer,
    178 .menu-item-handle,
    179 .wp-slider .ui-slider-handle {
     178.menu-item-handle {
    180179        background: #f1f1f1;
    181180        background-image: -webkit-gradient(linear, left bottom, left top, from(#ececec), to(#f9f9f9));
    182181        background-image: -webkit-linear-gradient(bottom, #ececec, #f9f9f9);
     
    185184        background-image: linear-gradient(to top, #ececec, #f9f9f9);
    186185}
    187186
     187
     188
    188189.widget .widget-top,
    189190.postbox h3,
    190191.stuffbox h3 {
     
    13781379        background-color: #e9f6ea;
    13791380}
    13801381
     1382.diff-to-title {
     1383        color: #0080AA;
     1384}
     1385
    13811386#diffsubheader{
    13821387        background-color: #f7f7f7;
    13831388}
    13841389
     1390.comparetwo#diffsubheader.diff-left-hand-meta-row {
     1391        background-color: #fcfcfc;
     1392}
     1393
     1394.revision-tick.revision-toloadtrue {
     1395        background-color: #9999cc;
     1396        background: url(../images/wpspin_light.gif) no-repeat;
     1397        background-position: middle;
     1398        background-size: 1px 10px;
     1399}
     1400
     1401.revision-tick.revision-toloadfalse {
     1402        background-color: #aaa;
     1403}
     1404
    13851405#att-info {
    13861406        background-color: #e4f2Fd;
    13871407}
    13881408
     1409body .ui-tooltip {
     1410        border-color: #d7d7d7;
     1411        background-color: #fff;
     1412}
     1413
    13891414/* jQuery UI Slider */
    13901415.wp-slider.ui-slider {
    13911416        border-color: #d7d7d7;
     
    13931418}
    13941419
    13951420.wp-slider .ui-slider-handle {
    1396         border-color: #d7d7d7;
     1421        border-color: none;
    13971422}
    13981423
     1424.wp-slider .ui-slider-handle.left-handle {
     1425background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAARCAMAAAAMs7fIAAAAA3NCSVQICAjb4U/gAAABAlBMVEXR2uHM1dzCzNW4ydOzxtSxw9Gqwc+bs7+Ss8SVscaZrLqQq7yNrMCKqr+EqsGDqb6GpruCpbl8pL15o7t1n7hwnLVika1djq5giqJXiqlYiqNJgp9ieYlDfqA/epw3dpk7dpg2dpo3dZo6dZc4dJY4dJg3cZY2bpE1bosxaIYxZIMrYX0tXnwtXHYsWHEnVW0mTmglT2cjTGIhRVsfQlYaN0kYM0QULDgTKTYRJzQTJzINISoLHCYNGyYKGCEIFxwJEhcJEhsHEhQDDAkHCg8EBwwCBwoEBAQBAwIBAQEBAQMAAgEBAAAAAAQAAQMBAAIAAAICAAEBAQAAAQAAAAD///+62qV+AAAAVnRSTlP/////////////////////////////////////////////////////////////////////////////////////////////////////////////////AEpNbNkAAAAJcEhZcwAACusAAArrAYKLDVoAAAAUdEVYdENyZWF0aW9uIFRpbWUAMy85LzEzrdD8jAAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNui8sowAAACbSURBVBiVVcvVDoNQEEXRqbu781B3d/dQQknh/P+vtBQKt/tpsnKGEOW4klkQFFvIsqwYzUJUvCts1wJl9gIruxT5hpLEyMBLKG+Z0ToJgrPLTDqOjyCxNN7mcahiaz50uDWsX0Fk+tKahKGJpX55qp1qpAsCY0lt5MdPUD2KoniowBRXn+f5Xp4RZDfCKg1W0D637P/iznn06w0M+083NZW9ZwAAAABJRU5ErkJggg==);
     1426}
     1427
     1428.wp-slider .ui-slider-handle.ui-state-active.left-handle {
     1429background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAARCAMAAAAMs7fIAAAAA3NCSVQICAjb4U/gAAAAzFBMVEXZ5ejU4eXM3ODG2NzE1tvB1Nq90deux86sxs2qxcynwsqlwcmjwMihvseevMWdvMSbusOXuMGTtb6IrbiHrLeCqbSBqLN/p7J3oa11oKxzn6tvnKhrmaZqmKVpmKVol6RllaJhk6Bej51djptaiZZZiJVYhpNWg5BUf4xSfYlRfIhPeYRMdYBKcXxFaXNDZnA+X2g9XmY8XGU4VV43VFw2U1s0UFgyTVQxS1IwSVAuR00sREosQ0orQkgqQEYpPkQoPkMoPUMoPUL///8pY4MvAAAARHRSTlP/////////////////////////////////////////////////////////////////////////////////////////AHHSjxIAAAAJcEhZcwAACusAAArrAYKLDVoAAAAUdEVYdENyZWF0aW9uIFRpbWUAMy85LzEzrdD8jAAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNui8sowAAACUSURBVBiVVctXEoJQEETRMaIo5qwF5hwxYOY9ev97EiQ43q+pUz2EYk9n5UElU0rpRO016toO79WhxlVysWqkroRgsswSjAsbnasgpGdsMk25gooZvR3K8CQxCuU9jH8FhZ3022rwJTZ4CK9nnwJBbiO8yVpFKDButm1bOn6iLFyZt5igeZLHOrhgfJ8k/yXTVoLrAxo1P5iCdUg7AAAAAElFTkSuQmCC);
     1430}
     1431
     1432.wp-slider .ui-slider-handle {
     1433        /* Slider drag Triangle CSS */
     1434background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAARCAMAAAAMs7fIAAAAA3NCSVQICAjb4U/gAAAA8FBMVEU2dZipwNBJl8VGmcX///+EpLlBgqpymrNFjru3ydNWiKs6eZzY4uuRrL08faPL3OZBjLSBqsCTssRHlMJEf59cj657o7xKl8OEqsE9gag2dJtEkb+ct8iZs8BHmMePq8BejKZAiK5llK5FjrlJl8c6dZdGl8avxdBJlcZ4nbc6ep6XrbpKgZ+Lqr5KmcdIkbqsws1Gk8E+f6c4dptaiadFirRKl8V8pblImcNIl8eGpruVscZCh7BMlsdIlcFImchEkbs9eJpCjbdGjbk8fJ84dp02dpo8gatMlsM2dps8faVAg61Ej71Ek75IksFIlcOaLCw7AAAAUHRSTlP/////AP///////////////////////////////////////////////////////////////////////////////////////////////////xB6m5UAAAAJcEhZcwAACxIAAAsSAdLdfvwAAAAUdEVYdENyZWF0aW9uIFRpbWUAMy85LzEzrdD8jAAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNui8sowAAACaSURBVBiVVcxZD8FAGIXhjxzUVktQgqKmo7ZYhkgsiS1tQuj//zeomo736uS5OFSo2W6UXc/R5hxXW5foxDlXqUKZx0GFZpXynuM4kXhjgjgyJkGzQIjpvi9Fx1uQ0iQUh4GkR/Ini0CQ2IfQ24YC4X8T+Mn0zj8lO1IgnqZpzlxE0m4YhrFsKYJVn126UGV+W1wHf4LdpByuF0goFKI7tv/dAAAAAElFTkSuQmCC);
     1435}
     1436
    13991437.wp-slider .ui-slider-handle.ui-state-hover,
    14001438.wp-slider .ui-slider-handle.ui-state-focus {
    1401         border-color: #aaa;
     1439        border-color: none;
     1440        outline: none;
    14021441}
    14031442
    14041443.wp-slider .ui-slider-handle.ui-state-active {
    1405         border-color: #aaa;
    1406         background: #eee;
    1407         background-image: -webkit-gradient(linear, left bottom, left top, from(#f9f9f9), to(#ececec));
    1408         background-image: -webkit-linear-gradient(bottom, #f9f9f9, #ececec);
    1409         background-image:    -moz-linear-gradient(bottom, #f9f9f9, #ececec);
    1410         background-image:      -o-linear-gradient(bottom, #f9f9f9, #ececec);
    1411         background-image: linear-gradient(to top, #f9f9f9, #ececec);
     1444        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAARCAMAAAAMs7fIAAAAA3NCSVQICAjb4U/gAAAA51BMVEUgZpDkzc0yd6f///8mcqFJm8cjbZZzr80mg78lh8BDk8UngLl+s9AmfKk4hrGeweBaoMhNlMORwt4nd6Zdm8BAjMEnf7RYmsMkb50mhsFWlsYhZ5ImhbwocZg0f61Lk8E9i7twqNBgo8VSmMUofLBcm8o3faUpfK8mh8Aia5MgZpFMmcgpeapDmcJjo8sliMEmh70nhLkkcKAqgLF2sc8sc5ojbZsngrMkh8EnfKw1eaUjbpkkapImeKQgaJAohb0mh8MmhcMng7kkcKEpf68iZ48haJMmhb8kicEmc6MibJkia5UnhLsw1mWvAAAATXRSTlP/AP8A/////////////////////////////////////////////////////////////////////////////////////////////////9/iR18AAAAJcEhZcwAACxIAAAsSAdLdfvwAAAAUdEVYdENyZWF0aW9uIFRpbWUAMy85LzEzrdD8jAAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNui8sowAAACaSURBVBiVVc15D8FAEIfh+Ymj6761LIrSiCNVVyjbRGgifP/PQ6q22/evyZPJDNXzD6G0qNDq5PtO3DJDFyfRpk+po2Eo0h5Qx9U0LRa3SejdlR2rDMLI41yKh6/AtOSzUiuU4kvemSMUDBsRXGuRIHj/CvCXyTNcSXelQBQYY1uBWMY651xfK4KzbdgzqJI73LK7hGC6r0bTB5apIhqIH/YIAAAAAElFTkSuQmCC);
    14121445}
    14131446
    14141447/* edit image */
  • wp-admin/css/wp-admin.css

     
    35823582        vertical-align: middle;
    35833583}
    35843584
     3585.diff-from-title,
     3586.diff-to-title {
     3587        font-size: 14px;
     3588        font-weight: bold;
     3589        width:60px;
     3590        text-align: right;
     3591        float: left;
     3592        margin-right: 5px;
     3593}
     3594
    35853595.revisiondiffcontainer {
    35863596        width: 96%;
    35873597}
     
    35903600        margin: 2px;
    35913601}
    35923602
    3593 #diffrestore,
    3594 #diffnext,
    3595 #diffcancel {
     3603#diffnext {
    35963604        float: right;
    35973605        margin-right: 5px;
    35983606}
    35993607
     3608#diffrestore input{
     3609        margin-left: 10px;
     3610}
     3611
    36003612#diffprevious,
    36013613#difftitle,
    36023614#difftitlefrom,
     
    36083620
    36093621#diffprevious,
    36103622#diffnext {
    3611         margin-top: 7px;
    36123623        height: 30px;
    36133624}
    36143625
     
    36203631#diffheader {
    36213632        border-bottom: 1px solid #dfdfdf;
    36223633        width: 100%;
    3623         height: 45px;
    3624         line-height: 45px;
    3625         padding-top: 10px;
     3634        height: 40px;
     3635        line-height: 40px;
     3636        padding-top: 30px;
    36263637}
    36273638
    3628 #diffsubheader {
    3629         border-bottom: 1px solid #dfdfdf;
     3639#diffsubheader,.diff-left-hand-meta-row {
    36303640        width: 100%;
    36313641        height:35px;
    36323642        line-height: 35px;
     3643        display: block;
    36333644}
    36343645
    3635 #diffslider {
     3646#diffslider{
    36363647        width: 70%;
    36373648        margin-left: auto;
    36383649        margin-right: auto;
    36393650        text-align: center;
    3640         height: 3.5em;
     3651        height: 0.8em;
     3652        margin-top: 20px;
    36413653}
    36423654
     3655.diff-slider-ticks-wrapper {
     3656        margin-left: auto;
     3657        margin-right: auto;
     3658        text-align: center;
     3659}
     3660
     3661#diff-slider-ticks {
     3662        position: absolute;
     3663        margin-top: 50px;
     3664        z-index: 1;
     3665}
     3666
    36433667#revisioncount {
    36443668        width: 50%;
    36453669        margin-left: auto;
     
    37073731
    37083732#comparetworevisions {
    37093733        float: right;
     3734        position: absolute;
     3735        top: 10px;
     3736        right: 10px;
    37103737        line-height: 35px;
    37113738        padding-right: 5px;
    37123739}
     
    37163743}
    37173744
    37183745#difftitle img,
    3719 #difftitlefrom img {
     3746#difftitlefrom img,
     3747.post-revisions li img {
    37203748        vertical-align: middle;
    37213749        margin-left: 5px;
    37223750}
     3751.post-revisions li {
     3752        vertical-align: middle;
     3753        height: 28px;
     3754}
    37233755
    37243756#showsplitviewoption,
    37253757#toggleshowautosavesoption {
     
    37423774.comparetwo #diffprevious,
    37433775.comparetwo #diffnext,
    37443776span#diff_left_current_revision,
    3745 span#diff_from_current_revision,
     3777#diff_from_current_revision,
    37463778.currentversion span#diff_left_count,
    37473779.currentversion span#diff_left_count_inner,
    3748 .currentversion #difftitlefrom,
    3749 .comparetwo.currentversion #difftitlefrom {
     3780.comparetwo.currentversion #diff_from_current_revision,
     3781#diffsubheader.diff-left-hand-meta-row {
    37503782        display: none;
    37513783}
    37523784
     
    37543786span#diff_left_count,
    37553787span#diff_left_count_inner,
    37563788.comparetwo #difftitlefrom,
    3757 .comparetwo.currentversion span#diff_from_current_revision,
    37583789.leftmodelloading #modelsloading,
    37593790.rightmodelloading #modelsloading,
    37603791.leftmodelloading #modelsloading .spinner,
    37613792.rightmodelloading #modelsloading .spinner,
    3762 {
    3763         display: inline;
     3793.comparetwo #diffsubheader.diff-left-hand-meta-row {
     3794        display: block;
    37643795}
    37653796
     3797.revision-tick {
     3798        width: 1px;
     3799        float: left;
     3800        margin-right: 15px;
     3801        height: 11px;
     3802        padding: 0;
     3803        margin-left: 0px;
     3804}
     3805
     3806.revision-tick.revision-scopeofchanges-vsmall {
     3807                width: 1px;
     3808                background-color: #aaa;
     3809}
     3810
     3811.revision-tick.revision-scopeofchanges-small {
     3812                width: 2px;
     3813                background-color: #aaa;
     3814                margin-left: -1px;
     3815}
     3816
     3817.revision-tick.revision-scopeofchanges-med {
     3818                width: 3px;
     3819                margin-left: -2px;
     3820                background-color: #666;
     3821}
     3822
     3823.revision-tick.revision-scopeofchanges-large {
     3824                width: 4px;
     3825                margin-left: -3px;
     3826                background-color: #333;
     3827}
     3828
     3829.revision-tick.revision-scopeofchanges-vlarge {
     3830                margin-left: -3px;
     3831                width: 4px;
     3832                background-color: #111;
     3833                left: 1;
     3834}
     3835
    37663836.diff-loading {
    37673837        margin-top: 50px;
    37683838        width: 100%;
     
    37773847        float: none;
    37783848}
    37793849
    3780 #difftitlefrom {
    3781         float: left;
    3782         display: none;
    3783 }
    3784 
    37853850#modelsloading {
    37863851        float: right;
     3852        position: absolute;
    37873853        line-height: 30px;
    37883854        display: none;
    37893855        clear: none;
    3790         margin: 0;
     3856        right: 170px;
    37913857        margin-top: -40px;
    37923858}
    37933859
    37943860#modelsloading .spinner {
    37953861        float: left;
    3796  }
     3862}
    37973863
     3864.ui-tooltip-content img {
     3865        float: left;
     3866        margin-right: 5px;
     3867}
     3868
     3869
     3870
     3871/*  jQuery UI Tooltip 1.10.1 */
     3872
     3873.ui-tooltip {
     3874        padding: 8px;
     3875        position: absolute;
     3876        z-index: 9999;
     3877        max-width: 300px;
     3878        min-width: 130px;
     3879}
     3880
     3881body .ui-tooltip {
     3882        border-width: 1px;
     3883}
     3884
     3885.ui-tooltip, .arrow:after {
     3886        border: 1px solid #d7d7d7;
     3887}
     3888
     3889.ui-tooltip {
     3890        padding: 5px 10px;
     3891}
     3892
     3893.arrow {
     3894        width: 70px;
     3895        height: 16px;
     3896        overflow: hidden;
     3897        position: absolute;
     3898        left: 50%;
     3899        margin-left: -35px;
     3900        bottom: -16px;
     3901        z-index: 99999;
     3902
     3903}
     3904
     3905.arrow.top {
     3906        top: -16px;
     3907        bottom: auto;
     3908}
     3909
     3910.arrow.left {
     3911        left: 20%;
     3912}
     3913
     3914.arrow:after {
     3915        content: "";
     3916        position: absolute;
     3917        left: 20px;
     3918        top: -20px;
     3919        width: 25px;
     3920        height: 25px;
     3921        background-color: #FFF;
     3922        -webkit-transform: rotate(45deg);
     3923        -moz-transform: rotate(45deg);
     3924        -ms-transform: rotate(45deg);
     3925        -o-transform: rotate(45deg);
     3926        tranform: rotate(45deg);
     3927}
     3928
     3929.arrow.top:after {
     3930        bottom: -20px;
     3931        top: auto;
     3932}
     3933
    37983934 /* jQuery UI Slider */
    37993935
    38003936.wp-slider.ui-slider {
     
    38093945.wp-slider .ui-slider-handle {
    38103946        position: absolute;
    38113947        z-index: 2;
    3812         width: 1.2em;
    3813         height: 1.2em;
    3814         border-width: 1px;
    3815         border-style: solid;
    3816         border-radius: 3px;
     3948        width: 17px;
     3949        height: 17px;
     3950        border: none;
    38173951}
    38183952
    38193953.wp-slider .ui-slider-range {