Changeset 2627
- Timestamp:
- 09/11/07 11:02:36 (10 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
peerreviewplugin/0.10/codereview/peerReviewCommentCallback.py
r2577 r2627 187 187 html += "<td colspan=\"2\" align=\"left\" width=\"" + `(400-100-width)` + "px\">Author: " + comment.Author + "</td>" 188 188 html += "<td width=\"100px\" align=\"right\">" + util.format_date(comment.DateCreate) + "</td></tr>" 189 html += "<tr><td width=\"" + `width` + "px\"></td><td valign=\"top\" width=\"" + `factor` + "px\" id=\"" + `comment.IDComment`+ "TreeButton\">"189 html += "<tr><td width=\"" + `width` + "px\"></td><td valign=\"top\" width=\"" + `factor` + "px\" id=\"" + str(comment.IDComment) + "TreeButton\">" 190 190 if not childrenHTML == "": 191 html += "<img src=\"" + self.env.href.chrome() + "/hw/images/minus.gif\" onclick=\"collapseComments(" + comment.IDComment+ ");\">"191 html += "<img src=\"" + self.env.href.chrome() + "/hw/images/minus.gif\" onclick=\"collapseComments(" + str(comment.IDComment) + ");\">" 192 192 html += "</td>" 193 193 html += "<td colspan=\"2\" align=\"left\" width=\"" + `(400-width-factor)` + "px\" bgcolor=\"#F7F7F0\" style=\"border: 1px solid #999999\">" + comment.Text + "</td></tr>" … … 198 198 html += "</td>" 199 199 html += "<td width=\"100px\" align=\"right\">" 200 html += "<a href=\"javascript:addComment(" + `LineNum` + ", " + `IDFile` + ", " + `comment.IDComment`+ ")\">Reply</a></td></tr>"200 html += "<a href=\"javascript:addComment(" + str(LineNum) + ", " + str(IDFile) + ", " + str(comment.IDComment) + ")\">Reply</a></td></tr>" 201 201 html += "<tr height=\"3\"><td width=\"" + `width` + "px\"></td><td width=\"" + `factor` + "px\"></td><td width=\"" + `(400-width-factor)` + "px\" colspan=\"2\"></td></tr>" 202 202 html += "</table>"
