- Disable SNI extensions for client SSL connections\r
- Fixed prettify language extension loading\r
- Fixed index out of bounds exceptions when generating client certificates for a user when the user's table has been filtered\r
- - Fixed AddindexedBranch tool when specifying the non-default branch. \r
+ - Fixed AddindexedBranch tool when specifying the non-default branch.\r
+ - Fixed submodule diff display\r
\r
changes:\r
- Improved error logging for servlet containers which provide a null contextFolder (issue 199)\r
sb.append("<table><tbody>");\r
inFile = true;\r
} else {\r
+ boolean gitLinkDiff = line.length() > 0 && line.substring(1).startsWith("Subproject commit");\r
+ if (gitLinkDiff) {\r
+ sb.append("<tr><th></th><th></th>");\r
+ if (line.charAt(0) == '+') {\r
+ sb.append("<td><div class=\"diff add2\">");\r
+ } else {\r
+ sb.append("<td><div class=\"diff remove2\">");\r
+ }\r
+ }\r
sb.append(line);\r
+ if (gitLinkDiff) {\r
+ sb.append("</div></td></tr>");\r
+ }\r
}\r
}\r
sb.append("</table></div>");\r