vote up 3 vote down star
2

I'm looking for a code review plugin for our trac installation.

I found these two as the top result for "trac code review" query on google

I'm leaning towards PeerCodeReview plugin.

Requesting the SO community for inputs about these plugins to help me select the one for our trac installation.

If you know about any other plugins please let me know about those as well. :)

What I'm looking for in the plugin

  • A Way to annotate code with comments.
  • Approve/Dis-approve ; kind of like a button to inform that code needs to change. maybe a bug is created.
  • A way to assign code review "Task" to a person(s).

The first feature is required (I guess that's the whole point); others are optional. I can hack trac to get something similar to fit into that workflow. Hopefully! ;)

flag

3 Answers

vote up 1 vote down check

We were in the same situation. In the end we opted for installing Review Board in parallel to Trac. While it's not a Trac plugin, it's an excellent tool, and so far we're very happy with it.

It also has basic Trac support, so that, for example, when reviewing bug fixes, you get automatic links to the Trac ticket.

link|flag
vote up 2 vote down

In my company, we looked briefly at the "peerreview" plugin on TracHacks, and were very disappointed with it.

It seems obvious to us that a code-review plugin would naturally default to assuming that an entire Subversion commit should be code-reviewed. Unfortunately, the peerreview plugin forces you to manually identify the lines of code that you want to review. It doesn't even give you hints in which lines might have changed with a particular commit, which means that if you don't enter the line that changed carefully, you could end up re-reviewing the same lines of code over and over.

We've not had a chance to review the other plugin (CodeReviewPlugin) in any detail.

link|flag
Thanks for the information Eric :) – xk0der Jun 10 at 5:55
vote up 2 vote down

I think the PeerCodeReview is better for what you want.

The previous poster is correct, however -- you must browse the source repository and select the code that you want reviewed and annotate it. It knows nothing about changesets.

This is fine if you have someone (like an architect or lead) who is proactively looking out at the code and identifiing things that might be problematic.

It doesn't work so well if you want to review every chunk of code as it relates to a change.

If you're looking for something that associates with commits, and handles diffs, then look at ReviewBoard (a DJango app):

link|flag
Thanks for your answer :) I'll have a look at ReviewBoard. – xk0der Jun 16 at 9:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.