</span>\r
</td>\r
</tr>\r
- <tr wicket:id="blameView">\r
+ <tr wicket:id="annotation">\r
<td class="lineCommit"><span class="sha1" wicket:id="commit"></span></td>\r
<td class="lineNumber"><span class="sha1" wicket:id="line"></span></td>\r
<td class="lineContent sha1" wicket:id="data"></td>\r
}\r
\r
if (pathModel == null) {\r
+ final String notFound = MessageFormat.format("Blame page failed to find {0} in {1} @ {2}",\r
+ blobPath, repositoryName, objectId);\r
+ logger.error(notFound);\r
add(new Label("annotation").setVisible(false));\r
add(new Label("missingBlob", missingBlob(blobPath, commit)).setEscapeModelStrings(false));\r
return;\r
List<AnnotatedLine> lines = DiffUtils.blame(getRepository(), blobPath, objectId);\r
final Map<?, String> colorMap = initializeColors(activeBlameType, lines);\r
ListDataProvider<AnnotatedLine> blameDp = new ListDataProvider<AnnotatedLine>(lines);\r
- DataView<AnnotatedLine> blameView = new DataView<AnnotatedLine>("blameView", blameDp) {\r
+ DataView<AnnotatedLine> blameView = new DataView<AnnotatedLine>("annotation", blameDp) {\r
private static final long serialVersionUID = 1L;\r
private String lastCommitId = "";\r
private boolean showInitials = true;\r