Changes between Version 78 and Version 79 of PeerReviewPlugin


Ignore:
Timestamp:
Jun 21, 2015, 4:23:59 PM (9 years ago)
Author:
figaro
Comment:

Further cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • PeerReviewPlugin

    v78 v79  
    55== Description
    66
    7 This system uses Trac's newly implemented plugin system allowing an integrated distributed peer review system for software developers. With Trac's current set of features, a peer review plugin fits nicely into its lineup. This plugin's goal is to eliminate the need for time consuming code review meetings by giving developers the ability to review code in a user-friendly web-based environment during their own time. This program is written primarily in Python. The interface integrates seemlessly with Subversion allowing users to browse the repository for reviewable files. Genshi is used as the server-side web-based scripting language with Javascript and AJAX to modernize the user interface.
     7This plugin allows an integrated distributed peer review system for software developers. This plugin's goal is to eliminate the need for time consuming code review meetings by giving developers the ability to review code in a user-friendly web-based environment during their own time. This program is written primarily in Python. The interface integrates seamlessly with Subversion allowing users to browse the repository for reviewable files. Genshi is used as the server-side web-based scripting language with Javascript and AJAX to modernize the user interface.
    88
    99Further documentation:
     
    3333== Installation
    3434
    35  * Follow the standard trac [http://projects.edgewall.com/trac/wiki/TracPlugins plugin installation] instructions.
    36  * Add the setting "codereview.* = enabled" to the [components] section in the `trac.ini` file.
     35 * Follow the standard Trac [http://projects.edgewall.com/trac/wiki/TracPlugins plugin installation] instructions.
     36 * Enable the plugin in your `trac.ini` file:
     37 {{{#!ini
     38[components]
     39codereview.* = enabled
     40}}}
    3741 * The permission `CODE_REVIEW_DEV` and `CODE_REVIEW_MGR` must be assigned as appropriate.
    3842