Ticket #23497: 23497.24.diff
File 23497.24.diff, 52.5 KB (added by , 12 years ago) |
---|
-
wp-includes/post-template.php
1315 1315 $date = date_i18n( $datef, strtotime( $revision->post_modified ) ); 1316 1316 if ( $link && current_user_can( 'edit_post', $revision->ID ) && $link = get_edit_post_link( $revision->ID ) ) 1317 1317 $date = "<a href='$link'>$date</a>"; 1318 1318 1319 1319 $revision_date_author = sprintf( 1320 1320 '%s %s, %s %s (%s)', 1321 1321 $gravatar, … … 1393 1393 if ( $parent ) 1394 1394 array_unshift( $revisions, $post ); 1395 1395 1396 //if ( wp_first_revision_matches_current_version( $post_id ) ) 1397 array_pop( $revisions ); 1398 1396 1399 $rows = $right_checked = ''; 1397 1400 $class = false; 1398 1401 $can_edit_post = current_user_can( 'edit_post', $post->ID ); … … 1479 1482 // if the post was previously restored from a revision 1480 1483 // show the restore event details 1481 1484 // 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 ?> 1489 1492 <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 1500 1503 echo "</ul>"; 1501 } 1504 } 1502 1505 1503 1506 endif; 1504 1507 -
wp-includes/revision.php
62 62 /** 63 63 * Saves an already existing post as a post revision. 64 64 * 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 66 68 * 67 69 * @package WordPress 68 70 * @subpackage Post_Revisions 69 71 * @since 2.6.0 70 72 * 71 73 * @uses _wp_put_post_revision() 74 * @uses wp_first_revision_matches_current_version() 72 75 * 73 76 * @param int $post_id The ID of the post to save as a revision. 74 77 * @return mixed Null or 0 if error, new revision ID, if success. 75 78 */ 76 function wp_save_post_revision( $post_id, $new_data = null ) { 77 // We do autosaves manually with wp_create_post_autosave() 79 function 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 78 86 if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) 79 87 return; 80 88 … … 82 90 if ( ! WP_POST_REVISIONS ) 83 91 return; 84 92 85 if ( ! $post = get_post( $post_id, ARRAY_A ) )93 if ( ! $post = get_post( $post_id, ARRAY_A ) ) 86 94 return; 87 95 88 96 if ( 'auto-draft' == $post['post_status'] ) 89 97 return; 90 98 91 if ( ! post_type_supports($post['post_type'], 'revisions') )99 if ( ! post_type_supports( $post['post_type'], 'revisions' ) ) 92 100 return; 93 101 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; 101 124 } 102 125 } 103 //don't save revision if post unchanged104 if( ! $post_has_changed )105 return;106 126 } 107 127 108 128 $return = _wp_put_post_revision( $post ); 109 129 110 130 // 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 ) 112 132 return $return; 113 133 114 134 // all revisions and (possibly) one autosave 115 135 $revisions = wp_get_post_revisions( $post_id, array( 'order' => 'ASC' ) ); 116 136 117 137 // WP_POST_REVISIONS = (int) (# of autosaves to save) 118 $delete = count( $revisions) - WP_POST_REVISIONS;138 $delete = count( $revisions ) - WP_POST_REVISIONS; 119 139 120 140 if ( $delete < 1 ) 121 141 return $return; … … 123 143 $revisions = array_slice( $revisions, 0, $delete ); 124 144 125 145 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' ) ) 127 147 continue; 128 wp_delete_post_revision( $revisions[ $i]->ID );148 wp_delete_post_revision( $revisions[ $i ]->ID ); 129 149 } 130 150 131 151 return $return; … … 418 438 add_filter('the_preview', '_set_preview'); 419 439 } 420 440 } 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 */ 452 function 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
1744 1744 return $r; 1745 1745 } 1746 1746 endif; 1747 1748 if ( !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 */ 1763 function 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
273 273 $scripts->add( 'template', "/wp-includes/js/template$suffix.js", array('underscore'), '1.4.4', 1 ); 274 274 $scripts->add( 'backbone', '/wp-includes/js/backbone.min.js', array('underscore','jquery', 'template'), '0.9.10', 1 ); 275 275 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 ); 277 277 278 278 $scripts->add( 'imgareaselect', "/wp-includes/js/imgareaselect/jquery.imgareaselect$suffix.js", array('jquery'), '0.9.8', 1 ); 279 279 -
wp-admin/includes/ajax-actions.php
2158 2158 /* translators: revision date format, see http://php.net/date */ 2159 2159 $datef = _x( 'j F, Y @ G:i:s', 'revision date format'); 2160 2160 2161 $left_revision = get_post( $compare_to ); 2162 //error_log($left_revision); 2161 2163 //single model fetch mode 2164 //return the diff of a single revision comparison 2162 2165 if ( 0 != $single_revision_id ) { 2163 $left_revision = get_post( $compare_to );2164 2166 $right_revision = get_post( $single_revision_id ); 2165 2167 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_date2178 );2179 }2180 2181 2168 // 2182 2169 //make sure the left revision is the most recent 2183 2170 // … … 2187 2174 $right_revision = $temp; 2188 2175 } 2189 2176 2177 $linesadded=0; 2178 $linesdeleted=0; 2179 2190 2180 // 2191 2181 //compare from left to right, passed from application 2192 2182 // … … 2202 2192 if ( ! empty( $show_split_view ) ) 2203 2193 $args = array( 'show_split_view' => true ); 2204 2194 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 2206 2207 } 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 ); 2211 2215 echo json_encode( $alltherevisions ); 2212 2216 exit(); 2213 } 2217 } //end single model fetch 2214 2218 2219 //fetch the list of revisions available 2220 2215 2221 //if we are comparing two revisions, the first 'revision' represented by the leftmost 2216 2222 //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 2218 2224 array_unshift( $revisions, get_post( $post_id ) ); 2219 2225 2226 if ( $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 2220 2230 $count = -1; 2221 2231 2232 //reverse the list to start with oldes revision 2233 $revisions = array_reverse( $revisions ); 2234 2235 $previous_revision_id = 0; 2222 2236 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 ) ) 2224 2239 continue; 2225 2240 2226 2241 $revision_from_date_author = ''; 2227 2242 $count++; 2228 2243 // return blank data for diffs to the left of the left handle (for right handel model) 2229 2244 // 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 )) { 2232 2247 $alltherevisions[] = array ( 2233 2248 'ID' => $revision->ID, 2234 2249 ); 2235 2236 2250 continue; 2237 2251 } 2238 2252 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 ); 2240 2269 $author = get_the_author_meta( 'display_name', $revision->post_author ); 2241 2270 $date = date_i18n( $datef, strtotime( $revision->post_modified ) ); 2242 2271 $revision_date_author = sprintf( … … 2247 2276 __( ' ago ' ), 2248 2277 $date 2249 2278 ); 2279 $datef2 = __( 'j M @ G:i' ); 2280 $date2 = date_i18n( $datef2, strtotime( $revision->post_modified ) ); 2250 2281 2282 $revision_date_author_short = sprintf( 2283 '%s <strong>%s</strong><br />%s', 2284 $gravatar, 2285 $author, 2286 $date2 2287 ); 2288 2251 2289 $restoreaction = wp_nonce_url( 2252 2290 add_query_arg( 2253 2291 array( 'revision' => $revision->ID, … … 2257 2295 "restore-post_{$compare_to}|{$revision->ID}" 2258 2296 ); 2259 2297 2260 $alltherevisions[] = array ( 2298 if ( ( $compare_two_mode || 0 !== $previous_revision_id ) ) { 2299 $alltherevisions[] = array ( 2261 2300 'ID' => $revision->ID, 2262 2301 'revision_date_author' => $revision_date_author, 2263 2302 'revision_from_date_author' => $revision_from_date_author, 2303 'revision_date_author_short' => $revision_date_author_short, 2264 2304 'restoreaction' => urldecode( $restoreaction ), 2265 'revision_toload' => true 2305 'revision_toload' => true, 2306 'previous_revision_id' => $previous_revision_id 2266 2307 ); 2308 } 2309 $previous_revision_id = $revision->ID; 2267 2310 2268 2311 endforeach; 2269 2312 -
wp-admin/js/revisions.js
7 7 8 8 Model : Backbone.Model.extend({ 9 9 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, 12 12 defaults: { 13 13 ID : 0, 14 14 revision_date_author : '', 15 revision_date_author_short: '', 15 16 revisiondiff : '<div class="diff-loading"><div class="spinner"></div></div>', 16 17 restoreaction : '', 17 18 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 19 24 }, 20 25 21 26 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 23 37 } 24 38 25 39 }), … … 35 49 _revisionsOptions : null, 36 50 _left_diff : 0, 37 51 _right_diff : 1, 38 _autosaves : false,52 _autosaves : true, 39 53 _show_split_view : true, 40 54 _compareoneortwo : 1, 41 55 _left_model_loading : false, //keep track of model loads 42 56 _right_model_loading : false, //disallow slider interaction, also repeat loads, while loading 57 _tickmarkView : null, //the slider tickmarks 58 _keep_tooltip_open : false, 43 59 44 60 //TODO add ability to arrive on specific revision 45 61 routes : { … … 54 70 var revisions_to_load = model_collection.where( { revision_toload : true } ); 55 71 //console.log(revisions_to_load); 56 72 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 ) { 58 82 the_model.urlRoot = model_collection.url; 59 83 _.delay( function() { 60 84 the_model.fetch( { … … 63 87 remove : false, 64 88 //async : false, 65 89 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 68 119 //console.log('render'); 69 120 self._revisionView.render(); 70 121 } 122 71 123 } 72 124 } ); 73 125 }, delay ) ; 74 delay = delay + 200; //stagger model loads by 200 ms to avoid hammering server with requests126 delay = delay + 150; //stagger model loads to avoid hammering server with requests 75 127 } 76 128 ); 77 129 }, … … 83 135 84 136 stop_left_model_loading : function() { 85 137 this._left_model_loading = false; 86 $('.revisiondiffcontainer').removeClass('leftmodelloading');87 138 }, 88 139 89 140 start_right_model_loading : function() { … … 93 144 94 145 stop_right_model_loading : function() { 95 146 this._right_model_loading = false; 147 }, 148 149 stop_model_loading_spinner : function() { 96 150 $('.revisiondiffcontainer').removeClass('rightmodelloading'); 151 $('.revisiondiffcontainer').removeClass('leftmodelloading'); 97 152 }, 98 153 99 154 reloadmodel : function() { … … 107 162 reloadmodelsingle : function() { 108 163 var self = this; 109 164 self._revisions.url = ajaxurl + '?action=revisions-data&compare_to=' + wpRevisionsSettings.post_id + 110 '&show_autosaves=' + self._autosaves +165 '&show_autosaves=' + REVAPP._autosaves + 111 166 '&show_split_view=' + REVAPP._show_split_view + 112 167 '&nonce=' + wpRevisionsSettings.nonce; 113 168 self.start_right_model_loading(); 114 this._revisions.fetch({ //reload revision data169 self._revisions.fetch({ //reload revision data 115 170 success : function() { 116 171 self.stop_right_model_loading(); 117 172 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 120 174 175 // self._right_diff = revisioncount; 176 177 178 121 179 self._revisionView.render(); 122 180 self.reload_toload_revisions( self._revisions ); 123 181 124 182 $( '#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(); 125 186 }, 126 187 127 188 error : function () { … … 136 197 var self = this; 137 198 self.start_left_model_loading(); 138 199 self._left_handle_revisions = new wp.revisions.Collection(); 200 //console.log( 'right - ' + self._right_diff ); 139 201 self._left_handle_revisions.url = 140 202 ajaxurl + 141 203 '?action=revisions-data&compare_to=' + self._revisions.at( self._right_diff - 1 ).get( 'ID' ) + 142 204 '&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 + 145 207 '&nonce=' + wpRevisionsSettings.nonce + 146 208 '&right_handle_at=' + ( self._right_diff ); 147 209 … … 150 212 success : function(){ 151 213 self.stop_left_model_loading(); 152 214 self.reload_toload_revisions( self._left_handle_revisions ); 215 self._tickmarkView.model = self._left_handle_revisions; 216 $( '#slider' ).slider( 'option', 'max', self._revisions.length ); 153 217 }, 154 218 155 219 error : function () { … … 163 227 var self = this; 164 228 self.start_right_model_loading(); 165 229 self._right_handle_revisions = new wp.revisions.Collection(); 166 if ( 0 === self._left_diff ) {167 230 self._right_handle_revisions.url = 168 231 ajaxurl + 169 '?action=revisions-data&compare_to=' + wpRevisionsSettings.post_id+232 '?action=revisions-data&compare_to=' + self._revisions.at( self._left_diff ).get( 'ID' )+ 170 233 '&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 + 173 236 '&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 }184 237 185 238 self._right_handle_revisions.fetch({ 186 239 187 240 success : function(){ 188 241 self.stop_right_model_loading(); 189 242 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 190 247 }, 191 248 192 249 error : function ( response ) { … … 208 265 initialize : function( options ) { 209 266 var self = this; //store the application instance 210 267 if (this._revisions === null) { 211 self._autosaves = '';212 268 self._revisions = new wp.revisions.Collection(); //set up collection 213 269 self.start_right_model_loading(); 214 270 self._revisions.fetch({ //load revision data 215 271 216 272 success : function() { 217 273 self.stop_right_model_loading(); 218 self. revisionDiffSetup();274 self.completeApplicationSetup(); 219 275 } 220 276 }); 221 277 } 222 278 return this; 223 279 }, 224 280 225 revisionDiffSetup : function() {281 completeApplicationSetup : function() { 226 282 this._revisionView = new wp.revisions.views.View({ 227 283 model : this._revisions 228 284 }); 229 285 this._revisionView.render(); 230 $( '#diff_max, #diff_maxof' ).html( this._revisions.length );231 $( '#diff_count' ).html( REVAPP._right_diff );232 286 $( '#slider' ).slider( 'option', 'max', this._revisions.length - 1 ); 233 287 234 288 this.reload_toload_revisions( this._revisions ); 289 235 290 this._revisionsInteractions = new wp.revisions.views.Interact({ 236 291 model : this._revisions 237 292 }); 238 293 this._revisionsInteractions.render(); 239 294 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 } ); 240 318 /* 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 /* 241 330 //Options hidden for now, moving to screen options 242 331 this._revisionsOptions = new wp.revisions.views.Options({ 243 332 model : this._revisions … … 252 341 wp.revisions.Collection = Backbone.Collection.extend({ 253 342 model : wp.revisions.Model, 254 343 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, 256 345 257 346 initialize : function() { 258 347 } 259 348 } ); 260 349 261 350 _.extend(wp.revisions.views, { 351 352 //Ticks inside slider view 262 353 // 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 // 263 416 //primary revision diff view 264 417 // 265 418 View : Backbone.View.extend({ … … 271 424 comparetwochecked : '', 272 425 draggingleft : false, 273 426 274 initialize : function(){275 },276 277 427 // 278 428 //render the revisions 279 429 // 280 430 render : function() { 281 431 var addhtml = ''; 282 432 //compare two revisions mode? 433 283 434 if ( 2 === REVAPP._compareoneortwo ) { 284 435 this.comparetwochecked = 'checked'; 285 436 if ( this.draggingleft ) { … … 291 442 } 292 443 } else { //dragging right handle 293 444 var thediff = REVAPP._right_diff; 445 //console.log( thediff ) 294 446 if ( this.model.at( thediff ) ) { 295 447 addhtml = this.template( _.extend( 296 448 this.model.at( thediff ).toJSON(), … … 310 462 this.$el.html( addhtml ); 311 463 if ( this.model.length < 3 ) { 312 464 $( 'div#comparetworevisions' ).hide(); //don't allow compare two if fewer than three revisions 313 314 465 } 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 } 315 470 //console.log ( (this.model.at( REVAPP._right_diff - 1 )).url()); 316 471 return this; 317 472 }, … … 336 491 REVAPP.reloadmodelsingle(); 337 492 } 338 493 REVAPP._revisionsInteractions.render(); 494 REVAPP._tickmarkView.render(); 495 REVAPP._revisionView.render(); 496 339 497 } 340 498 }), 341 499 342 500 // 343 501 //options view for show autosaves and show split view options 344 502 // 503 /* DISABLED for now 345 504 Options : Backbone.View.extend({ 346 505 el : $('#backbonerevisionsoptions')[0], 347 506 tagName : 'revisionoptionsview', 348 507 className : 'revisionoptions-container', 349 508 template : wp.template('revisionoptions'), 350 509 351 initialize : function() {352 },353 354 510 //render the options view 355 511 render : function() { 356 512 var addhtml = this.template; … … 396 552 REVAPP.reloadmodel(); 397 553 } 398 554 }), 399 555 */ 400 556 // 401 557 //main interactions view 402 558 // … … 405 561 tagName : 'revisionvinteract', 406 562 className : 'revisionvinteract-container', 407 563 template : wp.template('revisionvinteract'), 408 _restoreword : '',409 564 410 565 initialize : function() { 411 this._restoreword = $( 'input#restore' ).attr( 'value' );412 566 }, 413 567 414 reset_restore_button : function() {415 $( 'input#restore' ).attr( 'value', this._restoreword + ' ' + REVAPP._revisions.at( REVAPP._right_diff - 1 ).get( 'ID' ) );416 },417 418 568 render : function() { 419 569 var self = this; 420 570 421 571 var addhtml = this.template; 422 572 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();427 573 428 574 var modelcount = REVAPP._revisions.length; 429 575 … … 431 577 if ( 1 === REVAPP._compareoneortwo ) { 432 578 //set up the slider with a single handle 433 579 slider.slider({ 434 value 435 min 436 max 437 step 580 value: REVAPP._right_diff-1, 581 min: 0, 582 max: modelcount-1, 583 step: 1, 438 584 585 439 586 //slide interactions for one handles slider 440 587 slide : function( event, ui ) { 441 if ( REVAPP._right_model_loading ) //left model stoll loading, prevent sliding left handle442 return false;443 588 444 REVAPP._right_diff =( ui.value+1 ); 445 $( '#diff_count' ).html( REVAPP._right_diff ); 589 REVAPP._right_diff = ( ui.value +1 ); 446 590 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 } 449 608 }); 450 609 $( '.revisiondiffcontainer' ).removeClass( 'comparetwo' ); 610 451 611 } else { //comparing more than one, eg 2 452 612 //set up the slider with two handles 453 613 slider.slider({ … … 467 627 return false; 468 628 469 629 if ( REVAPP._revisionView.model !== REVAPP._left_handle_revisions && 470 null !== REVAPP._left_handle_revisions ) 630 null !== REVAPP._left_handle_revisions ) { 471 631 REVAPP._revisionView.model = REVAPP._left_handle_revisions; 472 632 REVAPP._tickmarkView.model = REVAPP._left_handle_revisions; 633 REVAPP._tickmarkView.render(); 634 } 473 635 REVAPP._revisionView.draggingleft = true; 474 636 REVAPP._left_diff_start = ui.values[ 0 ]; 475 637 break; 476 638 477 639 case 2: //right 478 if ( REVAPP._right_model_loading ) // right model stoll loading, prevent sliding right handle640 if ( REVAPP._right_model_loading ) //left model stoll loading, prevent sliding left handle 479 641 return false; 480 642 481 643 //one extra spot at left end when comparing two 482 644 if ( REVAPP._revisionView.model !== REVAPP._right_handle_revisions && 483 null !== REVAPP._right_handle_revisions ) 645 null !== REVAPP._right_handle_revisions ) { 484 646 REVAPP._revisionView.model = REVAPP._right_handle_revisions; 647 REVAPP._tickmarkView.model = REVAPP._right_handle_revisions; 648 REVAPP._tickmarkView.render(); 649 } 485 650 486 651 REVAPP._revisionView.draggingleft = false; 487 652 REVAPP._right_diff_start = ui.values[ 1 ]; … … 501 666 if ( REVAPP._left_model_loading ) //left model still loading, prevent sliding left handle 502 667 return false; 503 668 504 REVAPP._left_diff = ui.values[ 0 ] - 1; //one extra spot at left end when comparing two669 REVAPP._left_diff = ui.values[ 0 ]; //one extra spot at left end when comparing two 505 670 break; 506 671 507 672 case 2: //right 508 if ( REVAPP._right_model_loading ) //right model still loading, prevent sliding right handle509 return false;673 REVAPP._right_diff = ui.values[ 1 ]; 674 //console.log('setting ' + REVAPP._right_diff ); 510 675 511 REVAPP._right_diff = ui.values[ 1 ] - 1 ;512 676 break; 513 677 } 514 678 515 $( '#diff_count' ).html( REVAPP._right_diff );516 517 679 if ( 0 === REVAPP._left_diff ) { 518 680 $( '.revisiondiffcontainer' ).addClass( 'currentversion' ); 519 681 520 682 } else { 521 683 $( '.revisiondiffcontainer' ).removeClass( 'currentversion' ); 522 $( '#diff_left_count_inner' ).html( REVAPP._left_diff );523 684 } 524 685 525 REVAPP._revisionView.render(); //render the diff view526 self.reset_restore_button(); 686 REVAPP._revisionView.render(); 687 527 688 }, 528 689 529 690 //when the user stops sliding in 2 handle mode, recalculate diffs … … 537 698 switch ( index ) { 538 699 case 1: //left 539 700 //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 ] ) 541 702 REVAPP.reloadright(); 542 703 543 704 break; 544 705 545 706 case 2: //right 546 707 //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 ] ) 548 709 REVAPP.reloadleft(); 549 } 710 550 711 break; 551 712 } 552 713 } … … 571 732 572 733 REVAPP._revisionView.render(); 573 734 574 $( '#diff_count' ).html( REVAPP._right_diff );575 735 $( '#slider' ).slider( 'value', REVAPP._right_diff - 1 ).trigger( 'slide' ); 576 this.reset_restore_button();577 736 }, 578 737 579 738 //go the the previous revision … … 583 742 584 743 REVAPP._revisionView.render(); 585 744 586 $( '#diff_count' ).html( REVAPP._right_diff );587 745 $( '#slider' ).slider( 'value', REVAPP._right_diff - 1 ).trigger( 'slide' ); 588 this.reset_restore_button();589 746 } 590 747 }) 591 748 }); -
wp-admin/revision.php
80 80 $parent_file = $submenu_file = 'edit.php?post_type=' . $post->post_type; 81 81 else 82 82 $parent_file = $submenu_file = 'edit.php'; 83 84 83 wp_enqueue_script( 'revisions' ); 85 84 86 85 require_once( './admin-header.php' ); 87 86 88 87 //TODO - Some of the translations below split things into multiple strings that are contextually related and this makes it pretty impossible for RTL translation. 89 88 //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 ); 92 wp_localize_script( 'revisions', 'wpRevisionsSettings', $wpRevisionsSettings ); 93 94 $comparetworevisionslink = get_edit_post_link( $revision->ID ); 90 95 ?> 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 <?php95 $comparetworevisionslink = get_edit_post_link( $revision->ID );96 ?>97 96 98 <div id="backbonerevisionsoptions"></div> 97 <div id="backbonerevisionsoptions"> 98 </div> 99 99 <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> 101 103 <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> 103 107 <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> 106 116 <hr /> 107 117 </div> 108 118 </div> 109 119 110 120 <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 111 128 <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 118 141 <div id="removedandadded"> 119 142 <div id="removed"><?php _e( 'Removed -' ); ?></div> 120 143 <div id="added"><?php _e( 'Added +' ); ?></div> … … 124 147 125 148 <script id="tmpl-revisionvinteract" type="text/html"> 126 149 <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' ); ?>" /> 142 151 </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> 143 158 </div> 144 159 </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> 145 164 <?php 146 165 /* 147 166 TODO Convert these into screen options -
wp-admin/css/colors-fresh.css
175 175 .sidebar-name, 176 176 #nav-menu-header, 177 177 #nav-menu-footer, 178 .menu-item-handle, 179 .wp-slider .ui-slider-handle { 178 .menu-item-handle { 180 179 background: #f1f1f1; 181 180 background-image: -webkit-gradient(linear, left bottom, left top, from(#ececec), to(#f9f9f9)); 182 181 background-image: -webkit-linear-gradient(bottom, #ececec, #f9f9f9); … … 185 184 background-image: linear-gradient(to top, #ececec, #f9f9f9); 186 185 } 187 186 187 188 188 189 .widget .widget-top, 189 190 .postbox h3, 190 191 .stuffbox h3 { … … 1382 1383 background-color: #f7f7f7; 1383 1384 } 1384 1385 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 1385 1401 #att-info { 1386 1402 background-color: #e4f2Fd; 1387 1403 } 1388 1404 1405 body .ui-tooltip { 1406 border-color: #d7d7d7; 1407 background-color: #fff; 1408 } 1409 1389 1410 /* jQuery UI Slider */ 1390 1411 .wp-slider.ui-slider { 1391 1412 border-color: #d7d7d7; … … 1393 1414 } 1394 1415 1395 1416 .wp-slider .ui-slider-handle { 1396 border-color: #d7d7d7;1417 border-color: none; 1397 1418 } 1398 1419 1420 .wp-slider .ui-slider-handle { 1421 /* Slider drag Triangle CSS */ 1422 background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAARCAMAAAAMs7fIAAAAA3NCSVQICAjb4U/gAAAA8FBMVEU2dZipwNBJl8VGmcX///+EpLlBgqpymrNFjru3ydNWiKs6eZzY4uuRrL08faPL3OZBjLSBqsCTssRHlMJEf59cj657o7xKl8OEqsE9gag2dJtEkb+ct8iZs8BHmMePq8BejKZAiK5llK5FjrlJl8c6dZdGl8avxdBJlcZ4nbc6ep6XrbpKgZ+Lqr5KmcdIkbqsws1Gk8E+f6c4dptaiadFirRKl8V8pblImcNIl8eGpruVscZCh7BMlsdIlcFImchEkbs9eJpCjbdGjbk8fJ84dp02dpo8gatMlsM2dps8faVAg61Ej71Ek75IksFIlcOaLCw7AAAAUHRSTlP/////AP///////////////////////////////////////////////////////////////////////////////////////////////////xB6m5UAAAAJcEhZcwAACxIAAAsSAdLdfvwAAAAUdEVYdENyZWF0aW9uIFRpbWUAMy85LzEzrdD8jAAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNui8sowAAACaSURBVBiVVcxZD8FAGIXhjxzUVktQgqKmo7ZYhkgsiS1tQuj//zeomo736uS5OFSo2W6UXc/R5hxXW5foxDlXqUKZx0GFZpXynuM4kXhjgjgyJkGzQIjpvi9Fx1uQ0iQUh4GkR/Ini0CQ2IfQ24YC4X8T+Mn0zj8lO1IgnqZpzlxE0m4YhrFsKYJVn126UGV+W1wHf4LdpByuF0goFKI7tv/dAAAAAElFTkSuQmCC'); 1423 } 1424 1399 1425 .wp-slider .ui-slider-handle.ui-state-hover, 1400 1426 .wp-slider .ui-slider-handle.ui-state-focus { 1401 border-color: #aaa; 1427 border-color: none; 1428 outline: none; 1402 1429 } 1403 1430 1404 1431 .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'); 1412 1433 } 1413 1434 1414 1435 /* edit image */ -
wp-admin/css/wp-admin.css
3554 3554 margin: 2px; 3555 3555 } 3556 3556 3557 #diffrestore, 3558 #diffnext, 3559 #diffcancel { 3557 #diffnext { 3560 3558 float: right; 3561 3559 margin-right: 5px; 3562 3560 } 3563 3561 3562 #diffrestore input{ 3563 margin-left: 10px; 3564 } 3565 3564 3566 #diffprevious, 3565 3567 #difftitle, 3566 3568 #difftitlefrom, … … 3572 3574 3573 3575 #diffprevious, 3574 3576 #diffnext { 3575 margin-top: 7px;3576 3577 height: 30px; 3577 3578 } 3578 3579 … … 3584 3585 #diffheader { 3585 3586 border-bottom: 1px solid #dfdfdf; 3586 3587 width: 100%; 3587 height: 4 5px;3588 line-height: 4 5px;3589 padding-top: 10px;3588 height: 40px; 3589 line-height: 40px; 3590 padding-top: 30px; 3590 3591 } 3591 3592 3592 #diffsubheader {3593 #diffsubheader,.diff-left-hand-meta-row { 3593 3594 border-bottom: 1px solid #dfdfdf; 3594 3595 width: 100%; 3595 3596 height:35px; 3596 3597 line-height: 35px; 3598 display: block; 3597 3599 } 3598 3600 3599 #diffslider 3601 #diffslider{ 3600 3602 width: 70%; 3601 3603 margin-left: auto; 3602 3604 margin-right: auto; 3603 3605 text-align: center; 3604 height: 3.5em; 3606 height: 0.8em; 3607 margin-top: 20px; 3605 3608 } 3606 3609 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 3607 3622 #revisioncount { 3608 3623 width: 50%; 3609 3624 margin-left: auto; … … 3671 3686 3672 3687 #comparetworevisions { 3673 3688 float: right; 3689 position: absolute; 3690 top: 10px; 3691 right: 10px; 3674 3692 line-height: 35px; 3675 3693 padding-right: 5px; 3676 3694 } … … 3706 3724 .comparetwo #diffprevious, 3707 3725 .comparetwo #diffnext, 3708 3726 span#diff_left_current_revision, 3709 span#diff_from_current_revision,3727 #diff_from_current_revision, 3710 3728 .currentversion span#diff_left_count, 3711 3729 .currentversion span#diff_left_count_inner, 3712 .c urrentversion #difftitlefrom,3713 .comparetwo.currentversion #difftitlefrom{3730 .comparetwo.currentversion #diff_from_current_revision, 3731 #diffsubheader.diff-left-hand-meta-row { 3714 3732 display: none; 3715 3733 } 3716 3734 … … 3718 3736 span#diff_left_count, 3719 3737 span#diff_left_count_inner, 3720 3738 .comparetwo #difftitlefrom, 3721 .comparetwo.currentversion span#diff_from_current_revision,3722 3739 .leftmodelloading #modelsloading, 3723 3740 .rightmodelloading #modelsloading, 3724 3741 .leftmodelloading #modelsloading .spinner, 3725 3742 .rightmodelloading #modelsloading .spinner, 3726 {3727 display: inline;3743 .comparetwo #diffsubheader.diff-left-hand-meta-row { 3744 display: block; 3728 3745 } 3729 3746 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 3730 3785 .diff-loading { 3731 3786 margin-top: 50px; 3732 3787 width: 100%; … … 3741 3796 float: none; 3742 3797 } 3743 3798 3744 #difftitlefrom {3745 float: left;3746 display: none;3747 }3748 3749 3799 #modelsloading { 3750 3800 float: right; 3801 position: absolute; 3751 3802 line-height: 30px; 3752 3803 display: none; 3753 3804 clear: none; 3754 margin: 0;3805 right: 170px; 3755 3806 margin-top: -40px; 3756 3807 } 3757 3808 3758 3809 #modelsloading .spinner { 3759 3810 float: left; 3760 3811 } 3761 3812 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 3827 body .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 3762 3880 /* jQuery UI Slider */ 3763 3881 3764 3882 .wp-slider.ui-slider { … … 3773 3891 .wp-slider .ui-slider-handle { 3774 3892 position: absolute; 3775 3893 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; 3781 3897 } 3782 3898 3783 3899 .wp-slider .ui-slider-range {