Make WordPress Core

Ticket #23497: 23497.24.diff

File 23497.24.diff, 52.5 KB (added by adamsilverstein, 12 years ago)

bug fixes

  • wp-includes/post-template.php

     
    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 ) )
    13171317                $date = "<a href='$link'>$date</a>";
    1318        
     1318
    13191319        $revision_date_author = sprintf(
    13201320                '%s %s, %s %s (%s)',
    13211321                $gravatar,
     
    13931393        if ( $parent )
    13941394                array_unshift( $revisions, $post );
    13951395
     1396        //if ( wp_first_revision_matches_current_version( $post_id ) )
     1397                array_pop( $revisions );
     1398
    13961399        $rows = $right_checked = '';
    13971400        $class = false;
    13981401        $can_edit_post = current_user_can( 'edit_post', $post->ID );
     
    14791482                // if the post was previously restored from a revision
    14801483                // show the restore event details
    14811484                //
    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                         ?> 
     1485                if ( $restored_from_meta = get_post_meta( $post->ID, '_post_restored_from', true ) ) {
     1486                        $author = get_the_author_meta( 'display_name', $restored_from_meta[ 'restored_by_user' ] );
     1487                        /* translators: revision date format, see http://php.net/date */
     1488                        $datef = _x( 'j F, Y @ G:i:s', 'revision date format');
     1489                        $date = date_i18n( $datef, strtotime( $restored_from_meta[ 'restored_time' ] ) );
     1490                        $timesince = human_time_diff( $restored_from_meta[ 'restored_time' ], current_time( 'timestamp' ) ) . __( ' ago ' );
     1491                        ?>
    14891492                        <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 
     1493                        <div id="revisions-meta-restored">
     1494                                <?php
     1495                                printf( 'Previously restored from Revision ID %d, %s by %s (%s)',
     1496                                $restored_from_meta[ 'restored_revision_id'],
     1497                                $timesince,
     1498                                $author,
     1499                                $date );
     1500                                ?>
     1501                        </div>
     1502                        <?php
    15001503                echo "</ul>";
    1501                 } 
     1504                }
    15021505
    15031506        endif;
    15041507
  • 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;
     
    418438                add_filter('the_preview', '_set_preview');
    419439        }
    420440}
     441
     442/**
     443 * Determines if the specified post's most recent revision matches the post (by checking post_modified).
     444 *
     445 * @package WordPress
     446 * @subpackage Post_Revisions
     447 * @since 3.6.0
     448 *
     449 * @param int|object $post Post ID or post object.
     450 * @return bool false if not a match, otherwise true.
     451 */
     452function wp_first_revision_matches_current_version( $post ) {
     453
     454        if ( ! $post = get_post( $post ) )
     455                return false;
     456
     457        if ( ! $revisions = wp_get_post_revisions( $post->ID ) )
     458                return false;
     459
     460        $last_revision = array_shift( $revisions );
     461
     462        if ( ! ($last_revision->post_modified == $post->post_modified ) )
     463                return false;
     464
     465        return true;
     466}
  • 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

     
    21582158        /* translators: revision date format, see http://php.net/date */
    21592159        $datef = _x( 'j F, Y @ G:i:s', 'revision date format');
    21602160
     2161        $left_revision = get_post( $compare_to );
     2162        //error_log($left_revision);
    21612163        //single model fetch mode
     2164        //return the diff of a single revision comparison
    21622165        if ( 0 != $single_revision_id ) {
    2163                 $left_revision = get_post( $compare_to );
    21642166                $right_revision = get_post( $single_revision_id );
    21652167
    2166                 if ( $compare_two_mode ) {
    2167                         $compare_to_gravatar = get_avatar( $left_revision->post_author, 18 );
    2168                         $compare_to_author = get_the_author_meta( 'display_name', $left_revision->post_author );
    2169                         $compare_to_date = date_i18n( $datef, strtotime( $left_revision->post_modified ) );
    2170 
    2171                         $revision_from_date_author = sprintf(
    2172                                 '%s %s, %s %s (%s)',
    2173                                 $compare_to_gravatar,
    2174                                 $compare_to_author,
    2175                                 human_time_diff( strtotime( $left_revision->post_modified ), current_time( 'timestamp' ) ),
    2176                                 __( ' ago ' ),
    2177                                 $compare_to_date
    2178                         );
    2179                 }
    2180 
    21812168                //
    21822169                //make sure the left revision is the most recent
    21832170                //
     
    21872174                        $right_revision = $temp;
    21882175                }
    21892176
     2177                $linesadded=0;
     2178                $linesdeleted=0;
     2179
    21902180                //
    21912181                //compare from left to right, passed from application
    21922182                //
     
    22022192                        if ( ! empty( $show_split_view ) )
    22032193                                 $args = array( 'show_split_view' => true );
    22042194
    2205                         $content .= wp_text_diff( $left_content, $right_content, $args );
     2195                        $diff = wp_text_diff_with_count( $left_content, $right_content, $args );
     2196
     2197                        if ( isset( $diff[ 'html' ] ) )
     2198                                $content .= $diff[ 'html' ];
     2199
     2200                        if ( isset( $diff[ 'linesadded' ] ) )
     2201                                $linesadded = $linesadded + $diff[ 'linesadded' ];
     2202
     2203                        if ( isset( $diff[ 'linesdeleted' ] ) )
     2204                                $linesdeleted = $linesdeleted + $diff[ 'linesdeleted' ];
     2205
     2206
    22062207                }
    2207                         $content = '' == $content ? __( 'No difference' ) : $content;
    2208                         $alltherevisions = array (
    2209                                 'revisiondiff' => $content
    2210                         );
     2208                $content = '' == $content ? __( 'No difference' ) : $content;
     2209
     2210                $alltherevisions = array (
     2211                        'revisiondiff' => $content,
     2212                        'lines_deleted' => $linesdeleted,
     2213                        'lines_added' => $linesadded
     2214                );
    22112215                echo json_encode( $alltherevisions );
    22122216                exit();
    2213         }
     2217        } //end single model fetch
    22142218
     2219        //fetch the list of revisions available
     2220
    22152221        //if we are comparing two revisions, the first 'revision' represented by the leftmost
    22162222        //slider position is the current revision, prepend a comparison to this revision
    2217         if ( $compare_two_mode )
     2223        if ( $compare_two_mode && ! wp_first_revision_matches_current_version( $post_id ) ) //revisions don't have current version
    22182224                array_unshift( $revisions, get_post( $post_id ) );
    2219                
     2225
     2226if ( $compare_two_mode) // && wp_first_revision_matches_current_version( $post_id ) ) //revisions already include current version
     2227                array_shift( $revisions ); //remove the extra current revisions (comparing to current in one handle mode)
     2228
     2229
    22202230        $count = -1;
    22212231
     2232        //reverse the list to start with oldes revision
     2233        $revisions = array_reverse( $revisions );
     2234
     2235        $previous_revision_id = 0;
    22222236        foreach ( $revisions as $revision ) :
    2223                 if ( ! empty( $show_autosaves ) && wp_is_post_autosave( $revision ) )
     2237                //error_log( ( $show_autosaves  ));
     2238                if ( empty( $show_autosaves ) && wp_is_post_autosave( $revision ) )
    22242239                                continue;
    22252240
    22262241                $revision_from_date_author = '';
    22272242                $count++;
    22282243                // return blank data for diffs to the left of the left handle (for right handel model)
    22292244                // or to the right of the right handle (for left handel model)
    2230                 if ( ( 0 != $left_handle_at && $count <= $left_handle_at ) || 
    2231                          ( 0 != $right_handle_at && $count > $right_handle_at )) { 
     2245                if ( ( 0 != $left_handle_at && $count <= $left_handle_at ) ||
     2246                         ( 0 != $right_handle_at && $count > $right_handle_at )) {
    22322247                        $alltherevisions[] = array (
    22332248                                'ID' => $revision->ID,
    22342249                        );
    2235                        
    22362250                        continue;
    22372251                }
    22382252
    2239                 $gravatar = get_avatar( $revision->post_author, 18 );
     2253                if ( $compare_two_mode ) {
     2254                        $compare_to_gravatar = get_avatar( $left_revision->post_author, 24 );
     2255                        $compare_to_author = get_the_author_meta( 'display_name', $left_revision->post_author );
     2256                        $compare_to_date = date_i18n( $datef, strtotime( $left_revision->post_modified ) );
     2257
     2258                        $revision_from_date_author = sprintf(
     2259                                '%s %s, %s %s (%s)',
     2260                                $compare_to_gravatar,
     2261                                $compare_to_author,
     2262                                human_time_diff( strtotime( $left_revision->post_modified ), current_time( 'timestamp' ) ),
     2263                                __( ' ago ' ),
     2264                                $compare_to_date
     2265                        );
     2266                }
     2267
     2268                $gravatar = get_avatar( $revision->post_author, 24 );
    22402269                $author = get_the_author_meta( 'display_name', $revision->post_author );
    22412270                $date = date_i18n( $datef, strtotime( $revision->post_modified ) );
    22422271                $revision_date_author = sprintf(
     
    22472276                        __( ' ago ' ),
    22482277                        $date
    22492278                );
     2279                $datef2 = __( 'j M @ G:i' );
     2280                $date2 = date_i18n( $datef2, strtotime( $revision->post_modified ) );
    22502281
     2282                $revision_date_author_short = sprintf(
     2283                        '%s <strong>%s</strong><br />%s',
     2284                        $gravatar,
     2285                        $author,
     2286                        $date2
     2287                );
     2288
    22512289                $restoreaction = wp_nonce_url(
    22522290                        add_query_arg(
    22532291                                array( 'revision' => $revision->ID,
     
    22572295                        "restore-post_{$compare_to}|{$revision->ID}"
    22582296                );
    22592297
    2260                 $alltherevisions[] = array (
     2298                if ( ( $compare_two_mode || 0 !== $previous_revision_id ) ) {
     2299                        $alltherevisions[] = array (
    22612300                                'ID' => $revision->ID,
    22622301                                'revision_date_author' => $revision_date_author,
    22632302                                'revision_from_date_author' => $revision_from_date_author,
     2303                                'revision_date_author_short' => $revision_date_author_short,
    22642304                                'restoreaction' => urldecode( $restoreaction ),
    2265                                 'revision_toload' => true
     2305                                'revision_toload' => true,
     2306                                'previous_revision_id' => $previous_revision_id
    22662307                        );
     2308                }
     2309                $previous_revision_id = $revision->ID;
    22672310
    22682311        endforeach;
    22692312
  • 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                        _keep_tooltip_open : 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 );
    139201                                self._left_handle_revisions.url =
    140202                                        ajaxurl +
    141203                                        '?action=revisions-data&compare_to=' + self._revisions.at( self._right_diff - 1 ).get( 'ID' ) +
    142204                                        '&post_id=' + wpRevisionsSettings.post_id +
    143                                         '&show_autosaves=' + self._autosaves +
    144                                         '&show_split_view=' +  self._show_split_view +
     205                                        '&show_autosaves=' + REVAPP._autosaves +
     206                                        '&show_split_view=' +  REVAPP._show_split_view +
    145207                                        '&nonce=' + wpRevisionsSettings.nonce +
    146208                                        '&right_handle_at='  + ( self._right_diff );
    147209
     
    150212                                        success : function(){
    151213                                                self.stop_left_model_loading();
    152214                                                self.reload_toload_revisions( self._left_handle_revisions );
     215                                                self._tickmarkView.model = self._left_handle_revisions;
     216                                                $( '#slider' ).slider( 'option', 'max', self._revisions.length );
    153217                                        },
    154218
    155219                                        error : function () {
     
    163227                                var self = this;
    164228                                self.start_right_model_loading();
    165229                                self._right_handle_revisions = new wp.revisions.Collection();
    166                                 if ( 0 === self._left_diff ) {
    167230                                        self._right_handle_revisions.url =
    168231                                                ajaxurl +
    169                                                 '?action=revisions-data&compare_to=' + wpRevisionsSettings.post_id +
     232                                                '?action=revisions-data&compare_to=' + self._revisions.at( self._left_diff ).get( 'ID' )+
    170233                                                '&post_id=' + wpRevisionsSettings.post_id +
    171                                                 '&show_autosaves=' + self._autosaves +
    172                                                 '&show_split_view=' +  self._show_split_view +
     234                                                '&show_autosaves=' + REVAPP._autosaves +
     235                                                '&show_split_view=' +  REVAPP._show_split_view +
    173236                                                '&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                                 }
    184237
    185238                                self._right_handle_revisions.fetch({
    186239
    187240                                        success : function(){
    188241                                                self.stop_right_model_loading();
    189242                                                self.reload_toload_revisions( self._right_handle_revisions );
     243                                                self._tickmarkView.model = self._right_handle_revisions;
     244                                                $( '#slider' ).slider( 'option', 'max', self._revisions.length );
     245                                                //REVAPP._revisionView.render();
     246
    190247                                        },
    191248
    192249                                        error : function ( response ) {
     
    208265                        initialize : function( options ) {
    209266                                var self = this; //store the application instance
    210267                                if (this._revisions === null) {
    211                                         self._autosaves = '';
    212268                                        self._revisions = new wp.revisions.Collection(); //set up collection
    213269                                        self.start_right_model_loading();
    214270                                        self._revisions.fetch({ //load revision data
    215271
    216272                                                success : function() {
    217273                                                        self.stop_right_model_loading();
    218                                                         self.revisionDiffSetup();
     274                                                        self.completeApplicationSetup();
    219275                                                }
    220276                                        });
    221277                                }
    222278                                return this;
    223279                        },
    224280
    225                         revisionDiffSetup : function() {
     281                        completeApplicationSetup : function() {
    226282                                this._revisionView = new wp.revisions.views.View({
    227283                                        model : this._revisions
    228284                                });
    229285                                this._revisionView.render();
    230                                 $( '#diff_max, #diff_maxof' ).html( this._revisions.length );
    231                                 $( '#diff_count' ).html( REVAPP._right_diff );
    232286                                $( '#slider' ).slider( 'option', 'max', this._revisions.length - 1 );
    233287
    234288                                this.reload_toload_revisions( this._revisions );
     289
    235290                                this._revisionsInteractions = new wp.revisions.views.Interact({
    236291                                        model : this._revisions
    237292                                });
    238293                                this._revisionsInteractions.render();
    239294
     295                                this._tickmarkView = new wp.revisions.views.Tickmarks({
     296                                        model : this._revisions
     297                                });
     298                                this._tickmarkView.render();
     299                                this._tickmarkView.resetticks();
     300
     301                                $( 'a.ui-slider-handle' ).attr( 'title', '' ).tooltip({
     302                                        track: false,
     303                                        position: {
     304                                                my: "top-80",
     305                                                active: function( position, feedback ) {
     306                                                        $( this ).css( position );
     307                                                        $( "<div>" )
     308                                                        .addClass( "arrow" )
     309                                                        .addClass( feedback.vertical )
     310                                                        .addClass( feedback.horizontal )
     311                                                        .appendTo( this );
     312                                                }
     313                                        },
     314                                        show: false,
     315                                        hide: false,
     316                                        disabled: false
     317                                } );
    240318                                /*
     319                                .on( 'mouseup', function( event ) {
     320                                        REVAPP._keep_tooltip_open = false;
     321                                        $( this ).find('.ui-slider-tooltip').hide();
     322                                } ).on( 'mousedown', function( event ) {
     323                                        REVAPP._keep_tooltip_open = true;
     324                                } ).on( 'mouseout', function( event ) {
     325                                        if ( REVAPP._keep_tooltip_open)
     326                                                event.stopImmediatePropagation();
     327                                        });
     328                                */
     329                                /*
    241330                                //Options hidden for now, moving to screen options
    242331                                this._revisionsOptions = new wp.revisions.views.Options({
    243332                                        model : this._revisions
     
    252341        wp.revisions.Collection = Backbone.Collection.extend({
    253342                model : wp.revisions.Model,
    254343                url : ajaxurl + '?action=revisions-data&compare_to=' + wpRevisionsSettings.post_id +
    255                         '&show_autosaves=false&show_split_view=true&nonce=' + wpRevisionsSettings.nonce,
     344                        '&show_autosaves=true&show_split_view=true&nonce=' + wpRevisionsSettings.nonce,
    256345
    257346                initialize : function() {
    258347                        }
    259348        } );
    260349
    261350        _.extend(wp.revisions.views, {
     351
     352                //Ticks inside slider view
    262353                //
     354                Tickmarks : Backbone.View.extend({
     355                        el : $('#diff-slider-ticks')[0],
     356                        tagName : 'diff-slider-ticks-view',
     357                        className : 'diff-slider-ticks-container',
     358                        template : wp.template('revision-ticks'),
     359                        model : wp.revisions.Model,
     360
     361                        resetticks : function() {
     362                                var slider_max = $( '#slider' ).slider( 'option', 'max');
     363                                var slider_width = $( '#slider' ).width();
     364                                var adjust_max = ( 2 === REVAPP._compareoneortwo ) ? 1 : 0;
     365                                var tick_width = Math.floor( slider_width / ( slider_max - adjust_max ) );
     366
     367                                //TODO: adjust right margins for wider ticks so they stay centered on handle stop point
     368
     369                                tick_width = (tick_width > 50 ) ? 50 : tick_width;
     370                                slider_width = tick_width * (slider_max - adjust_max ) +1;
     371
     372                                $( '#slider' ).width( slider_width );
     373                                $( '.diff-slider-ticks-wrapper' ).width( slider_width );
     374                                $( '#diffslider' ).width( slider_width );
     375                                $( '#diff-slider-ticks' ).width( slider_width );
     376
     377                                var a_tick_width = $( '.revision-tick' ).width();
     378
     379                                if ( tick_width !==  a_tick_width ) { // is the width already set correctly?
     380                                        $( '.revision-tick' ).each( function( ) {
     381                                                $(this).css( 'margin-right', tick_width - 1 + 'px'); //space the ticks out using right margin
     382                                        });
     383
     384                                        if( 2 === REVAPP._compareoneortwo ) {
     385                                                $( '.revision-tick' ).first().remove(); //TODO - remove thie check
     386                                        }
     387                                        $( '.revision-tick' ).last().css( 'margin-right', '0' ); // last tick gets no right margin
     388                                }
     389
     390                        },
     391
     392                        //render the options view
     393                        render : function() {
     394                                var self = this;
     395
     396                                if ( null !== self.model ) {
     397                                        //TODO remove this initial model when ticket #16215 rolls because
     398                                        //revisions will then include current version
     399                                        var add_placeholder = ( 2 === REVAPP._compareoneortwo ) ? self.template('') : '';
     400
     401                                        var addhtml = "";//add_placeholder;
     402                                        _.each ( self.model.models, function ( the_model ) {
     403
     404                                                addhtml = addhtml + self.template ( the_model.toJSON() );
     405
     406                                        });
     407                                        self.$el.html( addhtml );
     408
     409                                }
     410                                self.resetticks();
     411                                return self;
     412                        }
     413                }),
     414
     415                //
    263416                //primary revision diff view
    264417                //
    265418                View : Backbone.View.extend({
     
    271424                        comparetwochecked : '',
    272425                        draggingleft : false,
    273426
    274                         initialize : function(){
    275                         },
    276 
    277427                        //
    278428                        //render the revisions
    279429                        //
    280430                        render : function() {
    281431                                var addhtml = '';
    282432                                //compare two revisions mode?
     433
    283434                                if ( 2 === REVAPP._compareoneortwo ) {
    284435                                        this.comparetwochecked = 'checked';
    285436                                        if ( this.draggingleft ) {
     
    291442                                                }
    292443                                        } else { //dragging right handle
    293444                                                var thediff = REVAPP._right_diff;
     445                                                //console.log( thediff )
    294446                                                if ( this.model.at( thediff ) ) {
    295447                                                        addhtml = this.template( _.extend(
    296448                                                                this.model.at( thediff ).toJSON(),
     
    310462                                this.$el.html( addhtml );
    311463                                if ( this.model.length < 3 ) {
    312464                                        $( 'div#comparetworevisions' ).hide(); //don't allow compare two if fewer than three revisions
    313 
    314465                                }
     466                                if ( this.model.length < 2 ) {
     467                                        $( 'div#diffslider' ).hide(); //don't allow compare two if fewer than three revisions
     468                                        $( 'div.diff-slider-ticks-wrapper' ).hide();
     469                                }
    315470                                //console.log ( (this.model.at( REVAPP._right_diff - 1 )).url());
    316471                                return this;
    317472                        },
     
    336491                                        REVAPP.reloadmodelsingle();
    337492                                }
    338493                                REVAPP._revisionsInteractions.render();
     494                                REVAPP._tickmarkView.render();
     495                                REVAPP._revisionView.render();
     496
    339497                        }
    340498                }),
    341499
    342500                //
    343501                //options view for show autosaves and show split view options
    344502                //
     503                /* DISABLED for now
    345504                Options : Backbone.View.extend({
    346505                        el : $('#backbonerevisionsoptions')[0],
    347506                        tagName : 'revisionoptionsview',
    348507                        className : 'revisionoptions-container',
    349508                        template : wp.template('revisionoptions'),
    350509
    351                         initialize : function() {
    352                         },
    353 
    354510                        //render the options view
    355511                        render : function() {
    356512                                var addhtml = this.template;
     
    396552                                REVAPP.reloadmodel();
    397553                        }
    398554                }),
    399 
     555                */
    400556                //
    401557                //main interactions view
    402558                //
     
    405561                        tagName : 'revisionvinteract',
    406562                        className : 'revisionvinteract-container',
    407563                        template : wp.template('revisionvinteract'),
    408                         _restoreword : '',
    409564
    410565                        initialize : function() {
    411                                 this._restoreword = $( 'input#restore' ).attr( 'value' );
    412566                        },
    413567
    414                         reset_restore_button : function() {
    415                                 $( 'input#restore' ).attr( 'value', this._restoreword + ' ' + REVAPP._revisions.at( REVAPP._right_diff - 1 ).get( 'ID' ) );
    416                         },
    417 
    418568                        render : function() {
    419569                                var self = this;
    420570
    421571                                var addhtml = this.template;
    422572                                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();
    427573
    428574                                var modelcount = REVAPP._revisions.length;
    429575
     
    431577                                if ( 1 === REVAPP._compareoneortwo ) {
    432578                                        //set up the slider with a single handle
    433579                                        slider.slider({
    434                                                 value : REVAPP._right_diff-1,
    435                                                 min : 0,
    436                                                 max : modelcount-1,
    437                                                 step : 1,
     580                                                value: REVAPP._right_diff-1,
     581                                                min: 0,
     582                                                max: modelcount-1,
     583                                                step: 1,
    438584
     585
    439586                                                //slide interactions for one handles slider
    440587                                                slide : function( event, ui ) {
    441                                                         if ( REVAPP._right_model_loading ) //left model stoll loading, prevent sliding left handle
    442                                                                                 return false;
    443588
    444                                                         REVAPP._right_diff =( ui.value+1 );
    445                                                         $( '#diff_count' ).html( REVAPP._right_diff );
     589                                                        REVAPP._right_diff = ( ui.value +1 );
    446590                                                        REVAPP._revisionView.render();
    447                                                         self.reset_restore_button();
    448                                                 }
     591                                                        /*
     592                                                        $( 'a.ui-slider-handle' ).tooltip( {
     593                                                                content: REVAPP._revisions.at( ui.value ).get( 'revision_date_author_short' ),
     594                                                                position: {
     595                                                                my: "top-65",
     596                                                                using: function( position, feedback ) {
     597                                                                        $( this ).css( position );
     598                                                                        $( "<div>" )
     599                                                                        .addClass( "arrow" )
     600                                                                        .addClass( feedback.vertical )
     601                                                                        .addClass( feedback.horizontal )
     602                                                                        .appendTo( this );
     603                                                                        }
     604                                                                }
     605                                                        });//.trigger( 'close' ).trigger( 'open' );
     606*/
     607                                                        }
    449608                                        });
    450609                                        $( '.revisiondiffcontainer' ).removeClass( 'comparetwo' );
     610
    451611                                } else { //comparing more than one, eg 2
    452612                                        //set up the slider with two handles
    453613                                        slider.slider({
     
    467627                                                                                return false;
    468628
    469629                                                                        if ( REVAPP._revisionView.model !== REVAPP._left_handle_revisions &&
    470                                                                                         null !== REVAPP._left_handle_revisions )
     630                                                                                        null !== REVAPP._left_handle_revisions ) {
    471631                                                                                REVAPP._revisionView.model = REVAPP._left_handle_revisions;
    472 
     632                                                                                REVAPP._tickmarkView.model = REVAPP._left_handle_revisions;
     633                                                                                REVAPP._tickmarkView.render();
     634                                                                        }
    473635                                                                        REVAPP._revisionView.draggingleft = true;
    474636                                                                        REVAPP._left_diff_start = ui.values[ 0 ];
    475637                                                                        break;
    476638
    477639                                                                case 2: //right
    478                                                                         if ( REVAPP._right_model_loading ) //right model stoll loading, prevent sliding right handle
     640                                                                        if ( REVAPP._right_model_loading ) //left model stoll loading, prevent sliding left handle
    479641                                                                                return false;
    480642
    481643                                                                        //one extra spot at left end when comparing two
    482644                                                                        if ( REVAPP._revisionView.model !== REVAPP._right_handle_revisions &&
    483                                                                                         null !== REVAPP._right_handle_revisions )
     645                                                                                        null !== REVAPP._right_handle_revisions ) {
    484646                                                                                REVAPP._revisionView.model = REVAPP._right_handle_revisions;
     647                                                                                REVAPP._tickmarkView.model = REVAPP._right_handle_revisions;
     648                                                                                REVAPP._tickmarkView.render();
     649                                                                        }
    485650
    486651                                                                        REVAPP._revisionView.draggingleft = false;
    487652                                                                        REVAPP._right_diff_start = ui.values[ 1 ];
     
    501666                                                                        if ( REVAPP._left_model_loading ) //left model still loading, prevent sliding left handle
    502667                                                                                return false;
    503668
    504                                                                         REVAPP._left_diff = ui.values[ 0 ] - 1; //one extra spot at left end when comparing two
     669                                                                        REVAPP._left_diff = ui.values[ 0 ]; //one extra spot at left end when comparing two
    505670                                                                        break;
    506671
    507672                                                                case 2: //right
    508                                                                         if ( REVAPP._right_model_loading ) //right model still loading, prevent sliding right handle
    509                                                                                 return false;
     673                                                                        REVAPP._right_diff = ui.values[ 1 ];
     674                                                                        //console.log('setting ' + REVAPP._right_diff );
    510675
    511                                                                         REVAPP._right_diff = ui.values[ 1 ] - 1 ;
    512676                                                                        break;
    513677                                                        }
    514678
    515                                                         $( '#diff_count' ).html( REVAPP._right_diff );
    516 
    517679                                                        if ( 0 === REVAPP._left_diff ) {
    518680                                                                $( '.revisiondiffcontainer' ).addClass( 'currentversion' );
    519681
    520682                                                        } else {
    521683                                                                $( '.revisiondiffcontainer' ).removeClass( 'currentversion' );
    522                                                                 $( '#diff_left_count_inner' ).html( REVAPP._left_diff );
    523684                                                        }
    524685
    525                                                         REVAPP._revisionView.render(); //render the diff view
    526                                                         self.reset_restore_button();
     686                                                        REVAPP._revisionView.render();
     687
    527688                                                },
    528689
    529690                                                //when the user stops sliding  in 2 handle mode, recalculate diffs
     
    537698                                                                switch ( index ) {
    538699                                                                        case 1: //left
    539700                                                                                //left handle dragged & changed, reload right handle model
    540                                                                                 if ( ! ( REVAPP._left_diff_start === ui.values[ 0 ] || REVAPP._left_model_loading ) )
     701                                                                                if ( REVAPP._left_diff_start !== ui.values[ 0 ] )
    541702                                                                                        REVAPP.reloadright();
    542703
    543704                                                                                break;
    544705
    545706                                                                        case 2: //right
    546707                                                                                //right handle dragged & changed, reload left handle model if changed
    547                                                                                 if ( ! ( REVAPP._right_diff_start === ui.values[ 1 ] || REVAPP._right_model_loading ) ) {
     708                                                                                if ( REVAPP._right_diff_start !== ui.values[ 1 ] )
    548709                                                                                        REVAPP.reloadleft();
    549                                                                                 }
     710
    550711                                                                                break;
    551712                                                                }
    552713                                                        }
     
    571732
    572733                                REVAPP._revisionView.render();
    573734
    574                                 $( '#diff_count' ).html( REVAPP._right_diff );
    575735                                $( '#slider' ).slider( 'value', REVAPP._right_diff - 1 ).trigger( 'slide' );
    576                                 this.reset_restore_button();
    577736                        },
    578737
    579738                        //go the the previous revision
     
    583742
    584743                                REVAPP._revisionView.render();
    585744
    586                                 $( '#diff_count' ).html( REVAPP._right_diff );
    587745                                $( '#slider' ).slider( 'value', REVAPP._right_diff - 1 ).trigger( 'slide' );
    588                                 this.reset_restore_button();
    589746                        }
    590747                })
    591748        });
  • wp-admin/revision.php

     
    8080        $parent_file = $submenu_file = 'edit.php?post_type=' . $post->post_type;
    8181else
    8282        $parent_file = $submenu_file = 'edit.php';
    83 
    8483wp_enqueue_script( 'revisions' );
    8584
    8685require_once( './admin-header.php' );
    8786
    8887//TODO - Some of the translations below split things into multiple strings that are contextually related and this makes it pretty impossible for RTL translation.
    8988//TODO can we pass the context in a better way
     89$wpRevisionsSettings = array( 'post_id' => $post->ID,
     90                                                'nonce' => wp_create_nonce( 'revisions-ajax-nonce' ),
     91                                                'revision_id' => $revision_id );
     92wp_localize_script( 'revisions', 'wpRevisionsSettings', $wpRevisionsSettings );
     93
     94$comparetworevisionslink = get_edit_post_link( $revision->ID );
    9095?>
    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 ?>
    9796
    98 <div id="backbonerevisionsoptions"></div>
     97<div id="backbonerevisionsoptions">
     98</div>
    9999<div class="wrap">
    100         <div class="icon32 icon32-posts-post" id="icon-edit"><br></div>
     100        <div class="icon32 icon32-posts-post" id="icon-edit">
     101                <br>
     102        </div>
    101103        <div class="revisiondiffcontainer diffsplit currentversion rightmodelloading">
    102                 <div id="modelsloading" class="updated message"><span class="spinner" ></span> <?php _e( 'Calculating revision diffs' ); ?></div>
     104                <div id="modelsloading" class="updated message">
     105                        <span class="spinner" ></span> <?php _e( 'Calculating revision diffs' ); ?>
     106                </div>
    103107                <h2 class="long-header"><?php echo $h2; ?></h2>
    104                 <div id="backbonerevisionsinteract"></div>
    105                 <div id="backbonerevisionsdiff"></div>
     108                <div class="diff-slider-ticks-wrapper">
     109                        <div id="diff-slider-ticks">
     110                        </div>
     111                </div>
     112                <div id="backbonerevisionsinteract">
     113                </div>
     114                <div id="backbonerevisionsdiff">
     115                </div>
    106116                <hr />
    107117        </div>
    108118</div>
    109119
    110120<script id="tmpl-revision" type="text/html">
     121        <div id="diffsubheader" class="diff-left-hand-meta-row">
     122                <div id="diff_from_current_revision">
     123                        <b><?php _e( 'Comparing from:' ); ?></b> <?php _e( 'the current version' ); ?>
     124                </div>
     125                <div id="difftitlefrom"><b><?php _e( 'Comparing from:' ); ?></b> <?php _e( 'revision by' ); ?> {{{ data.revision_from_date_author }}} </div>
     126        </div>
     127
    111128        <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>
     129                <div id="difftitle">
     130                        <strong><?php _e( 'Comparing to:' ); ?></strong> <?php _e( 'revision by' ); ?> {{{ data.revision_date_author }}}
     131                </div>
     132                <div id="diffrestore">
     133                        <input class="button button-primary" onClick="document.location='{{{ data.restoreaction }}}'" type="submit" id="restore" value="<?php esc_attr_e( 'Restore This Revision' )?>" />
     134                </div>
     135                <div id="comparetworevisions">
     136                        <input type="checkbox" id="comparetwo" value="comparetwo" {{{ data.comparetwochecked }}} name="comparetwo"/>
     137                                <label for="comparetwo"><?php esc_attr_e( 'Compare two revisions' ); ?></a></label>
     138                </div>
     139        </div>
     140
    118141        <div id="removedandadded">
    119142                <div id="removed"><?php _e( 'Removed -' ); ?></div>
    120143                <div id="added"><?php _e( 'Added +' ); ?></div>
     
    124147
    125148<script id="tmpl-revisionvinteract" type="text/html">
    126149        <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>
     150                <div id="diffprevious"><input class="button" type="submit" id="previous" value="<?php esc_attr_e( 'Previous' ); ?>" />
    142151                </div>
     152                <div id="diffnext"><input class="button" type="submit" id="next" value="<?php esc_attr_e( 'Next' ); ?>" />
     153                </div>
     154                <div id="diffslider">
     155                        <div id="slider" class="wp-slider">
     156                        </div>
     157                </div>
    143158        </div>
    144159</script>
     160<script id="tmpl-revision-ticks" type="text/html">
     161        <div class="revision-tick revision-toload{{{ data.revision_toload }}} revision-scopeofchanges-{{{ data.scope_of_changes }}}">
     162        </div>
     163</script>
    145164<?php
    146165/*
    147166TODO 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 {
     
    13821383        background-color: #f7f7f7;
    13831384}
    13841385
     1386.comparetwo#diffsubheader.diff-left-hand-meta-row {
     1387        background-color: #fcfcfc;
     1388}
     1389
     1390.revision-tick.revision-toloadtrue {
     1391        background-color: #9999cc;
     1392        background: url(../images/wpspin_light.gif) no-repeat;
     1393        background-position: middle;
     1394        background-size: 1px 10px;
     1395}
     1396
     1397.revision-tick.revision-toloadfalse {
     1398        background-color: #aaa;
     1399}
     1400
    13851401#att-info {
    13861402        background-color: #e4f2Fd;
    13871403}
    13881404
     1405body .ui-tooltip {
     1406        border-color: #d7d7d7;
     1407        background-color: #fff;
     1408}
     1409
    13891410/* jQuery UI Slider */
    13901411.wp-slider.ui-slider {
    13911412        border-color: #d7d7d7;
     
    13931414}
    13941415
    13951416.wp-slider .ui-slider-handle {
    1396         border-color: #d7d7d7;
     1417        border-color: none;
    13971418}
    13981419
     1420.wp-slider .ui-slider-handle {
     1421        /* Slider drag Triangle CSS */
     1422background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAARCAMAAAAMs7fIAAAAA3NCSVQICAjb4U/gAAAA8FBMVEU2dZipwNBJl8VGmcX///+EpLlBgqpymrNFjru3ydNWiKs6eZzY4uuRrL08faPL3OZBjLSBqsCTssRHlMJEf59cj657o7xKl8OEqsE9gag2dJtEkb+ct8iZs8BHmMePq8BejKZAiK5llK5FjrlJl8c6dZdGl8avxdBJlcZ4nbc6ep6XrbpKgZ+Lqr5KmcdIkbqsws1Gk8E+f6c4dptaiadFirRKl8V8pblImcNIl8eGpruVscZCh7BMlsdIlcFImchEkbs9eJpCjbdGjbk8fJ84dp02dpo8gatMlsM2dps8faVAg61Ej71Ek75IksFIlcOaLCw7AAAAUHRSTlP/////AP///////////////////////////////////////////////////////////////////////////////////////////////////xB6m5UAAAAJcEhZcwAACxIAAAsSAdLdfvwAAAAUdEVYdENyZWF0aW9uIFRpbWUAMy85LzEzrdD8jAAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNui8sowAAACaSURBVBiVVcxZD8FAGIXhjxzUVktQgqKmo7ZYhkgsiS1tQuj//zeomo736uS5OFSo2W6UXc/R5hxXW5foxDlXqUKZx0GFZpXynuM4kXhjgjgyJkGzQIjpvi9Fx1uQ0iQUh4GkR/Ini0CQ2IfQ24YC4X8T+Mn0zj8lO1IgnqZpzlxE0m4YhrFsKYJVn126UGV+W1wHf4LdpByuF0goFKI7tv/dAAAAAElFTkSuQmCC');
     1423}
     1424
    13991425.wp-slider .ui-slider-handle.ui-state-hover,
    14001426.wp-slider .ui-slider-handle.ui-state-focus {
    1401         border-color: #aaa;
     1427        border-color: none;
     1428        outline: none;
    14021429}
    14031430
    14041431.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);
     1432        background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAARCAMAAAAMs7fIAAAAA3NCSVQICAjb4U/gAAAA51BMVEUgZpDkzc0yd6f///8mcqFJm8cjbZZzr80mg78lh8BDk8UngLl+s9AmfKk4hrGeweBaoMhNlMORwt4nd6Zdm8BAjMEnf7RYmsMkb50mhsFWlsYhZ5ImhbwocZg0f61Lk8E9i7twqNBgo8VSmMUofLBcm8o3faUpfK8mh8Aia5MgZpFMmcgpeapDmcJjo8sliMEmh70nhLkkcKAqgLF2sc8sc5ojbZsngrMkh8EnfKw1eaUjbpkkapImeKQgaJAohb0mh8MmhcMng7kkcKEpf68iZ48haJMmhb8kicEmc6MibJkia5UnhLsw1mWvAAAATXRSTlP/AP8A/////////////////////////////////////////////////////////////////////////////////////////////////9/iR18AAAAJcEhZcwAACxIAAAsSAdLdfvwAAAAUdEVYdENyZWF0aW9uIFRpbWUAMy85LzEzrdD8jAAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNui8sowAAACaSURBVBiVVc15D8FAEIfh+Ymj6761LIrSiCNVVyjbRGgifP/PQ6q22/evyZPJDNXzD6G0qNDq5PtO3DJDFyfRpk+po2Eo0h5Qx9U0LRa3SejdlR2rDMLI41yKh6/AtOSzUiuU4kvemSMUDBsRXGuRIHj/CvCXyTNcSXelQBQYY1uBWMY651xfK4KzbdgzqJI73LK7hGC6r0bTB5apIhqIH/YIAAAAAElFTkSuQmCC');
    14121433}
    14131434
    14141435/* edit image */
  • wp-admin/css/wp-admin.css

     
    35543554        margin: 2px;
    35553555}
    35563556
    3557 #diffrestore,
    3558 #diffnext,
    3559 #diffcancel {
     3557#diffnext {
    35603558        float: right;
    35613559        margin-right: 5px;
    35623560}
    35633561
     3562#diffrestore input{
     3563        margin-left: 10px;
     3564}
     3565
    35643566#diffprevious,
    35653567#difftitle,
    35663568#difftitlefrom,
     
    35723574
    35733575#diffprevious,
    35743576#diffnext {
    3575         margin-top: 7px;
    35763577        height: 30px;
    35773578}
    35783579
     
    35843585#diffheader {
    35853586        border-bottom: 1px solid #dfdfdf;
    35863587        width: 100%;
    3587         height: 45px;
    3588         line-height: 45px;
    3589         padding-top: 10px;
     3588        height: 40px;
     3589        line-height: 40px;
     3590        padding-top: 30px;
    35903591}
    35913592
    3592 #diffsubheader {
     3593#diffsubheader,.diff-left-hand-meta-row {
    35933594        border-bottom: 1px solid #dfdfdf;
    35943595        width: 100%;
    35953596        height:35px;
    35963597        line-height: 35px;
     3598        display: block;
    35973599}
    35983600
    3599 #diffslider {
     3601#diffslider{
    36003602        width: 70%;
    36013603        margin-left: auto;
    36023604        margin-right: auto;
    36033605        text-align: center;
    3604         height: 3.5em;
     3606        height: 0.8em;
     3607        margin-top: 20px;
    36053608}
    36063609
     3610.diff-slider-ticks-wrapper {
     3611        margin-left: auto;
     3612        margin-right: auto;
     3613        text-align: center;
     3614}
     3615
     3616#diff-slider-ticks {
     3617        position: absolute;
     3618        margin-top: 50px;
     3619        z-index: 1;
     3620}
     3621
    36073622#revisioncount {
    36083623        width: 50%;
    36093624        margin-left: auto;
     
    36713686
    36723687#comparetworevisions {
    36733688        float: right;
     3689        position: absolute;
     3690        top: 10px;
     3691        right: 10px;
    36743692        line-height: 35px;
    36753693        padding-right: 5px;
    36763694}
     
    37063724.comparetwo #diffprevious,
    37073725.comparetwo #diffnext,
    37083726span#diff_left_current_revision,
    3709 span#diff_from_current_revision,
     3727#diff_from_current_revision,
    37103728.currentversion span#diff_left_count,
    37113729.currentversion span#diff_left_count_inner,
    3712 .currentversion #difftitlefrom,
    3713 .comparetwo.currentversion #difftitlefrom {
     3730.comparetwo.currentversion #diff_from_current_revision,
     3731#diffsubheader.diff-left-hand-meta-row {
    37143732        display: none;
    37153733}
    37163734
     
    37183736span#diff_left_count,
    37193737span#diff_left_count_inner,
    37203738.comparetwo #difftitlefrom,
    3721 .comparetwo.currentversion span#diff_from_current_revision,
    37223739.leftmodelloading #modelsloading,
    37233740.rightmodelloading #modelsloading,
    37243741.leftmodelloading #modelsloading .spinner,
    37253742.rightmodelloading #modelsloading .spinner,
    3726 {
    3727         display: inline;
     3743.comparetwo #diffsubheader.diff-left-hand-meta-row {
     3744        display: block;
    37283745}
    37293746
     3747.revision-tick {
     3748        width: 1px;
     3749        float: left;
     3750        margin-right: 15px;
     3751        height: 11px;
     3752        padding: 0;
     3753        margin-left: 0px;
     3754}
     3755
     3756.revision-tick.revision-scopeofchanges-vsmall {
     3757                width: 1px;
     3758                background-color: #aaa;
     3759}
     3760
     3761.revision-tick.revision-scopeofchanges-small {
     3762                width: 2px;
     3763                background-color: #aaa;
     3764                margin-left: -1px;
     3765}
     3766
     3767.revision-tick.revision-scopeofchanges-med {
     3768                width: 3px;
     3769                margin-left: -2px;
     3770                background-color: #666;
     3771}
     3772
     3773.revision-tick.revision-scopeofchanges-large {
     3774                width: 4px;
     3775                margin-left: -3px;
     3776                background-color: #333;
     3777}
     3778
     3779.revision-tick.revision-scopeofchanges-vlarge {
     3780                margin-left: -3px;
     3781                width: 4px;
     3782                background-color: #111;
     3783}
     3784
    37303785.diff-loading {
    37313786        margin-top: 50px;
    37323787        width: 100%;
     
    37413796        float: none;
    37423797}
    37433798
    3744 #difftitlefrom {
    3745         float: left;
    3746         display: none;
    3747 }
    3748 
    37493799#modelsloading {
    37503800        float: right;
     3801        position: absolute;
    37513802        line-height: 30px;
    37523803        display: none;
    37533804        clear: none;
    3754         margin: 0;
     3805        right: 170px;
    37553806        margin-top: -40px;
    37563807}
    37573808
    37583809#modelsloading .spinner {
    37593810        float: left;
    3760  }
     3811}
    37613812
     3813.ui-tooltip-content img {
     3814        float: left;
     3815        margin-right: 5px;
     3816}
     3817/*  jQuery UI Tooltip 1.10.1 */
     3818
     3819.ui-tooltip {
     3820        padding: 8px;
     3821        position: absolute;
     3822        z-index: 9999;
     3823        max-width: 300px;
     3824        min-width: 130px;
     3825}
     3826
     3827body .ui-tooltip {
     3828        border-width: 1px;
     3829}
     3830
     3831.ui-tooltip, .arrow:after {
     3832        border: 1px solid #d7d7d7;
     3833}
     3834
     3835.ui-tooltip {
     3836        padding: 5px 10px;
     3837}
     3838
     3839.arrow {
     3840        width: 70px;
     3841        height: 16px;
     3842        overflow: hidden;
     3843        position: absolute;
     3844        left: 50%;
     3845        margin-left: -35px;
     3846        bottom: -16px;
     3847        z-index: 99999;
     3848
     3849}
     3850
     3851.arrow.top {
     3852        top: -16px;
     3853        bottom: auto;
     3854}
     3855
     3856.arrow.left {
     3857        left: 20%;
     3858}
     3859
     3860.arrow:after {
     3861        content: "";
     3862        position: absolute;
     3863        left: 20px;
     3864        top: -20px;
     3865        width: 25px;
     3866        height: 25px;
     3867        background-color: #FFF;
     3868        -webkit-transform: rotate(45deg);
     3869        -moz-transform: rotate(45deg);
     3870        -ms-transform: rotate(45deg);
     3871        -o-transform: rotate(45deg);
     3872        tranform: rotate(45deg);
     3873}
     3874
     3875.arrow.top:after {
     3876        bottom: -20px;
     3877        top: auto;
     3878}
     3879
    37623880 /* jQuery UI Slider */
    37633881
    37643882.wp-slider.ui-slider {
     
    37733891.wp-slider .ui-slider-handle {
    37743892        position: absolute;
    37753893        z-index: 2;
    3776         width: 1.2em;
    3777         height: 1.2em;
    3778         border-width: 1px;
    3779         border-style: solid;
    3780         border-radius: 3px;
     3894        width: 17px;
     3895        height: 17px;
     3896        border: none;
    37813897}
    37823898
    37833899.wp-slider .ui-slider-range {