
VCS::LibCVS::Datum::LogMessage - A cvs log message.


A CVS log message for one revision. It parses a message of this format and provides access to the various parts:
revision 1.2.2.1 date: 2002/11/13 02:29:46; author: dissent; state: Exp; lines: +1 -0 branches: 1.2.2; this is a boring commit with a shortish log message but it does have two lines to it

VCS::LibCVS::Datum

$log_m = VCS::LibCVS::Datum::LogMessage->new($text)
Entire log message as a ref to an array of lines, including additional information in this form:
revision 1.2 date: 2002/11/13 02:29:46; author: dissent; state: Exp; lines: +1 -0 branches: 1.2.2;
It is parsed on creation.

$revision = $log_m->get_revision()
$text = $log_m->get_text()

VCS::LibCVS