We noticed that if you have long paths to your files (Like pretty much everything in Java). Then it means that the right hand side of the view code review page (i.e. the more recent file) is moved a long way to the right. This can be really hard to read and normally means a lot of scrolling even with a large widesreen monitor.
This is caused my having the "diff for <filename>" span three columns (there is four in total) so pushing everything accross the screen.
A solution to this (The one I patched our system with) is to put a mini table into the cell that currently does the spanning.
So in file: Render.pm
Function: delta_file_header()
Just before the line that states:
# Generate the text for the link to add a file-level comment.
my $add_file_level_comment_text =
Add the code:
print "<tr><td class=\"file\" colspan=\"4\"><TABLE>";
And then at the end of the function also add:
print "</TABLE></TD></TR>";
There may be a nicer way of doing this, but this is the quick fix we put in for now.
Nobody/Anonymous
None
None
Public
|
Date: 2008-02-26 00:35:02 PST
|
|
Date: 2008-01-08 07:50:03 PST
|