Changes between Version 84 and Version 85 of PeerReviewPlugin


Ignore:
Timestamp:
May 3, 2016, 8:23:07 AM (8 years ago)
Author:
Cinc-th
Comment:

Added configuration section

Legend:

Unmodified
Added
Removed
Modified
  • PeerReviewPlugin

    v84 v85  
    3939Check out PeerReviewPlugin from [/svn/peerreviewplugin here] using Subversion, or [source:peerreviewplugin browse the source] with Trac.
    4040
    41 == Installation
     41== Installation / Configuration
    4242
    4343 * Follow the standard Trac [t:TracPlugins plugin installation] instructions.
     
    4747codereview.* = enabled
    4848}}}
    49  * The permission `CODE_REVIEW_DEV` and `CODE_REVIEW_MGR` must be assigned as appropriate.
     49=== Permissions
     50The permission `CODE_REVIEW_DEV` and `CODE_REVIEW_MGR` must be assigned as appropriate.
     51
     52Only users with permission {{{CODE_REVIEW_DEV}}} may perform any code reviews.
     53
     54Permission {{{CODE_REVIEW_MGR}}} is for administration of code reviews.
     55
     56=== Workflow operation for reviews
     57You may configure a custom workflow operation {{{set_review_owner}}} for reviews.
     58{{{#!ini
     59[peerreview-resource_workflow]
     60change_owner = * -> *
     61change_owner.name = Change Owner to
     62change_owner.operations = set_review_owner
     63change_owner.permissions = CODE_REVIEW_MGR
     64}}}
     65This operation allows you to change the owner of a review. Possible users are taken from the same list as the one used when creating a review. In the given example you need the permission {{{CODE_REVIEW_MGR}}} to perform the operation.
     66
     67=== Project list
     68When creating a review you may specify an associated project. The projects are taken from the list created by SimpleMultiProjectPlugin. IF you don't have this plugin installed or you want to create another list you may do so using the following settings.
     69{{{#!ini
     70[peerreview]
     71projects = Project1, Project2, Project3
     72}}}
     73
    5074
    5175== Recent Changes