发布于 2015-08-19 00:19:23 | 222 次阅读 | 评论: 0 | 来源: 网友投递
Review Board 开源Code Review平台
Review Board是一套成熟的开源code review平台,目前已在业内得到广泛的使用。基本可以用于review任何代码和文件。codereview 属于代码配置管理范畴。codereview需要配合SVNClient来使用,因为当post diff代码时会调用SVN相关命令。
Review Board 2.5 RC 1 发布,更新内容如下:
Added new headers for filtering review request e-mails.
E-mails for reviews containing a Ship It! will include aX-ReviewBoard-ShipIt
header. If the review doesn’t contain any other content (for instance, if it’s the result of the pressing theShip It! button), it will also contain aX-ReviewBoard-ShipIt-Only
header.
The Markdown editor now provides syntax highlighting support for:
This can be used by specifying the language when using fenced code blocks. For example:
```python class Foo(object): pass ```
CoffeeScript
CSS
Go
HTML
JavaScript
Perl
PHP
Python
ReStructuredText
Ruby
Shell scripts
SQL
XML
YAML
The login, register, and password reset pages are now built for mobile UIs.
The password reset pages also got a makeover for desktop.
The user page and dashboard now have a drop-down filter menu for choosing which review requsts are visible on mobile devices.
Added new extension hooks for manipulating the recipient list for review and review request e-mails.
The new email-hook allows an extension to designate new lists of recipients for all the review/review request e-mails that Review Board sends. They can update both the To and CC lists for any e-mail.
These take lists of signals the hook should listen to for the various events (such as review_request_published
). As a convenience, callers can make use of one of the subclasses for specific events:
review-request-published-email-hook
review-request-closed-email-hook
review-published-email-hook
review-reply-published-email-hook
API resources provided by extensions can now add specialized serialization of links.
Subclasses of WebAPIResource
can implement a serialize_<linkname>_link()
function to provide the desired information for the link. This is useful for links that need to contain additional metadata about the link that would be helpful to the consumer.
Fixed the display of Gravatars in the dashboard.
Fixed displaying trophies on the diff viewer page.
The checkbox for choosing whether to send e-mails on review request updates is no longer missing on the diff viewer.
Fixed regressions in rendering file attachment captions.
Fixed unwanted gaps above the tabs in the Markdown file attachment review page.
Opening and closing editors no longer results in review request or review drafts.
Fixed the review reply draft banner sticking around in memory and listening for events after publishing a reply.
Fixed the review request update bubble appearing below other elements on the page.
Fixed the display of Gravatars in reviews and replies.
Fixed Unicode errors when normalizing keywords in CVS diffs. (Bug #3931)
Fixed Unicode errors when parsing SVN diffs containing accented characters in the revision strings.
Patch by Maxime Besson.
更多内容请查看:发行说明,release notes
Review Board是一套成熟的开源code review平台,目前已在业内得到广泛的使用。基本可以用于review任何代码和文件。codereview 属于代码配置管理范畴。codereview需要配合SVNClient来使用,因为当post diff代码时会调用SVN相关命令。