#302 closed task (fixed)
Prettify indention in revisions view
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | 2013 Final (1.0) | Priority: | normal |
Component: | Code Revisions | Keywords: | |
Cc: |
Description
wp-admin/revision.php
at the moment does not display indentations which are important when viewing code revisions. See attached images for examples.
Core most likely will bring back a maximum of one possible leading space per line. Having revisions.php display actual tabs or multiple spaces at line beginnings and multiple spaces in between words for better multi-line alignment would be nice.
To fix this revision.php requires table.diff { white-space: pre-wrap; }
(will get into core according to ocean90) and wp_text_diff needs changes to not remove /[ \t]+/
in line 1708 and 1709. An alternative to normalize_whitespace might be required here. Changing the original function in core is not appropriate because it's expected to work the way it does.
.pre will be added to
table.diff
: #24425.In addition removing
normalize_whitespace
from wp_text_diff (is pluggable) does the trick. This change will be restricted to posts of the code custom post type (post_id
is passed on revision ajax requests) and should therefore not bring any unexpected changes to WP default behavior.