Changes between Initial Version and Version 1 of PeerReviewPlugin/ReviewTickets


Ignore:
Timestamp:
May 12, 2021, 6:49:30 AM (3 years ago)
Author:
Cinc-th
Comment:

Description of review tickets

Legend:

Unmodified
Added
Removed
Modified
  • PeerReviewPlugin/ReviewTickets

    v1 v1  
     1= Review tickets
     2
     3If the review status is in the list defined by the [PeerReviewPlugin#Configuration configuration] setting {{{show_ticket}}} you may create a ticket prefilled with review details from within the review page.
     4This can be used to inform team members about pending work or a succesful review.
     5
     6== Ticket template
     7
     8The ticket description is defined in the wiki page {{{CodeReview/TicketTemplate}}}.
     9If this page doesn't exists a default description is used:
     10
     11{{{
     12Review [review:${review_id} ${review_name}].
     13=== Review
     14
     15||= Name =|| ${review_name} ||
     16||= ID =|| [review:${review_id}] ||
     17
     18=== Review Notes
     19
     20${review_notes}
     21
     22=== Files
     23||= File name =||= Comments =||
     24${review_files}
     25
     26}}}
     27
     28The following variables can be used in the ticket template:
     29
     30|| **${review_id}** || will be replaced with the review id ||
     31|| **${review_name}** || name of the current review ||
     32|| **${review_notes}** || notes of the current review ||
     33|| **${review_files}** || a table with files belonging to the review ||
     34
     35The inserted file table is a wiki table with two columns like this:
     36{{{
     37|| path/to/file || number of comments ||
     38|| ... || ... ||
     39}}}
     40
     41You may use the following wiki formatting for a file table with custom headers:
     42{{{
     43||= File path =||= Comments =||
     44${review_files}
     45}}}
     46
     47