![]() |
![]()
| ![]() |
![]()
NAMENet::Trac::TicketHistory - A Trac ticket's history SYNOPSISmy $history = Net::Trac::TicketHistory->new( connection => $trac ); $history->load( 13 ); # Print the authors of all the changes to ticket #13 for ( @{ $history->entries } ) { print $_->author, "\n"; } DESCRIPTIONThis class represents a Trac ticket's history and is really just a collection of Net::Trac::TicketHistoryEntries. ACCESSORSconnectionticketReturns the ID of the ticket whose history this object represents. entriesReturns an arrayref of Net::Trac::TicketHistoryEntrys. METHODSload IDLoads the history of the specified ticket. LICENSECopyright 2008-2009 Best Practical Solutions. This package is licensed under the same terms as Perl 5.8.8.
|