Jakub Narebski wrote:
I have tested gitweb with both of your patches applied, serving gitweb as CGI script using Apache 2.0.54 on Linux, and viewing from separate computer on MS Windows XP, with the following results: * For the following browsers blame_incremental view on gitweb/gitweb.perl file produces correct output, but for progress info which instead of ( 1%) -> ( 29%) -> (100%) looks more like ( 1%) -> (29%) -> (100%)
This is due to an off-by-one error in the while loop. This should fix it. I'll probably squash this into patch 2 and resend.
--->8---- diff --git a/gitweb/gitweb.js b/gitweb/gitweb.js index 30597dd..9214497 100644 --- a/gitweb/gitweb.js +++ b/gitweb/gitweb.js @@ -43,7 +43,7 @@ function padLeftStr(input, width, str) { var prefix = ''; width -= input.toString().length; - while (width > 1) { + while (width > 0) { prefix += str; width--; } -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html