ICU-9499 add author column

X-SVN-Rev: 32221
This commit is contained in:
Steven R. Loomis 2012-08-23 20:15:56 +00:00
parent 1e1d7adaaa
commit 4187c56fdf
3 changed files with 6 additions and 1 deletions

View File

@ -4,7 +4,7 @@
var cst = document.getElementById("changesettable");
var trs=cst.getElementsByTagName("tr");
for( i=1 ; i < trs.length ; i++ ) {
var sec = trs[i].getElementsByTagName('td')[0];
var sec = trs[i].getElementsByTagName('td')[1]; // [0] is 'author', [1] is section.
var brk = sec.getElementsByTagName('a');
for(j=0;j<brk.length;j++) {
var bri = brk[j];

View File

@ -240,6 +240,7 @@ class ReviewModule(Component):
revcount = revcount + 1
revision = {}
revision['rev'] = tag.a(rev, req.href.changeset(rev))
revision['author'] = chgset.author
revision['num'] = rev
revision['comment'] = message #wiki_to_oneliner( message, self.env, db, shorten=False )
rbranches = revision['branches'] = []

View File

@ -27,6 +27,7 @@
<thead>
<tr>
<th>r</th>
<th>author</th>
<th>section(s)</th>
<th>comment</th>
</tr>
@ -37,6 +38,9 @@
<th>
<a href="${href.changeset(rev.num)}">r${rev.num}</a>
</th>
<td>
${rev.author}
</td>
<td>
<!-- sections -->
<py:for each="branch in rev.branches">