JCR 0.6.4 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News JCR 0.6.4 (Default branch)
# 1  
Old 08-24-2008
JCR 0.6.4 (Default branch)

Image JCR is a Web application for performing and managing formal code reviews. Although it has some special logic for reviewing Java projects, it can be used for reviews of any type of source code. JCR manages all stages of the review process (initial project setup, individual review, joint review meeting, post-review tidy-up), but it's mainly there to show diff views of files that have changed and to allow comments to be made on any line of any file marked for review. License: GNU General Public License (GPL) Changes:
This release includes the ability to view file diffs as side-by-side. The project status report now provides an indication of the review activity for each file, so you can see files that may not have been reviewed. There are other minor usability enhancements. The version of the Pylons application framework installed has been restricted due to incompatible API changes in a new version. There is a status report update.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
HTML::Microformats::Format::hReview(3pm)		User Contributed Perl Documentation		  HTML::Microformats::Format::hReview(3pm)

NAME
HTML::Microformats::Format::hReview - the hReview and xFolk microformats SYNOPSIS
use HTML::Microformats::DocumentContext; use HTML::Microformats::Format::hReview; my $context = HTML::Microformats::DocumentContext->new($dom, $uri); my @reviews = HTML::Microformats::Format::hReview->extract_all( $dom->documentElement, $context); foreach my $review (@reviews) { print $review->get_reviewer->get_fn . " "; } DESCRIPTION
HTML::Microformats::Format::hReview inherits from HTML::Microformats::Format. See the base class definition for a description of property getter/setter methods, constructors, etc. MICROFORMAT
HTML::Microformats::Format::hReview supports hReview 0.3 and xFolk as described at <http://microformats.org/wiki/hreview> and <http://microformats.org/wiki/xfolk>, with the following differences: o hAudio hAudio microformats can be used as the reviewed item. (At the time of writing this documentation however, HTML::Microformats didn't support hAudio!) o Jumbled-up Support for xFolk and hReview are bundled together, so properties are usually supported in both, even if only defined by one microformat spec. (e.g. reviewer is defined by hReview, but this module supports it in xFolk entries.) RDF OUTPUT
<http://www.purl.org/stuff/rev#>, <http://ontologi.es/hreview#>. BUGS
Please report any bugs to <http://rt.cpan.org/>. Known limitations: o If no "reviewer" is found inside the hReview, parsers should look outside the hReview, in the context of the page, for the "reviewer". If there is no "reviewer" outside either, then parsers should use the author defined by the containing document language, e.g. for HTML documents, the <address> contact info for the page (which is ideally marked up as an hCard as well). SEE ALSO
HTML::Microformats::Format, HTML::Microformats. AUTHOR
Toby Inkster <tobyink@cpan.org>. COPYRIGHT
Copyright 2008-2011 Toby Inkster This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. DISCLAIMER OF WARRANTIES
THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. perl v5.14.2 2011-12-06 HTML::Microformats::Format::hReview(3pm)