## This file is subject to the terms and conditions defined in ## file 'LICENSE', which is part of this source code package. ## Copyright (c) 2009 SKR Farms (P) LTD. <%inherit file="/base/basic1.html"/> <%namespace name="elements" file="/component/elements.html"/> <%namespace name="forms" file="/component/forms.html"/> <%! page_tooltips = [ [ 'Help', """Review - document, code and wiki pages. Every review created, has author, moderator and participants.
Similar to ticket list, review list uses a grid supporting inline editing. """ ], [ 'Author', """Author can add comments and also reponsible for taking actions on all review comments.""" ], [ 'Moderator', """Moderator can add comments and is responsible for approving actions taken by author on review comments. Once all the comments are approve, moderator can close the review.""" ], [ 'Participant', """Participants can give review comments and reply to other comments. """ ], [ 'Review-set', """Collection of reviews. Especially useful to create review entries for every modified / added file in repository changeset """ ], [ 'Attachments', """Add summary and tags to project attachments.""" ], [ 'Timeline', """Timeline of all updates done to Review(s).""" ], ] %> <%def name="hd_links()"> ${parent.hd_links()} <%def name="hd_script()"> ${parent.hd_script()} <%def name="revwlist()">
${forms.form_configrev( c.authuser, c.project, h.suburl_configrev )}
<%def name="bd_body()"> <% searchbox = capture( forms.form_searchbox, c.authuser, 'searchreview', 'Search-review', h.suburl_search, c.searchfaces ) sel_revw = capture( forms.form_selectrevw, c.authuser, c.revwlist, c.review and c.review.resource_url or '' ) sel_rset = capture( forms.form_selectrset, c.authuser, c.rsetlist, c.reviewset and c.reviewset.name or '' ) if c.revweditable : newrevw = ' \ \ Create' % h.url_revwcreate else : newrevw = '' revwsets = ' \ \ Reviewsets' % h.url_reviewsets attachs= '' + \ ( ' \ Attachments' % h.url_revwattachs ) charts = capture( elements.iconlink, h.url_revwcharts, 'barchart', title="Review analytics" ) tline = capture( elements.iconlink, h.url_revwtimeline, 'timeline', title="Timeline of reviews" ) %> ${elements.mainnav()} ${elements.contextnav( [ searchbox, sel_revw, sel_rset, newrevw, revwsets, attachs, ], rspans=[ charts, tline ], tooltips=page_tooltips )}
% if c.authusername == 'anonymous' or not c.userpanes :
% else :
% endif
${revwlist()}
% if c.authusername != 'anonymous' and c.userpanes :
${elements.user_panes( c.userpanes )}
% endif
<%def name="bd_script()"> ${parent.bd_script()}